/* 页面内容切换 - 已在 styles.css 中定义，此处移除重复 */

/* 仪表盘页面样式 */

/* 仪表盘卡片样式 */
.dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
    padding: 1.25rem;
    position: relative;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

