.sidebar-right {
    border-left: none;
    background: transparent;
    backdrop-filter: none;
    overflow-y: auto;
    width: 300px;
    justify-content: center;
    /* Slightly narrower than left sidebar */
}

.reroll-category {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.rarity-header-band {
    width: 100%;
    padding: 6px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.rarity-header-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0.15;
}

.pool-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.pool-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.pool-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.sidebar-footer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pity-info {
    line-height: 1.4;
}

.pity-info b {
    color: var(--text-primary);
}

.pity-count {
    font-weight: 700;
}

/* Rarity specific colors for bands */
.spark .rarity-header-band {
    color: #FFFFFF;
}

.gleaming .rarity-header-band {
    color: #54B9FF;
}

.celestial .rarity-header-band {
    color: #D78CFF;
}

.radiant .rarity-header-band {
    color: #FFE48C;
}

/* Scrollbar for sidebar */
.sidebar-right::-webkit-scrollbar {
    width: 4px;
}

.sidebar-right::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-right::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 10px;
}