.my-voice-player {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background-color: #f6fef6;
    border: 1px solid #d4f0d5;
    border-radius: 12px;
    font-family: sans-serif;
    max-width: 400px;
}
.my-voice-player .play-pause-btn {
    width: 40px;
    height: 40px;
    background-color: #81c784;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}
.my-voice-player .play-pause-btn:hover { background-color: #66bb6a; }
.my-voice-player .play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid white;
    margin-left: 4px;
}
.my-voice-player .pause-icon {
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my-voice-player .pause-icon::before,
.my-voice-player .pause-icon::after {
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background-color: white;
}
.my-voice-player .hidden { display: none !important; }

/* نوار موج */
.my-voice-player .waveform-container {
    display: flex;
    align-items: center;
    height: 40px;
    margin: 0 15px;
    flex-grow: 1;
    overflow: hidden;
    cursor: pointer;
    direction: ltr;
}
.my-voice-player .waveform-bar {
    width: 3px;
    background-color: #dcdcdc;
    margin-right: 2px;
    border-radius: 3px;
    transition: background-color 0.1s linear;
}
.my-voice-player .waveform-bar.played {
    background-color: #81c784;
}

.my-voice-player .controls-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.my-voice-player .speed-btn {
    background-color: transparent;
    border: none;
    color: #81c784;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
    margin-right: 8px;/
}
.my-voice-player .time-display {
    color: #757575;
    font-size: 14px;
    white-space: nowrap;
}