.postid-1798 #secondary .btn.btn-default {
    display: none;
}

.postid-1798 #secondary .table.table-complex {
    display: none;
}

.audio-player {
    background-color: #282e35;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.audio-player button {
    background-color: #01acf2;
    border: none;
    color: white;
    padding: clamp(12px, 4vw, 20px);
    border-radius: 50%;
    font-size: clamp(16px, 4vw, 22px);
    width: clamp(50px, 14vw, 70px);
    height: clamp(50px, 14vw, 70px);
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-player button:hover {
    background-color: #0194d1;
    transform: scale(1.05);
}

.audio-player button:active {
    transform: scale(0.95);
}

.progress-container {
    width: 100%;
    height: 8px;
    background-color: #444;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #01acf2;
    border-radius: 4px;
}

.time {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: #ccc;
}

a.btn_black {
    display: inline-block;
    position: relative;
    color: #fff !important;
    font-size: 1.1em;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    padding: 0 50px 0 30px;
    margin: 20px 0 15px 0;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    cursor: pointer;
    background-color: #3e434b;
    transition: all 0.3s ease;
}

@media (max-width: 400px) {
    .controls {
        gap: 8px;
    }
    .audio-player button {
        font-size: 14px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }
}
