
.voice-player-ui {
    background: #f1f1f1;
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 380px;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
    font-family: sans-serif;
    position: relative;
}

.voice-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.voice-time {
    font-size: 14px;
    min-width: 70px;
}

.voice-icon {
    font-size: 16px;
    color: #333;
}

.voice-menu {
    position: relative;
}

.voice-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.voice-menu-content {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 10;
    min-width: 120px;
}

.voice-menu-content.show {
    display: block;
}

.voice-menu-content button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.voice-menu-content button:hover {
    background: #eee;
}

.voice-menu-content button[data-speed]:hover {
    background-color: #d0eaff;
    color: #000;
    font-weight: bold;
}
