/* ============================================
   团队计划实施表 - 全局样式
   主色：#14c74f 辅助：黑/浅灰  白底
   ============================================ */

:root {
    --primary: #14c74f;
    --primary-dark: #0fae42;
    --primary-light: #e7f9ee;
    --black: #1a1a1a;
    --gray-800: #333;
    --gray-600: #666;
    --gray-400: #999;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --danger: #e5484d;
    --radius: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { font-size: 16px; background: #f5f6f8; }

/* 禁止横向滚动/拖动，避免页面左右移动 */
html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: #f5f6f8;
    color: var(--black);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 72px;
}

a { text-decoration: none; color: inherit; }
input, textarea, select, button { font-family: inherit; font-size: 16px; color: var(--black); }
svg { flex-shrink: 0; }

/* ---------- 顶部栏 ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 16px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-100);
}
.topbar-back { justify-content: space-between; }
.topbar-title { font-size: 17px; font-weight: 600; color: var(--black); }
.topbar-actions { display: flex; gap: 4px; align-items: center; }
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--gray-800);
    background: transparent;
    border: none;
}
.icon-btn:active { background: var(--gray-100); }
.icon-btn svg { width: 22px; height: 22px; }
.back-btn { margin-left: -8px; }

/* 顶部栏登录用户头像（绿底 + 名字首字） */
.topbar-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-left: 4px;
    transition: opacity .15s;
}
.topbar-avatar:active { opacity: .8; }

/* ---------- 提示条 ---------- */
.alert {
    margin: 12px 12px 0;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.5;
}
.alert-top { position: sticky; top: 60px; z-index: 90; }
.alert-success { background: var(--primary-light); color: var(--primary-dark); }
.alert-error { background: #fdecec; color: var(--danger); }

/* ---------- 搜索 ---------- */
.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 12px 0;
    padding: 0 12px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
}
.search-bar svg { width: 18px; height: 18px; }
.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    height: 100%;
}
.search-bar input::placeholder { color: var(--gray-400); }

/* ---------- Tab 导航 ---------- */
.tabs {
    display: flex;
    margin: 14px 12px 0;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 3px;
    gap: 2px;
}
.tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-600);
    transition: all .2s;
}
.tab-item.active {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.tab-num {
    font-size: 12px;
    background: rgba(0,0,0,.06);
    border-radius: 9px;
    padding: 0 6px;
    line-height: 18px;
    font-weight: 400;
    color: var(--gray-400);
}
.tab-item.active .tab-num {
    background: var(--primary-light);
    color: var(--primary);
}

/* ---------- 计划列表 ---------- */
.plan-list { padding: 12px; }
.plan-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 12px;
    transition: transform .15s;
}
/* 优先级以标题前小标签区分，不加左侧竖条 */
.plan-card:active { transform: scale(.98); }
.plan-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.plan-card-head h3 { font-size: 16px; font-weight: 600; line-height: 1.4; flex: 1; }
.plan-card-content {
    margin-top: 6px;
    font-size: 13px;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.plan-card-meta { margin-top: 10px; }
.plan-card-meta .date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-400);
}
.plan-card-meta .date svg { width: 14px; height: 14px; }
.plan-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}
.people { display: flex; align-items: center; }
.progress-count {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: var(--gray-400);
}
.progress-count svg { width: 14px; height: 14px; }

/* ---------- 状态徽章 ---------- */
.status-badge {
    flex-shrink: 0;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 10px;
    line-height: 20px;
    white-space: nowrap;
}
.status-badge.todo { background: var(--gray-100); color: var(--gray-600); }
.status-badge.doing { background: var(--primary-light); color: var(--primary-dark); }
.status-badge.done { background: var(--primary); color: #fff; }
.status-badge.overdue { background: #333; color: #fff; }
.status-badge.failed { background: #fdecec; color: #e5484d; }

/* ---------- 优先级标签 ---------- */
.pri-tag {
    display: inline-block;
    flex-shrink: 0;
    font-size: 11px;
    line-height: 18px;
    padding: 0 8px;
    border-radius: 4px;
    margin-right: 6px;
    vertical-align: 2px;
    font-weight: 600;
}
.pri-tag.urgent { background: #fdecec; color: #e5484d; }
.pri-tag.important { background: #fdf3e7; color: #f5a623; }
.pri-tag.normal { background: var(--gray-100); color: var(--gray-600); }
.detail-head-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ---------- 头像 ---------- */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-right: -6px;
    border: 2px solid var(--white);
}
.avatar:first-child { margin-right: 2px; }
.avatar-green { background: var(--primary); }
.avatar-gray { background: #b8b8b8; }
.avatar-more { background: var(--gray-100); color: var(--gray-600); }

/* ---------- 底部导航 ---------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 60px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--gray-100);
    display: flex;
    z-index: 100;
}
.bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 6px;
    gap: 2px;
    font-size: 11px;
    color: var(--gray-400);
}
.bottom-nav a.active { color: var(--primary); }
.bottom-nav svg { width: 22px; height: 22px; }

/* 中间「新建」：绿色圆形 + 白色加号，凸起醒目 */
.bottom-nav a.nav-create { position: relative; }
.nav-create-btn {
    position: absolute;
    top: -13px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    transition: transform .15s;
}
.nav-create-btn:active { transform: scale(.92); }
.nav-create-btn svg { width: 24px; height: 24px; }
.bottom-nav a.nav-create > svg { display: none; }

/* ---------- 空状态 ---------- */
.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 70px 20px;
    color: var(--gray-400);
    font-size: 14px;
}
.empty svg { width: 56px; height: 56px; }
.empty-sm { padding: 30px 20px; }
.empty-sm p { font-size: 13px; }

/* ============ 登录页 ============ */
.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 20px;
    background: #f5f6f8;
}
.auth-card {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px 24px 24px;
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo h1 { font-size: 22px; font-weight: 700; }
.auth-logo p { font-size: 13px; color: var(--gray-400); margin-top: 4px; }
.auth-form .field { margin-bottom: 16px; }
.auth-form label { display: block; font-size: 13px; color: var(--gray-600); margin-bottom: 6px; }
.auth-form input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    outline: none;
    background: var(--primary-light);
    font-size: 15px;
    transition: border-color .2s, background .2s;
}
.auth-form input:focus {
    border-color: var(--primary);
    background: var(--white);
}
.auth-tip { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 18px; }
.auth-copyright {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

/* ============ 按钮 ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    height: 42px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .15s, transform .1s;
}
.btn:active { opacity: .85; transform: scale(.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-success { background: var(--primary); color: #fff; }
.btn-outline { background: var(--white); color: var(--primary); border: 1px solid var(--primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger-ghost { background: var(--white); color: var(--danger); border: 1px solid #f3c2c4; }
.btn-block { width: 100%; }
.btn-lg { height: 48px; font-size: 16px; }
.btn-xs { height: 28px; padding: 0 10px; font-size: 12px; border-radius: 7px; }

/* ============ 表单 ============ */
.page-form { padding: 4px 16px 20px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}
.form-group label em { color: var(--primary); font-style: normal; }
.form-group label em.optional { color: var(--gray-400); font-weight: 400; font-size: 12px; }
.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group textarea,
.form-group select.select-control {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 0 12px;
    height: 44px;
    outline: none;
    background: var(--white);
    font-size: 15px;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}
.form-group textarea { height: auto; padding: 12px; resize: vertical; line-height: 1.6; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-tip { font-size: 12px; color: var(--gray-400); margin-top: 6px; }

.date-row { display: flex; align-items: flex-end; gap: 6px; }
.date-item { flex: 1; min-width: 0; }
.date-label { display: block; font-size: 12px; color: var(--gray-400); margin-bottom: 4px; }
.date-sep { padding-bottom: 12px; color: var(--gray-400); font-size: 14px; flex-shrink: 0; }
/* 日期输入框：允许收缩，避免窄屏溢出 */
.date-item input[type="date"] {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
    font-size: 14px;
}

/* 配合人选择 */
.member-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.member-chip { cursor: pointer; }
.member-chip input { display: none; }
.member-chip span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    font-size: 13px;
    color: var(--gray-600);
    transition: all .15s;
}
.member-chip input:checked + span {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
    font-weight: 500;
}
.member-chip input:checked + span::before {
    content: "✓";
    font-size: 12px;
    font-weight: 700;
}
/* 「全体」按钮：绿色突出 */
.member-chip-all span {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
    font-weight: 600;
}
.member-chip-all input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ============ 详情页 ============ */
.detail-card {
    margin: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}
.detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
}
.detail-head h2 { font-size: 18px; font-weight: 700; line-height: 1.4; flex: 1; }
.detail-head h3 { font-size: 16px; font-weight: 600; }
.detail-block { margin-bottom: 16px; }
.detail-block:last-child { margin-bottom: 0; }
.detail-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.detail-label svg { width: 15px; height: 15px; color: var(--primary); }
.detail-content {
    font-size: 15px;
    color: var(--gray-800);
    white-space: pre-wrap;
    word-break: break-word;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 12px;
}
.detail-date { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.date-chip {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 500;
}
.date-arrow { color: var(--gray-400); }
.detail-people {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.person-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.person-item .avatar {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border: none;
    margin: 0;
    flex-shrink: 0;
}
.person-name { font-size: 13px; color: var(--gray-800); line-height: 1.3; }
.person-name em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--gray-400);
}
.detail-status { display: flex; align-items: center; gap: 10px; }
.completed-time { font-size: 12px; color: var(--gray-400); }

.confirm-form { margin-top: 16px; }
/* 完成/失败按钮并排一行：确认完成主按钮更宽大，任务失败辅助按钮收窄 */
.confirm-row { display: flex; gap: 10px; margin-top: 16px; }
.confirm-row > * { min-width: 0; }
.confirm-row > :first-child { flex: 0.7; }   /* 任务失败（窄） */
.confirm-row > :last-child { flex: 1.5; }    /* 确认完成（宽） */
.confirm-row .confirm-form { margin-top: 0; }
.confirm-row .btn { width: 100%; }
.done-banner {
    margin-top: 16px;
    text-align: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}
.fail-banner { background: #fdecec; color: #e5484d; }
/* 失败原因展示 */
.fail-reason {
    margin-top: 12px;
    background: #fdecec;
    border-radius: 10px;
    padding: 12px;
}
.fail-reason-label {
    font-size: 12px;
    font-weight: 600;
    color: #e5484d;
    margin-bottom: 4px;
}
.fail-reason-text {
    font-size: 14px;
    color: #8a2b2e;
    line-height: 1.6;
    word-break: break-word;
    white-space: pre-wrap;
}
/* 列表卡片失败原因摘要 */
.plan-card-fail {
    margin-top: 6px;
    font-size: 12px;
    color: #e5484d;
    background: #fdecec;
    border-radius: 6px;
    padding: 4px 8px;
}

/* 进度反馈 */
.progress-num {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
}
.progress-item { display: flex; gap: 10px; margin-bottom: 14px; }
.progress-item .avatar { width: 32px; height: 32px; font-size: 14px; border: none; margin: 0; }
.progress-body {
    flex: 1;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 10px 12px;
}
.progress-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.progress-author { font-size: 13px; font-weight: 600; color: var(--gray-800); }
.progress-time { font-size: 11px; color: var(--gray-400); }
.progress-text { font-size: 14px; color: var(--gray-600); word-break: break-word; white-space: pre-wrap; }

.progress-form { margin-top: 14px; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.progress-form textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px;
    outline: none;
    resize: vertical;
    font-size: 14px;
    line-height: 1.6;
}
.progress-form textarea:focus { border-color: var(--primary); }
.progress-form-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.progress-closed {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    background: var(--gray-100);
    border-radius: 10px;
    padding: 10px;
}

/* ============ 个人中心 ============ */
.profile-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    margin: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #3ddc74 100%);
    border-radius: var(--radius);
    color: #fff;
    box-shadow: 0 4px 16px rgba(20,199,79,.3);
}
.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.profile-info { flex: 1; min-width: 0; }
.profile-info h2 { font-size: 18px; font-weight: 700; }
.profile-info p { font-size: 13px; opacity: .9; margin-top: 2px; }

/* 「修改资料」按钮（用户卡右侧） */
.profile-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s;
}
.profile-edit-btn:active { background: rgba(255,255,255,.4); }
.profile-edit-btn svg { width: 13px; height: 13px; }

/* 管理员入口条 */
.admin-entry {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 12px 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}
.admin-entry svg { width: 18px; height: 18px; color: var(--primary); }
.admin-entry .list-arrow { margin-left: auto; color: var(--gray-400); font-size: 18px; }

.list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 2px;
}
.list-link span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}
.list-link svg { width: 20px; height: 20px; color: var(--primary); }
.list-arrow { font-size: 20px; color: var(--gray-400); }
.logout-wrap { padding: 8px 16px 20px; }

/* ============ 成员管理 ============ */
.member-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.member-row:last-child { border-bottom: none; }
.member-row .avatar { width: 36px; height: 36px; font-size: 15px; border: none; margin: 0; flex-shrink: 0; }
.member-info { flex: 1; min-width: 0; }
.member-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}
.member-meta {
    font-size: 12px;
    color: var(--gray-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.admin-tag {
    font-size: 10px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 500;
}
.admin-tag-me { background: #333; color: #fff; }
.member-ops { display: flex; gap: 6px; flex-shrink: 0; }

/* ============ 弹层 ============ */
.modal-mask {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
/* 关键：hidden 属性必须优先生效，否则弹窗一进页面就显示 */
.modal-mask[hidden] { display: none !important; }
.modal {
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
}
.modal h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.modal-tip { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }
.modal input[type="text"] {
    width: 100%;
    height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 0 12px;
    outline: none;
    font-size: 15px;
}
.modal textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 10px 12px;
    outline: none;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
}
.modal textarea:focus { border-color: var(--danger); }
.modal input:focus { border-color: var(--primary); }
.modal-actions { display: flex; gap: 10px; margin-top: 16px; }
.modal-actions .btn { flex: 1; }

@media (min-width: 481px) {
    body { border-left: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100); }
}
