/* Styles personnalisés pour les sliders */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #2563eb;
}

/* Animation pour les changements de valeurs */
.value-change {
    animation: highlight 0.5s ease-out;
}

@keyframes highlight {
    0% {
        background-color: rgba(59, 130, 246, 0.1);
    }
    100% {
        background-color: transparent;
    }
}

/* Style pour les cellules du tableau avec des valeurs positives/négatives */
.positive-value {
    color: #059669;
}

.negative-value {
    color: #dc2626;
} 