#patience-track {
    width: 100%;
    max-width: 300px;
    height: 30px;
    background-color: #3e2723;
    border-radius: 15px;
    position: relative;
    margin: 30px 0;
    border: 2px solid #5d4037;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.5);
}
#patience-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8d6e63, #d7ccc8);
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
#patience-thumb {
    width: 40px;
    height: 40px;
    background-color: #A1887F;
    border: 3px solid #efebe9;
    border-radius: 50%;
    position: absolute;
    left: 0%;
    top: -8px;
    transform: translateX(-50%);
    cursor: grab;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    z-index: 2;
}
#patience-thumb:active {
    cursor: grabbing;
    transform: translateX(-50%) scale(0.95);
    background-color: #d7ccc8;
}
.decimal-value {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: #A1887F;
}