/* ════════════════════════════════════════════════════════
   KrazzFM Hörercharts - Panel (Sidebar)
   ════════════════════════════════════════════════════════ */

.hcp-song {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hcp-song:hover {
    border-color: #32cd32;
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.2);
}

.hcp-pos {
    background: rgba(50, 205, 50, 0.2);
    border: 1px solid #32cd32;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #32cd32;
    flex-shrink: 0;
}

.hcp-info {
    flex: 1;
    min-width: 0;
}

.hcp-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.hcp-artist {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hcp-votes {
    background: rgba(50, 205, 50, 0.15);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #32cd32;
    flex-shrink: 0;
}

/* Top 3 Highlights */
.hcp-song.rank-1 {
    border-color: #32cd32;
}

.hcp-song.rank-1 .hcp-pos {
    background: #32cd32;
    color: #000;
}

.hcp-song.rank-2 {
    border-color: rgba(50, 205, 50, 0.7);
}

.hcp-song.rank-2 .hcp-pos {
    background: rgba(50, 205, 50, 0.7);
    border-color: rgba(50, 205, 50, 0.7);
}

.hcp-song.rank-3 {
    border-color: rgba(50, 205, 50, 0.4);
}

.hcp-song.rank-3 .hcp-pos {
    background: rgba(50, 205, 50, 0.4);
    border-color: rgba(50, 205, 50, 0.4);
}

/* More Button */
.hcp-more {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #333;
}

.hcp-more .btn {
    border-radius: 8px;
}

.hcp-more .btn:hover {
    background: #28a428 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}
