/* /var/www/html/CO/CO.css – Cookie-Consent Styling (Januar 2026) – finale Version */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(30, 41, 59, 0.95); /* Dark-Mode Card */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    z-index: 9999;
    border: 1px solid #334155;
    color: #e2e8f0;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.cookie-content h3 {
    margin: 0 0 1rem 0;
    color: #3b82f6; /* Primärfarbe */
    font-size: 1.5rem;
}

.cookie-content p {
    margin: 0 0 1.5rem 0;
    color: #cbd5e1;
    line-height: 1.5;
}

.cookie-content a {
    color: #00d4ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-secondary {
    background: #475569;
    color: white;
}

.btn-primary:hover, .btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px) {
    .cookie-modal {
        padding: 1.5rem;
        bottom: 10px;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}