/* Cookie Consent Panel Styles */
.cookie-consent-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 25px;
    display: none;
    max-width: 500px;
    border: 1px solid rgba(10, 38, 71, 0.1);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content h4 {
    color: #0A2647;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-content p {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-consent-content a {
    color: #144272;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: #0A2647;
    color: white;
    flex: 2;
}

.cookie-btn-accept:hover {
    background: #144272;
}

.cookie-btn-settings {
    background: #eee;
    color: #444;
    flex: 1;
}

.cookie-btn-settings:hover {
    background: #ddd;
}

/* Mobile responsive */
@media (max-width: 500px) {
    .cookie-consent-overlay {
        left: 10px;
        right: 10px;
        bottom: 15px;
        padding: 20px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }
}

/* Dark mode support */
[data-theme="dark"] .cookie-consent-overlay {
    background: rgba(18, 18, 18, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cookie-consent-content h4 {
    color: #fff;
}

[data-theme="dark"] .cookie-consent-content p {
    color: #ccc;
}

[data-theme="dark"] .cookie-btn-settings {
    background: #333;
    color: #eee;
}