.radio-wrapper {
    width: 100%;
    max-width: 630px;
    background: #ffffff;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
    min-height: 100vh;
    padding-bottom: 90px; /* Pleyer siyahını örtməsin deyə */
    box-sizing: border-box;
    padding: 20px 0;
    
    
}

/* Axtarış */
.search-bar {
    background-color: #edeef0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin: 0 10px 15px 10px;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    margin-left: 8px;
    color: #000;
}

/* Siyahı */
.radio-list { border-top: 1px solid #f2f3f5; }

.radio-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.1s;
}

.radio-row:active { background: #f2f3f5; }

/* Sətir altındakı incə xətt */
.radio-row:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 75px; /* Mətnin başladığı yer */
    right: 15px;
    height: 1px;
    background: #f2f3f5;
}

.logo-box { position: relative; margin-right: 15px; flex-shrink: 0; }
.logo-box img { width: 48px; height: 48px; border-radius: 12px; border: 0.5px solid #e1e3e6; object-fit: cover; }

/* Əsas badge stili */
.status-badge {
    position: absolute;
    bottom: -3px; 
    right: -3px;
    width: 20px; /* Bir az böyütdüm ki, ikonlar rahat yerləşsin */
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 11px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: all 0.2s ease; /* Keçidləri yumşaldır */
    cursor: pointer;
    z-index: 2;
}

/* Standart hal (Mavi ulduz) */
.status-badge.star-bg { 
    color: #2e89ff; 
}

/* Favoritə əlavə edildikdə (Sarı ulduz) */
.status-badge.is-favorite {
    color: #ffc107 !important; 
    transform: scale(1.1); /* Seçiləndə bir az böyüsün */
}

/* Radio oxuyarkən (Yaşıl Play/Pause) */
.status-badge.playing-now {
    color: #4bb34b !important; 
    font-size: 12px;
    font-weight: bold;
    background: #fff; /* Arxa fonu ağ saxlayırıq */
}

/* Sətir aktiv olduqda (Seçilmiş radio sətri) */
.radio-row.active-row {
    background: #f5f9ff;
}

/* Hover effekti (Kompüter üçün) */
.radio-row:hover {
    background: #f9fbff;
}



.info-box { flex: 1; min-width: 0; }
.name { font-size: 16px; font-weight: 500; color: #000; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.genre { font-size: 13px; color: #818c99; margin-top: 1px; }

.menu-dots { color: #b2b2b2; font-size: 20px; padding: 5px; }

/* STABİL PLEYER - TELEFON VƏ KOMPÜTER ÜÇÜN */
.active-mini-player {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;       /* Mobildə ekranı tam tutsun */
    max-width: 630px;  /* Kompüterdə 630px-dən böyük olmasın */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px); /* Müasir şüşə effekti */
    border-top: 1px solid #f0f0f0;
    z-index: 10000;
    padding: 10px 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

.p-icon-box { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding-left: 10px;
}