
.__hide_mp3_file_action_user_player {
    background-color: #202020;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 999 !important;
    justify-content: space-around;
}

.__hide_mp3_file_action_user_title {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.__hide_mp3_file_action_user_wave_bars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.__hide_mp3_file_action_user_bar {
    width: 10px;
    height: 30px;
    background-color: #0059ff;
    animation: __hide_mp3_file_action_user_wave 1s infinite ease-in-out;
}

.__hide_mp3_file_action_user_bar:nth-child(2) {
    animation-delay: 0.2s;
}

.__hide_mp3_file_action_user_bar:nth-child(3) {
    animation-delay: 0.4s;
}

.__hide_mp3_file_action_user_bar:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes __hide_mp3_file_action_user_wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
}

.__hide_mp3_file_action_user_controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hide_page_mp3_action {
    background-color: #202020;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.__for_folder_waveform {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    width: 80%;
    margin-bottom: 10px;
    background-color: transparent;
}

.__for_folder_wave-bar {
    width: 3%;
    background-color: #7e57c2;
    border-radius: 2px;
    transition: height 0.2s ease, background-color 0.2s ease;
    height: 0;
}



