/* ─── Toggle ─── */ .toggleRow { display: flex; align-items: flex-start; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); } .toggleInfo { flex: 1; margin-right: 16px; } .toggleLabel { font-size: 14px; font-weight: 600; color: var(--text-primary); } .toggleDesc { font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; } .toggle { position: relative; width: 44px; height: 24px; background: var(--bg-raised); border: 1px solid var(--border); border-radius: 12px; cursor: pointer; transition: background 0.2s, border-color 0.2s; flex-shrink: 0; } .toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--text-muted); border-radius: 50%; transition: transform 0.2s, background 0.2s; } .toggleOn { background: var(--amber); border-color: var(--amber); } .toggleOn::after { transform: translateX(20px); background: #0a0e17; } /* ─── Form Fields ─── */ .field { margin-top: 16px; } .label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 6px; } .hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; font-style: italic; } .input { width: 100%; background: var(--bg-base); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text-primary); font-family: var(--font-mono); font-size: 13px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; } .input:focus { border-color: var(--amber-dim); box-shadow: 0 0 0 3px var(--amber-glow); } /* ─── Tags ─── */ .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; } .tag { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-raised); border: 1px solid var(--border); border-radius: 99px; padding: 4px 10px; font-family: var(--font-mono); font-size: 12px; color: var(--text-secondary); } .tagRemove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 14px; padding: 0; line-height: 1; } .tagRemove:hover { color: var(--rose); } .tagInput { display: flex; gap: 8px; } .tagInput .input { flex: 1; } .tagAddBtn { padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-raised); color: var(--text-secondary); font-size: 13px; cursor: pointer; transition: all 0.15s; } .tagAddBtn:hover { border-color: var(--amber-dim); color: var(--text-primary); } /* ─── Header Action Button Variants ─── */ .btnPrimary { border-color: var(--amber) !important; background: var(--amber) !important; color: #0a0e17 !important; font-weight: 600; } .btnPrimary:hover:not(:disabled) { background: var(--amber-hover) !important; border-color: var(--amber-hover) !important; } .btnPrimary:disabled { opacity: 0.5; cursor: not-allowed; } .btnOutline { background: transparent; border-color: var(--border); color: var(--text-secondary); } .btnOutline:hover:not(:disabled) { border-color: var(--amber-dim); color: var(--text-primary); } .btnOutline:disabled { opacity: 0.5; cursor: not-allowed; } .btnDanger { border-color: var(--rose-dim) !important; color: var(--rose) !important; background: transparent !important; } .btnDanger:hover:not(:disabled) { background: var(--rose-glow) !important; } .btnDanger:disabled { opacity: 0.5; cursor: not-allowed; } /* ─── Confirm Bar ─── */ .confirmBar { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 12px 16px; background: var(--rose-glow); border: 1px solid rgba(244, 63, 94, 0.2); border-radius: var(--radius-sm); font-size: 13px; color: var(--rose); } .confirmBar button { font-size: 13px; cursor: pointer; } .confirmActions { display: flex; gap: 8px; } /* ─── Status Messages ─── */ .successMsg { margin-top: 16px; padding: 10px 12px; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); border-radius: var(--radius-sm); font-size: 13px; color: var(--green); } .errorMsg { margin-top: 16px; padding: 10px 12px; background: var(--rose-glow); border: 1px solid rgba(244, 63, 94, 0.2); border-radius: var(--radius-sm); font-size: 13px; color: var(--rose); } /* ─── Skeleton Loading ─── */ .skeleton { animation: pulse 1.5s ease-in-out infinite; background: var(--bg-raised); border-radius: var(--radius-sm); height: 20px; margin-bottom: 12px; } .skeletonWide { composes: skeleton; width: 100%; height: 40px; } .skeletonMedium { composes: skeleton; width: 60%; } @keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }