/* 구 리스트 아이템 */
.gu-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 8px;
    margin-bottom: 4px;
    position: relative;
    background: white;
}

.gu-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(12px) translateY(-2px) scale(1.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.gu-item.selected {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    border: 1px solid #3b82f6;
    transform: translateX(12px) translateY(-2px) scale(1.03);
    z-index: 1000;
}

.gu-item:last-child {
    margin-bottom: 0;
}

/* 랭킹 아이템 */
.ranking-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.ranking-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* 통계 라벨 */
.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}
