/* Cookie Consent Banner - Bootstrap Styling */
.cookie-consent {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cookie-consent .alert {
    border: none;
    background-color: rgba(255, 243, 205, 0.95);
    border-left: 4px solid #ffc107;
}

.cookie-consent .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-consent .btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #212529;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .cookie-consent .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .cookie-consent .flex-grow-1 {
        margin-bottom: 1rem;
    }
    
    .cookie-consent .btn {
        width: 100%;
    }
    
    .cookie-consent .gap-2 {
        gap: 0 !important;
    }
}