/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1050; /* Above Bootstrap navbar (1030) */
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-banner a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.cookie-consent-banner .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-consent-banner .btn-light {
    background-color: white;
    color: #1e3a5f;
    border: none;
}

.cookie-consent-banner .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.cookie-consent-banner .btn-outline-light {
    border: 1px solid white;
    color: white;
    background-color: transparent;
}

.cookie-consent-banner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }

    .cookie-consent-banner p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .cookie-consent-banner .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .cookie-consent-banner .btn:last-child {
        margin-bottom: 0;
    }
}

/* Add padding to body when banner is visible to prevent content overlap */
body.cookie-banner-visible {
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    body.cookie-banner-visible {
        padding-bottom: 150px;
    }
}
