.ap-945b0150-container {
    background-color: #1e1e24;
    border-radius: 12px;
    padding: 24px;
    font-family: inherit;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ap-945b0150-header {
    text-align: center;
    margin-bottom: 20px;
}

.ap-945b0150-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ap-945b0150-artist {
    font-size: 0.9rem;
    color: #a0a0a8;
}

.ap-945b0150-progress-bar-container {
    background-color: #3e3e4a;
    height: 6px;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin-bottom: 8px;
}

.ap-945b0150-progress {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.ap-945b0150-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #a0a0a8;
    margin-bottom: 20px;
}

.ap-945b0150-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ap-945b0150-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.ap-945b0150-btn:hover {
    transform: scale(1.1);
}

.ap-945b0150-btn svg {
    fill: #ffffff;
    transition: fill 0.2s ease;
}

.ap-945b0150-tracklist {
    border-top: 1px solid #3e3e4a;
    padding-top: 16px;
    max-height: 200px;
    overflow-y: auto;
}

.ap-945b0150-track-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ap-945b0150-track-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.ap-945b0150-track-item.active {
    background-color: rgba(255, 65, 108, 0.15);
    border-left: 3px solid #ff416c;
}

.ap-945b0150-track-index {
    font-size: 0.9rem;
    color: #a0a0a8;
    margin-right: 12px;
}

.ap-945b0150-track-info {
    display: flex;
    flex-direction: column;
}

.ap-945b0150-track-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.ap-945b0150-track-artist {
    font-size: 0.8rem;
    color: #a0a0a8;
}
