/* responsivevoice-player.css */

.responsivevoice-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
    position: relative;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

.responsivevoice-controls button {
    padding: 12px 24px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.responsivevoice-controls button:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
    box-shadow: none;
}

.responsivevoice-controls button:hover:not(:disabled) {
    background-color: #555;
    transform: translateY(-2px);
}

.responsivevoice-controls .button-text {
    line-height: 1;
    white-space: nowrap;
}