.sectionCommands {
    display: flex;
    justify-content: center;
}

.commandsContainer {
    display: flex;
}

.command {
    position: relative;
    border: 1px solid #b2b1b1;
    box-shadow: 1px 2px 11px 2px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 35px;
    margin: 0 30px;
}

.command label {
    position: absolute;
    top: -30px;
    text-align: center;
    white-space: nowrap;
}

.commandButtons {
    position: absolute;
    bottom: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5%;
}

.stopButton {
    border-radius: 15px;
    background: none;
    border: 1px solid #d1d0d0;
    color: #d1d0d0;
    padding: 2.5px 5px;
    transition: 0.3s ease;
    cursor: pointer;
}

.stopButton:hover {
    border: 1px solid #1582fd;
    color: #1582fd;
}

.trashButton {
    border-radius: 100%;
    background: none;
    border: 1px solid #d1d0d0;
    color: #d1d0d0;
    transition: 0.3s ease;
    cursor: pointer;
}

.trashButton:hover {
    border: 1px solid #1582fd;
    color: #1582fd;
}

.trashButton path {
    fill: none;
}

.rangeInfo {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #b2b1b1;
    font-weight: 700;
}

.rangeInfo div {
    position: relative;
    text-align: center;
    width: 20px;
}

input[type="range"] {
    -webkit-appearance: none; /* Supprime le style par défaut sur Chrome et Safari */
    width: 100%;
    margin: 10px 0;
    height: 100%;
}

/* Style de la piste du range (track) */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #ddd;
    border-radius: 5px;
    border: 1px solid #aaa;
}

input[type="range"]::-moz-range-track {
    width: 3px;
    height: 100%;
    cursor: pointer;
    background: #b2b1b1;
}

input[type="range"]::-moz-range-thumb {
    width: 40px;
    height: 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.1);
}
