/* Estilos personalizados para el formulario */
.custom-input {
    transition: all 0.3s ease;
}

.custom-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Estilos para el range input */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #2563eb;
    transform: scale(1.1);
}

/* Animaciones para las transiciones entre secciones */
[x-cloak] {
    display: none !important;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

/* Estilos para la tabla responsiva */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
    .table-container {
        margin: 0 -1rem;
    }
}