/* اختصاصی پلیر - جلوگیری از تداخل با سایت */
.yplayer-container {
    font-family: "iransans", Arial, sans-serif !important;
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.yplayer-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0px 33px rgb(217 217 217 / 50%);
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}


.yplayer-image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px !important;
    object-fit: cover;
    transition: transform 2s linear;
}

.yplayer-image.playing {
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.yplayer-song-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #222;
}

.yplayer-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.yplayer-audio {
    width: 100%;
}

.yplayer-lyrics-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    color: #222;
    text-align: center;
}

.yplayer-lyrics {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    margin-top: 5px;
}

/* برای مرورگرهای Webkit (کروم، سافاری) */
.yplayer-lyrics::-webkit-scrollbar {
    width: 8px;
}

.yplayer-lyrics::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.yplayer-lyrics::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* برای فایرفاکس */
.yplayer-lyrics {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f1f1f1;
}

/* هر خط */
.yplayer-lyrics div {
    margin: 5px 0;
    transition: all 0.4s ease;
    font-size: 14px;
    direction: ltr;
    padding: 2px 5px;
    border-radius: 6px;
}

/* خط فعال */
.yplayer-lyrics div.active {
    background: rgba(255, 220, 220, 0.6);
}

/* متن ترجمه */
.yplayer-lyrics p.yplayer-translation {
    font-size: 13px;
    color: #d32f2f;
    font-weight: 500;
    font-style: italic;
    margin: 2px 0 0 0;
    display: block;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .yplayer-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.yplayer-like-container {
    position: absolute;
    top: 10px;
    left: 10px;
}

.yplayer-like-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #d32f2f;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #d32f2f;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yplayer-like-btn:hover,
.yplayer-like-btn.liked {
    background: #000000;
    color: #fff !important; 
}

.yplayer-like-btn:hover span,
.yplayer-like-btn.liked span {
    color: #fff !important; /* تعداد لایک هم سفید شود */
}

.yplayer-like-btn span {
    display: inline-block;
}
