* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}
.flex {
    display: flex;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.width-full {
    width: 100%;
}
.paragraph {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
}

/* ── Quick Actions ─────────────────────────────── */
.quick-actions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.quick-action-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px 18px;
    flex: 1 1 220px;
    max-width: 320px;
    text-decoration: none;
    color: inherit;
}
.quick-action-card:hover,
.quick-action-card:focus {
    text-decoration: none !important;
    color: inherit !important;
    background: #fff !important;
    border-color: #E5E7EB !important;
}
.quick-action-title,
.quick-action-card:hover .quick-action-title {
    color: #111827 !important;
}
.quick-action-desc,
.quick-action-card:hover .quick-action-desc {
    color: #9CA3AF !important;
}
.quick-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #EFF6FF;
}
.quick-action-icon svg { width: 20px; height: 20px; }
.quick-action-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.quick-action-title {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}
.quick-action-desc {
    font-size: 11px;
    color: #9CA3AF;
}
.quick-action-arrow { display: none; }


/* ── Header ── */
.sd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.sd-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
}

.sd-back-btn:hover {
    color: #111827;
    text-decoration: none;
}

.sd-header-left h1 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.sd-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: #345EFF;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}

.sd-add-btn:hover {
    background: #2448d4;
    color: #fff;
    text-decoration: none;
}

