#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 20px;
    z-index: 9999;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    display: none;
    animation: slideUp 0.5s ease-out;
}

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

#cookie-banner h5 {
    font-weight: 700;
    color: #1a2a4e;
}

#cookie-banner p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    #cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        padding: 20px;
    }
}

/* Modal Styling */
#cookieModal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

#cookieModal .modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 25px;
}

#cookieModal .modal-body {
    padding: 25px;
}

.cookie-type-item {
    padding: 15px;
    background: #f8faff;
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cookie-type-item:hover {
    background: #f1f5f9;
}

.form-check-input:checked {
    background-color: #0062cc;
    border-color: #0062cc;
}
