/* Subgenre Filter Pro 6b411536 */
.sfp-6b411536-wrap {
    border: 1px solid #2a2a4a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sfp-6b411536-section {
    display: flex;
    flex-direction: column;
}

/* Heading as toggle button */
.sfp-6b411536-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 10px 8px;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
    text-align: left;
    line-height: 1.3;
}

.sfp-6b411536-heading:hover {
    background-color: rgba(255,255,255,0.04);
}

/* Chevron icon */
.sfp-6b411536-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Collapsible content */
.sfp-6b411536-collapsible {
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Closed state */
.sfp-6b411536-closed .sfp-6b411536-collapsible {
    max-height: 0;
    opacity: 0;
}

.sfp-6b411536-closed .sfp-6b411536-chevron {
    transform: rotate(0deg);
}

.sfp-6b411536-closed .sfp-6b411536-heading {
    border-bottom-color: transparent;
}

/* Open state */
.sfp-6b411536-open .sfp-6b411536-collapsible {
    max-height: 500px;
    opacity: 1;
}

.sfp-6b411536-open .sfp-6b411536-chevron {
    transform: rotate(180deg);
}

.sfp-6b411536-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 4px 4px 4px;
}

.sfp-6b411536-list::-webkit-scrollbar {
    width: 4px;
}

.sfp-6b411536-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
    border-radius: 2px;
}

.sfp-6b411536-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.sfp-6b411536-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    user-select: none;
}

.sfp-6b411536-item:hover {
    background-color: rgba(255,255,255,0.06);
}

.sfp-6b411536-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #E8A230;
}

.sfp-6b411536-label {
    font-size: 13px;
    flex: 1;
}

.sfp-6b411536-count {
    font-size: 11px;
    color: #888899;
    flex-shrink: 0;
}

.sfp-6b411536-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sfp-6b411536-reset {
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sfp-6b411536-reset:hover {
    opacity: 0.85;
}
