/* Member List Table */
.pm-member-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #0073aa14;
}

.pm-member-list-table th, .pm-member-list-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #b3e3ff;
    font-size: 1.08em;
    text-align: left;
}

.pm-member-list-table th {
    background: linear-gradient(90deg, #e3f1fb 70%, #b3e3ff 100%);
    color: #0073aa;
    font-weight: 600;
    border-bottom: 2px solid #0073aa;
    cursor: pointer;
    user-select: none;
}

.pm-member-list-table th a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.13s;
}
.pm-member-list-table th a:hover {
    color: #005f8d;
}

.pm-member-list-table tr:hover td {
    background: #f2faff;
}

.pm-member-link {
    color: #0073aa;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.13s;
}
.pm-member-link:hover {
    color: #005f8d;
    text-decoration: underline;
}

/* Search Form */
.pm-member-search-form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pm-member-search-input {
    padding: 8px 13px;
    border-radius: 7px;
    border: 1.5px solid #b3e3ff;
    font-size: 1.05em;
    background: #f7fcff;
    color: #0073aa;
    transition: border 0.16s;
}
.pm-member-search-input:focus {
    border-color: #0073aa;
    outline: none;
}

.pm-member-search-btn {
    background: linear-gradient(90deg, #e3f1fb 60%, #b3e3ff 100%);
    color: #0073aa;
    font-weight: 600;
    border: 1.5px solid #0073aa;
    border-radius: 7px;
    padding: 7px 18px;
    cursor: pointer;
    transition: background 0.18s, color 0.13s;
}
.pm-member-search-btn:hover {
    background: #b3e3ff;
    color: #005f8d;
}

/* Pagination */
.pm-member-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 18px 0 6px 0;
    font-size: 1.1em;
}

.pm-page-num {
    display: inline-block;
    min-width: 34px;
    height: 34px;
    line-height: 34px;
    background: linear-gradient(90deg, #e3f1fb 70%, #b3e3ff 100%);
    color: #0073aa;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid #b3e3ff;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s, color 0.13s, border 0.13s;
    cursor: pointer;
}

.pm-page-num:hover {
    background: #b3e3ff;
    color: #005f8d;
    border-color: #0073aa;
}

.pm-page-current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
    cursor: default;
}

.pm-page-ellipsis {
    display: inline-block;
    min-width: 24px;
    text-align: center;
    color: #888;
    font-size: 1em;
}

/* Responsive */
@media (max-width: 600px) {
    .pm-member-list-table th, .pm-member-list-table td {
        padding: 8px 7px;
        font-size: 1em;
    }
    .pm-page-num {
        min-width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 0.96em;
    }
    .pm-member-search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
}