/* ========== 仪表盘主容器 ========== */
.sm-dashboard-container {
    max-width: 720px;
    margin: 32px auto;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
                 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;*/
    color: #333;
    line-height: 1.7;
}

/* ========== 头部问候语 ========== */
.sm-dashboard-header {
    margin-bottom: 28px;
    text-align: center;
}

.sm-dashboard-greeting {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.sm-dashboard-greeting strong {
    color: #27ae60;
}

/* ========== 退出登录链接 ========== */
.sm-dashboard-logout {
    margin-left: 18px;
    font-size: 14px;
    color: #888;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.sm-dashboard-logout:hover {
    background-color: #e9ecef;
    color: #555;
    border-color: #ccc;
}

/* ========== 标题 ========== */
.sm-dashboard-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f2f5;
    text-align: center;
}

/* ========== 菜单列表 ========== */
.sm-dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sm-dashboard-menu li {
    text-align: center;
}

.sm-dashboard-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #34495e;
    text-decoration: none;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
}

.sm-dashboard-menu a:hover {
    background-color: #e9ecef;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #d1d9e6;
}
.button-prominent {
    background-color: #db462b !important; /* 醒目的橙红色 */
    border-color: #db462b !important;
    color: white !important;
    font-size: 24px !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
   
   
    transition: all 0.3s ease;
}

.button-prominent:hover {
    background-color: rgb(226, 63, 3) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3) !important;
}
/* ========== 响应式适配 ========== */
@media (max-width: 600px) {
    .sm-dashboard-container {
        margin: 16px;
        padding: 20px;
    }

    .sm-dashboard-greeting {
        font-size: 16px;
    }

    .sm-dashboard-logout {
        margin-left: 12px;
        font-size: 13px;
        padding: 5px 10px;
    }

    .sm-dashboard-title {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .sm-dashboard-menu a {
        padding: 12px 16px;
        font-size: 15px;
    }
}