.eric-member-list-table table {
    border-collapse: collapse;
    width: 100%;
}

tr.eric-member-list-table-thead>th {
    border: 0;
    padding: 5px 7px;
    text-align: center;
    background: #1e73be;
    color: #fff;
    border-left: 2px solid #fff;
}

tr.eric-member-list-table-row>td {
    background-color: #ffffff;
    font-weight: 500;
    border-top: 2px solid #00b3ef40;
    vertical-align: middle;
    color: #1e73be;
    padding: 10px 0;
    position: relative;
    overflow: visible;
}

tr.eric-member-list-table-row:nth-child(even) td {
    background-color: #f2fcff;
    color: #1563a7;
}


tr.eric-member-list-table-row td:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    /* 从顶部10%开始 */
    bottom: 25%;
    /* 到底部10%结束 = 高度80% */
    /*height: 80%;        */
    width: 1px;
    background-color: #7bc8ff29;
    /* 边框颜色 */
    transform: none;
    /*transform: translateY(-50%); */
}

.eric-user-login {
    font-size: 20px;
    font-weight: 600;
    color: #da1caa;
}

.pagination {
    margin-top: 15px !important;
    text-align: center;
    font-size: 20px;
}

.pagination .page-numbers {
    color: #3F51B5;
    ;
}

.pagination .current {
    font-size: 26px;
    font-weight: bold;
    color: #FF9800;
    text-shadow: 1px 2px 5px #f09513;
}

.eric-list-title {
    margin: 0;
    color: #2196F3;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
}

span.eric-search-result {
    font-size: 14px;
    font-weight: 400;
    color: #9E9E9E;
    line-height: 42px;
}

/*  Eric 会员列表按钮美化  */
.eric-ajax-btn {
    padding: 5px 12px;
    border-radius: 6px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin: 3px 0;
    background: slategrey;
    color: white;
}

/* 报到按钮 - 绿色 */
.eric-review-approve-btn-unregistered {
    background-color: #009688;
    color: #fff;
}

.eric-review-approve-btn-unregistered:hover {
    background-color: #008977;
    box-shadow: 0 3px 6px rgba(0, 150, 136, 0.2);
}

.eric-review-approve-btn,
.eric-check-in-btn {
    background-color: #28a745;
    color: #fff;
}

.eric-review-approve-btn:hover,
.eric-check-in-btn:hover {
    background-color: #218838;
    box-shadow: 0 3px 6px rgba(40, 167, 69, 0.2);
}

/* 取消报到 - 橙色 */
.eric-review-reject-btn,
.eric-check-out-btn {
    background-color: #fd7e14;
    color: #fff;
}

.eric-review-reject-btn:hover,
.eric-check-out-btn:hover {
    background-color: #e67010;
    box-shadow: 0 3px 6px rgba(253, 126, 20, 0.2);
}

a.eric-ajax-btn:hover {
    background-color: #00b3ef;
    color: #fff;
}

/* 重置支付信息 - 红色 */
.reset-btn {
    background-color: #dc3545;
    color: #fff;
}

.reset-btn:hover {
    background-color: #bb2d3b;
    box-shadow: 0 3px 6px rgba(220, 53, 69, 0.2);
}

/* 按钮禁用状态 */
.eric-ajax-btn:disabled,
.reset-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

/* 表格内居中对齐更美观 */
.eric-member-list-table td {
    vertical-align: middle;
    padding: 10px;
}

.eric-image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eric-image-popup.show {
    display: flex;
    opacity: 1;
}

.eric-image-popup img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.eric-image-popup .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.eric-member-pagination {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.eric-member-pagination .pagination-item {
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.eric-show-user-log-btn {
    border-radius: 40%;
    width: fit-content;
    cursor: pointer;
    padding: 3px;
    border: 0;
    background: cornflowerblue;
    color: white;
}

.eric-show-user-log-btn:hover {
    background: #005cba;
}

.eric-export-excel-btn {
    height: 36px;
    background: #03a9f4;
}

.eric-export-excel-btn:hover {
    background: #0288d1;
}

.eric-submit-btn {
    background: #0268d1;
}

.eric-submit-btn:hover {
    background: #01579b;
}

.eric-onsite-pop-btn {
    width: 100%;
    margin: 6px 0;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #6c757d;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.eric-onsite-pop-btn.domestic {
    background: #03a9f4;
}

.eric-onsite-pop-btn.foreign {
    background: #9c27b0;
}

.eric-onsite-pop-btn.paypal {
    background: #ff9800;
}

.eric-onsite-pop-btn.cancel {
    background: #6c757d;
}