.sifency-ap-controls-area,
.sifency-audio-player {
    align-items: center;
    gap: 15px;
    display: flex
}

.sifency-audio-player {
    background: var(--sifency-addons-whitecolor);
    padding: 15px;
    position: relative;
    overflow: hidden
}

.sifency-ap-content {
    flex-grow: 1;
    min-width: 0
}

.sifency-ap-cover {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden
}

.sifency-ap-cover img,
.sifency-ap-pl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sifency-playing .sifency-ap-cover img {
    animation: 10s linear infinite sifency-spin;
    border-radius: 50%
}

@keyframes sifency-spin {
    100% {
        transform: rotate(360deg)
    }
}

.sifency-ap-meta {
    margin-bottom: 10px
}

.sifency-ap-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sifency-ap-artist {
    font-size: 14px;
    color: #777
}

.sifency-ap-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    border: none;
    color: var(--sifency-addons-whitecolor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform .2s
}

.sifency-playing .sifency-ap-play-btn {
    padding-left: 0
}

.sifency-ap-progress-container {
    flex-grow: 1;
    position: relative;
    height: 6px;
    display: flex;
    align-items: center
}

.sifency-ap-seek-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    margin: 0
}

.sifency-ap-progress-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e1e1e1
}

.sifency-ap-progress-fill {
    position: absolute;
    height: 100%;
    background: var(--e-global-color-primary);
    width: 0%;
    pointer-events: none
}

.sifency-ap-extras,
.sifency-ap-main-controls {
    display: flex;
    align-items: center;
    gap: 10px
}

.sifency-ap-control-icon {
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0
}

.sifency-ap-volume-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.sifency-ap-volume-slider-wrap {
    width: 0;
    overflow: hidden;
    transition: width .3s;
    margin-left: 0
}

.sifency-ap-volume-wrap:hover .sifency-ap-volume-slider-wrap {
    width: 60px;
    margin-left: 5px
}

.sifency-ap-volume-slider {
    width: 60px;
    height: 4px;
    accent-color: #555;
    cursor: pointer
}

.sifency-ap-layout-card {
    flex-direction: column;
    text-align: center;
    padding: 20px
}

.sifency-ap-layout-card .sifency-ap-cover {
    width: 150px;
    height: 150px;
    margin: 0 auto
}

.sifency-ap-layout-card .sifency-ap-content,
.sifency-ap-layout-minimal .sifency-ap-controls-area {
    width: 100%
}

.sifency-ap-layout-card .sifency-ap-controls-area {
    margin-top: 15px;
    justify-content: space-between
}

.sifency-ap-layout-minimal {
    padding: 10px 15px;
    gap: 10px
}

.sifency-ap-nav-btn {
    background: 0 0;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    transition: color .3s
}

.sifency-ap-nav-btn:hover {
    color: #000
}

.sifency-ap-playlist-container {
    margin-top: 15px;
    background: #f9f9f9;
    overflow: hidden
}

.sifency-ap-playlist-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background .2s;
    gap: 10px
}

.sifency-ap-playlist-item:last-child {
    border-bottom: none
}

.sifency-ap-playlist-item:hover {
    background: #f0f0f0
}

.sifency-ap-playlist-item.active {
    background: #e6f0fa
}

.sifency-ap-pl-thumb {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.sifency-ap-pl-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.sifency-ap-pl-title {
    color: inherit
}

.sifency-ap-pl-artist {
    color: #888
}

.sifency-ap-pl-icon {
    color: #aaa
}

.sifency-ap-playlist-item.active .sifency-ap-pl-icon {
    color: var(--e-global-color-primary)
}