/* Last 10 Songs Section */
.last-10-section {
    padding: 15px 20px 10px;
    background: white;
    border-bottom: 1px solid #eee;
}

.last-10-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

#last10Section {
    width: 100% !important;
    left: 0;
    right: 0;
}

.last-10-container::-webkit-scrollbar {
    height: 3px;
}

.last-10-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.last-10-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.song-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 4px 10px 4px 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    min-width: fit-content;
    cursor: pointer;
}

.song-pill:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.song-pill:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.pill-art {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.pill-title {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Feedback Pill - Special styling */
.feedback-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 4px 10px 4px 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.2s ease;
    min-width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
    opacity: 0.9;
}

.feedback-pill:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.feedback-pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feedback-pill-title {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

