.simple-audio-player {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 40px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Soft, modern shadow */
    font-family: inherit;
    gap: 20px;
    width: 100%;
}

.simple-audio-player p {
    margin: 0;
    font-size: 14px;
}

.simple-audio-player .play-pause-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
}

.simple-audio-player .play-pause-btn:hover {
    transform: scale(1.05);
}

.simple-audio-player .play-pause-btn svg {
    width: 32px;
    height: 32px;
    fill: #1a1a1a;
    transition: fill 0.3s ease;
}

.simple-audio-player .track-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.simple-audio-player .track-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1a1a1a;
}

.simple-audio-player .progress-container {
    width: 100%;
    height: 6px;
    background: #eaeaea;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.simple-audio-player .progress-bar {
    height: 100%;
    background: #2563eb;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.simple-audio-player .time-display {
    font-size: 13px;
    color: #666;
    min-width: 85px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.simple-audio-download-wrapper {
    margin-top: 15px;
    text-align: center;
}

.simple-audio-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.simple-audio-download-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
}

.simple-audio-download-btn svg {
    width: 18px;
    height: 18px;
}
