/* Buttons */
hexo-megalearn-audio-player .buttons-container,
hexo-megalearn-video-player .buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}

hexo-megalearn-audio-player .buttons-container button,
hexo-megalearn-video-player .buttons-container button {
    position: relative;
    background: var(--hmt-accent-hover-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

hexo-megalearn-audio-player:has([playing=true]) .buttons-container button,
hexo-megalearn-video-player .plyr--playing .buttons-container button {
    background-color: var(--hmt-accent-color);
}

hexo-megalearn-audio-player .buttons-container button.play-pause-button,
hexo-megalearn-video-player .buttons-container button.play-pause-button {
    background-color: var(--hmt-accent-color);
}