/* Header styles */
.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.back-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.back-button:active {
    transform: scale(0.95);
}

.header-text {
    flex: 1;
    min-width: 0;
}

.header-text h1 {
    margin: 0;
    font-size: 1.5rem;
}

.header-text .subtitle {
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

#artistCountContainer {
    text-align: center;
    opacity: 0.8;
}

/* Artist grid (when not in modal) */
#artistGrid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
}

#artistGrid .artist-card:last-child {
    border-bottom: none;
}
