body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; 
    background-color: #f5f5f7; 
    margin: 0; 
}
.container { 
    max-width: 800px; 
    margin: 20px auto; 
    background: white; 
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}
header { 
    padding: 15px 20px; 
    border-bottom: 1px solid #eee; 
    display: flex; 
    align-items: center; 
}
header h1 { 
    margin: 0; 
    font-size: 18px; 
    margin-left: 15px; 
}
.back-link { 
    text-decoration: none; 
    color: #333; 
    font-weight: bold; 
    font-size: 16px; 
}
main { 
    padding: 0 20px 20px 20px; 
}
/* --- 功能卡片布局 --- */
.function-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.function-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: center;
}
.function-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.function-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}
.function-card p {
    margin: 5px 0 0;
    color: #666;
    font-size: 12px;
}
/* --- 【已升级】翻页组件样式 --- */
.pagination {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}
.pagination .page-nav-button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    line-height: 1;
}
.pagination .page-nav-button:hover:not(:disabled) {
    background-color: #f0f0f0;
}
.pagination .page-nav-button:disabled {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}
.pagination .page-info {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    min-width: 120px;
    text-align: center;
}
.loading-text, .error-text { 
    text-align: center; 
    color: #888; 
    padding: 20px; 
}
.employee-card { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 0; 
    border-bottom: 1px solid #eee; 
    margin-bottom: 0;
    border-radius: 0;
    border: none;
}
.employee-card:last-child {
    border-bottom: none;
}
/* 【修改】人员和电话在同一行 */
.info .name-mobile {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.info .name-mobile span {
    font-weight: normal;
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

/* 新增：员工套餐信息样式 */
.combo-info {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.actions button { 
    padding: 8px 12px; 
    border-radius: 5px; 
    border: 1px solid; 
    cursor: pointer; 
    margin-left: 10px; 
    font-weight: bold; 
}
.btn-approve { 
    background-color: #28a745; 
    color: white; 
    border-color: #1e7e34; 
}
.status-approved { 
    color: #28a745; 
    font-weight: bold; 
}