/* Estilos generales */
.song-top5 { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    margin-bottom: 30px; 
    flex-wrap: wrap;
}

.song-card { 
    text-align: center; 
    cursor: pointer; 
    border: 1px solid #e1e1e1; 
    padding: 20px; 
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    width: 180px; 
    transition: all 0.3s ease; 
    background: #fff;
    position: relative;
}

.song-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.song-voting-list { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.song-voting-list li { 
    margin-bottom: 15px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border: 1px solid #eee; 
    padding: 15px; 
    border-radius: 10px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
    background: #fff;
    transition: all 0.2s ease;
}

.song-voting-list li:hover {
    background: #f9f9f9;
    border-color: #ddd;
}

.pos-badge { 
    background: #ff3b30; 
    color: #fff; 
    font-weight: bold; 
    border-radius: 50%; 
    width: 30px; 
    height: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
}

button.vote-btn { 
    padding: 8px 16px; 
    background: #0073aa; 
    color: #fff; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    margin-left: auto;
    transition: background 0.2s ease;
}

button.vote-btn:hover { 
    background: #005177; 
}

button.vote-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.votes-count {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.song-info {
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .song-top5 {
        flex-direction: column;
        align-items: center;
    }
    
    .song-card {
        width: 100%;
        max-width: 250px;
    }
    
    .song-voting-list li {
        flex-wrap: wrap;
    }
    
    .vote-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}