/**
 * Cookie Consent Banner Styles
 */

#cookieConsentModal {
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#cookieConsentModal .alert {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#cookieConsentModal .form-check-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#cookieConsentModal .form-check-label {
    cursor: pointer;
    user-select: none;
}

#cookieConsentModal .form-check-input:disabled + .form-check-label {
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    #cookieConsentModal .form-check {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    #cookieConsentModal .col-sm-4 {
        margin-top: 1rem;
    }
}

/* Animación de entrada */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookieConsentModal[style*="display: block"] {
    animation: slideUp 0.3s ease-out;
}
