
/* --- Genre Page Additions --- */
.genre-header {
    gap: 12px;
}

.genre-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.song-header h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Empty state */
.genre-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px 24px;
    color: var(--nav-text);
    text-align: center;
}

.genre-empty-state i,
.genre-empty-state svg {
    width: 40px;
    height: 40px;
    opacity: 0.35;
}

.genre-empty-state p {
    margin: 0;
    font-size: 15px;
}

/* Genre Play Button */
.genre-play-btn {
    background-color: #ffffff;
    color: var(--nav-btn-bg, #3060FF);
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    padding: 0;
}

.genre-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    background-color: #f8f9fa;
}

.genre-play-btn:active {
    transform: scale(0.95);
}

.genre-play-btn i, .genre-play-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}
