/* Cookie Consent Banner Styles */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent-banner.position-top {
    top: 0;
    bottom: auto;
    animation: slideDown 0.5s ease-out;
}

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

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-consent-icon {
    font-size: 2.5rem;
    color: #F39C12;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.cookie-consent-text h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

.cookie-consent-link {
    color: #2ECC71;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-link:hover {
    color: #27AE60;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-category {
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 8px;
    border: 1px solid #E9ECEF;
}

.form-check-input:checked {
    background-color: #2ECC71;
    border-color: #2ECC71;
}

.form-check-input:disabled {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-consent-actions .btn {
        flex: 1;
        min-width: 100px;
    }
}
