body {  
    font-family: Arial, sans-serif;  
    transition: background-color 0.3s ease, color 0.3s ease;  
}  

/* Modal base */  
.modal {  
    display: none;  
    position: fixed;  
    z-index: 1001;  
    left: 0;  
    top: 0;  
    width: 100%;  
    height: 100%;  
    overflow: hidden;  
}  

/* Contenedor del modal centrado */  
.modal-scroll {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 100%;  
}  

/* Contenido del modal */  
.modal-content {  
    width: 90%;  
    max-width: 400px; /* Tamaño máximo para el modal */  
    border-radius: 8px;  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  
    max-height: 80vh;  
    display: flex;  
    flex-direction: column;  
}  

/* Contenedor de contenido desplazable */  
.modal-scroll-content {  
    overflow-y: auto; /* Permite scroll interno si es necesario */  
    scrollbar-width: none; /* Ocultar scrollbar en Firefox */  
    -ms-overflow-style: none; /* Ocultar scrollbar en IE y Edge */  
    flex-grow: 1; /* Permite que este contenedor ocupe el espacio disponible */  
    padding: 20px; /* Espaciado interno */  
    box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */  
}  

/* Para navegadores webkit (Chrome, Safari, Opera) */  
.modal-scroll-content::-webkit-scrollbar {  
    display: none; /* Ocultar scrollbar */  
}  

/* Botón de cerrar */  
.close-btn {  
    position: absolute;  
    top: 15px;  
    right: 15px;  
    font-size: 24px;  
    cursor: pointer;  
}  

/* Estilo de títulos dentro del modal */  
h2 {  
    color: var(--text-color);  
    margin-bottom: 10px;  
}  

/* Contenedor de opciones de filtro */  
.filter-options-container {  
    display: flex;  
    flex-direction: column;  
    gap: 4px;  
}  

/* Estilos de las etiquetas */  
label {  
    cursor: pointer;  
    transition: background-color 0.2s;  
}  

/* Hover para etiquetas */  
label:hover {  
    background-color: rgba(255, 255, 255, 0.1);  
}  

/* Estilos para aplicar filtros */  
.apply-filters-btn {  
    color: white;  
    border: none;  
    padding: 10px 15px;  
    border-radius: 5px;  
    cursor: pointer;  
    display: block;  
    margin-top: 15px;  
    transition: background-color 0.2s;  
    width: 100%; /* Botón ocupa todo el ancho */  
}