.sge-card {
    background: var(--sge-color-surface);
    border: 1px solid var(--sge-color-border);
    border-radius: var(--sge-radius);
    box-shadow: var(--sge-shadow-sm);
    padding: 20px 24px;
}

.sge-card-lg { padding: 28px 32px; }

.sge-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.sge-card-title { font-size: 16px; font-weight: 600; margin: 0; }

.sge-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.sge-stat-card {
    background: var(--sge-color-surface);
    border: 1px solid var(--sge-color-border);
    border-radius: var(--sge-radius);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sge-stat-card:hover {
    box-shadow: var(--sge-shadow);
    transform: translateY(-1px);
}

.sge-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sge-color-primary-soft);
    color: var(--sge-color-primary);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sge-stat-warning .sge-stat-icon { background: var(--sge-color-warning-soft); color: #b87000; }
.sge-stat-danger  .sge-stat-icon { background: var(--sge-color-danger-soft); color: #b00020; }
.sge-stat-info    .sge-stat-icon { background: var(--sge-color-info-soft); color: #007bbf; }
.sge-stat-success .sge-stat-icon { background: var(--sge-color-success-soft); color: #1f6f3a; }

.sge-stat-body { display: flex; flex-direction: column; gap: 2px; }
.sge-stat-label { font-size: 13px; color: var(--sge-color-text-muted); }
.sge-stat-value { font-size: 24px; font-weight: 600; color: var(--sge-color-text); line-height: 1; }
.sge-stat-hint { font-size: 12px; color: var(--sge-color-text-muted); }

.sge-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.sge-action-card {
    display: flex;
    gap: 14px;
    background: var(--sge-color-surface);
    border: 1px solid var(--sge-color-border);
    border-radius: var(--sge-radius);
    padding: 18px;
    color: var(--sge-color-text);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}
.sge-action-card:hover {
    box-shadow: var(--sge-shadow);
    transform: translateY(-1px);
    border-color: var(--sge-color-primary-soft);
    color: var(--sge-color-text);
}

.sge-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--sge-color-primary-soft);
    color: var(--sge-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sge-action-body h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}
.sge-action-body p {
    margin: 0;
    color: var(--sge-color-text-muted);
    font-size: 13px;
}

.sge-empty {
    text-align: center;
    padding: 48px 24px;
}
.sge-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--sge-color-primary-soft);
    color: var(--sge-color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
}
.sge-empty-title { font-size: 18px; font-weight: 600; margin: 0 0 6px; }
.sge-empty-message { color: var(--sge-color-text-muted); margin: 0 0 16px; }

.sge-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: var(--sge-color-surface-soft);
    color: var(--sge-color-text-soft);
    border: 1px solid var(--sge-color-border);
}
.sge-badge-success { background: var(--sge-color-success-soft); color: #1f6f3a; border-color: transparent; }
.sge-badge-warning { background: var(--sge-color-warning-soft); color: #8a4a00; border-color: transparent; }
.sge-badge-danger  { background: var(--sge-color-danger-soft);  color: #b00020; border-color: transparent; }
.sge-badge-info    { background: var(--sge-color-info-soft);    color: #007bbf; border-color: transparent; }
.sge-badge-primary { background: var(--sge-color-primary-soft); color: var(--sge-color-primary); border-color: transparent; }

.sge-welcome-card {
    background: linear-gradient(135deg, #0071e3 0%, #5ac8fa 100%);
    border-radius: var(--sge-radius-lg);
    padding: 28px 32px;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: var(--sge-shadow);
}
.sge-welcome-card h2 { margin: 0 0 6px; font-size: 22px; font-weight: 600; }
.sge-welcome-card p { margin: 0; opacity: 0.9; }
