/* Styles pour les contrôles de son */

.sound-control-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(30, 30, 40, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.sound-control-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.sound-control-button.muted {
    background-color: #444;
    color: #999;
}

.sound-control-tooltip {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(30, 30, 40, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sound-control-button:hover .sound-control-tooltip {
    opacity: 1;
}

/* Styles pour la volume-label */
.volume-label {
    white-space: nowrap;
    font-size: 12px;
    color: #ccc;
    margin-left: 5px;
}
