.mk-zed-audio-player {
    background: #222;
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: sans-serif;
    max-width: 500px;
    margin: 15px 0;
}

.mk-zed-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.mk-playing-text {
    font-size: 12px;
    color: #ff4f4f;
    margin-left: 10px;
}

.mk-zed-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-play-btn, .mk-download-btn {
    background: #ff4f4f;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.mk-play-btn:hover, .mk-download-btn:hover {
    background: #ff7777;
}

.mk-progress-container {
    flex-grow: 1;
    background: #444;
    height: 6px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.mk-progress-bar {
    background: #ff4f4f;
    height: 100%;
    width: 0%;
    border-radius: 3px;
}
