/* 设置页面自定义样式 */
.setting-module-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    overflow: hidden;
}

.setting-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* 酒店管理模块样式 */
.module-hotel .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}

.module-hotel .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.module-hotel .card-title::before {
    margin-right: 10px;
    font-size: 20px;
}

/* 支付配置模块样式 */
.module-payment .card-header {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}

.module-payment .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.module-payment .card-title::before {
    margin-right: 10px;
    font-size: 20px;
}

/* 佣金分配模块样式 */
.module-commission .card-header {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}

.module-commission .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.module-commission .card-title::before {
    margin-right: 10px;
    font-size: 20px;
}

/* 用户管理模块样式 */
.module-user .card-header {
    background: linear-gradient(135deg, #fd746c 0%, #ff9068 100%);
    color: white;
    border-bottom: none;
    padding: 15px 20px;
}

.module-user .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.module-user .card-title::before {
    margin-right: 10px;
    font-size: 20px;
}

/* 按钮样式 */
.setting-btn {
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 5px 8px 5px 0;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.setting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 酒店管理按钮 */
.btn-hotel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-hotel:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

/* 支付配置按钮 */
.btn-payment {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.btn-payment:hover {
    background: linear-gradient(135deg, #0f8a7f 0%, #32d46b 100%);
    color: white;
}

/* 佣金分配按钮 */
.btn-commission {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: white;
}

.btn-commission:hover {
    background: linear-gradient(135deg, #e63e5f 0%, #3754e0 100%);
    color: white;
}

/* 用户管理按钮 */
.btn-user {
    background: linear-gradient(135deg, #fd746c 0%, #ff9068 100%);
    color: white;
}

.btn-user:hover {
    background: linear-gradient(135deg, #e66860 0%, #e5825e 100%);
    color: white;
}

/* 按钮图标 */
.btn-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* 模态框样式优化 */
.setting-modal .modal-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-bottom: 1px solid #e1e5eb;
}

.setting-modal .modal-title {
    font-weight: 600;
    color: #2c3e50;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .setting-btn {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .setting-module-card {
        margin-bottom: 15px;
    }
}

/* 卡片内容区域 */
.module-card-body {
    padding: 20px;
    background: #f8f9fa;
}

/* 空状态提示 */
.setting-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.setting-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}
