/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa !important;
    border-top: 2px solid #007bff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
    opacity: 1 !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #343a40;
}

.cookie-consent-text p:last-child {
    margin-bottom: 0;
}

.cookie-consent-text strong {
    font-size: 1rem;
    color: #000;
}

.cookie-consent-text a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #0056b3;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #007bff;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

.cookie-btn-decline {
    background-color: #6c757d;
    color: white;
}

.cookie-btn-decline:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(108, 117, 125, 0.3);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        background-color: #212529 !important;
        border-top-color: #ffffff;
        opacity: 1 !important;
    }

    .cookie-consent-text p {
        color: #e4e6eb;
    }

    .cookie-consent-text strong {
        color: #ffffff;
    }

    .cookie-consent-text a {
        color: #64b5f6;
    }

    .cookie-consent-text a:hover {
        color: #90caf9;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }

    .cookie-consent-banner {
        padding: 1rem;
    }
}
