#mute-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

#mute-button:hover {
    background-color: #45a049;
}

#play-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
}

#play-button:hover {
    background-color: #0b7dda;
}