   /*인플루언서 리스트 정렬 및 검색 영역 구조 스타일 (인라인 스타일 제거)
   ========================================================================== */
.influencer-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px; /* 기존 30px에서 40px로 간격 확대 */
    flex-wrap: nowrap; /* 데스크톱에서는 1줄로 고정 */
    gap: 15px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .influencer-controls-bar {
        flex-wrap: wrap; /* 모바일에서는 여러 줄로 줄바꿈 허용 */
        flex-direction: column; /* 세로 배치 */
        align-items: stretch; /* 전체 너비 차지 */
        gap: 20px;
    }
    
    .influencer-sort-tabs {
        justify-content: center; /* 탭 버튼 가운데 정렬 */
    }
    
    .influencer-search-form {
        max-width: 100%; /* 모바일에서 꽉 차게 */
    }
}

.influencer-sort-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.influencer-sort-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--text-color-secondary);
    border: 1px solid var(--main-item-border-color);
}

.influencer-sort-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.influencer-sort-btn.active {
    font-weight: 800;
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.influencer-search-form {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0;
}

.influencer-search-input-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.influencer-search-input {
    width: 100%;
    height: 42px;
    padding: 0 16px;
    border-radius: 24px;
    border: 1px solid var(--main-item-border-color);
    background: var(--white);
    color: var(--text-color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.influencer-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.influencer-search-icon {
    position: absolute;
    right: 15px;
    color: var(--text-color-secondary);
    pointer-events: none;
    font-size: 0.95rem;
}

.influencer-search-submit-btn {
    padding: 0 20px;
    font-size: 0.88rem;
    font-weight: 800;
    border: none;
    border-radius: 24px;
    color: var(--white);
    background: var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.influencer-search-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   인플루언서 리스트 페이징 영역 스타일 (인라인 스타일 제거)
   ========================================================================== */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid var(--main-item-border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color-primary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-item.active .page-link {
    border-color: var(--point-color-blue);
    background-color: var(--point-color-blue);
    color: var(--white);
    font-weight: 800;
}

.page-link:hover:not(.active) {
    border-color: var(--point-color-blue);
    color: var(--point-color-blue);
}

.is-hidden {
    display: none !important;
}

.is-displayed-block {
    display: block !important;
}

.autocomplete-results-layer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 200px;
    overflow-y: auto;
}

/* 자동완성 아이템 스타일 */
.autocomplete-item {
    padding: 10px var(--spacing-sm);
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color-soft);
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autocomplete-item:hover {
    background-color: var(--bg-color-faint);
}

.autocomplete-item-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.autocomplete-item-name {
    font-weight: 600;
    color: var(--text-color-dark);
}

.autocomplete-item-platform {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
}

.autocomplete-item-handle {
    color: var(--point-color-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

/* 플랫폼 브랜드 백그라운드 칼라 클래스 정의 (JS 인라인 스타일 방지) */
.autocomplete-item-platform.is-instagram {
    background-color: #e1306c;
}
.autocomplete-item-platform.is-youtube {
    background-color: #ff0000;
}
.autocomplete-item-platform.is-blog,
.autocomplete-item-platform.is-cafe {
    background-color: #03c75a;
}
.autocomplete-item-platform.is-facebook {
    background-color: #1877f2;
}
.autocomplete-item-platform.is-tiktok {
    background-color: #000000;
}

#infinite-scroll-sentinel {
    height: 20px;
    width: 100%;
    clear: both;
}

/* ===================================
