







/* PAGE TITLE */
.user-section-title {
    max-width: 1200px;
    margin: 20px auto 10px;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
}

/* SEARCH BAR */
.search-wrapper {
    max-width: 600px;
    margin: 5px auto 25px;
}

#userSearch {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 2px solid #ddd;
    font-size: 15px;
    transition: .2s;
}

#userSearch:focus {
    border-color: #AA711D;
    box-shadow: 0 0 7px rgba(170,113,29,0.4);
}

/* TABS */
.tabs-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.tab-btn {
    border: 2px solid #AA711D;
    padding: 8px 18px;
    margin: 0 4px;
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #AA711D;
    color: white;
}

/* USER CARDS CONTAINER */
.user-listing-wrapper {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    padding: 10px;
}

/* USER CARD */
.user-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 25px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .25s;
}

.user-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.16);
}

/* BADGE ON TOP */
.package-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 13px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
}

.package-tag.green { background: #28a745; }
.package-tag.blue { background: #007bff; }
.package-tag.orange { background: #ff9800; }

/* AVATAR */
.avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 3px solid #AA711D;
    object-fit: cover;
    margin-bottom: 15px;
}

/* PREMIUM TAG */
.premium-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff2b6e;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 700;
    color: white;
}

/* NAME + EMAIL */
.user-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-email {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* URL + COPY ICON */
.copy-wrapper {
    background: #f3f3f3;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ref-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    overflow-wrap: break-word;
    max-width: 80%;
}

.copy-icon {
    font-size: 18px;
    cursor: pointer;
    color: #AA711D;
    transition: .2s;
}

.copy-icon:hover {
    transform: scale(1.2);
    color: #7d5514;
}

/* BOTTOM PACKAGE BADGE */
.badge {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
}

.badge.green { background: #28a745; }
.badge.blue { background: #007bff; }
.badge.orange { background: #ff9800; }

/* HIDE FOR FILTERING */
.user-card.hidden {
    display: none !important;
}
 

.wpb_wrapper {
    margin-top: 53px;
    margin-bottom: 63px;
}












