.icon { width: 20px; height: 20px; flex: 0 0 auto; stroke-width: 1.8; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 26px; height: 26px; }
.btn { min-height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--surface); cursor: pointer; transition: var(--transition); font-weight: 650; }
.btn:hover { border-color: var(--line-strong); background: var(--surface-alt); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); border-color: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-2); border-color: var(--brand-2); }
.field { display: grid; gap: 6px; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink-soft); }
.input, .textarea { width: 100%; min-height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); padding: 8px 11px; transition: var(--transition); }
.textarea { min-height: 96px; resize: vertical; }
.input:hover, .textarea:hover { border-color: var(--line-strong); }
.input:focus, .textarea:focus { border-color: var(--info); box-shadow: var(--focus); outline: none; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.card-pad { padding: 18px; }
.card-header { display: flex; align-items: flex-start; gap: 12px; justify-content: space-between; margin-bottom: 14px; }
.badge { display: inline-flex; align-items: center; gap: 5px; min-height: 25px; padding: 3px 9px; border-radius: 999px; font-size: .78rem; font-weight: 700; background: var(--surface-strong); color: var(--ink-soft); white-space: nowrap; }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-purple { background: var(--purple-soft); color: var(--purple); }
.notice { border-radius: var(--radius-sm); padding: 10px 14px; display: flex; gap: 10px; align-items: center; border: 1px solid var(--line); }
.notice-info { background: var(--info-soft); border-color: #c7daf8; color: #164f9f; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.stat-list { display: grid; gap: 10px; }
.stat-row { display: flex; align-items: center; gap: 10px; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.stat-row:last-child { border-bottom: 0; padding-bottom: 0; }
