.brand-gradient { background-image: linear-gradient(90deg, #0f172a 13%, #2563eb 87%); }
.auth-bg { background-image: var(--auth-bg); }
.spinner { width: 24px; height: 24px; border: 3px solid #e2e8f0; border-top-color: rgb(var(--brand-600)); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.confirm-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(2px); animation: fadeIn 0.15s ease; }
.confirm-box { background: white; border-radius: 16px; padding: 24px; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; color: #94a3b8; }
.empty-state svg { width: 48px; height: 48px; margin-bottom: 12px; opacity: 0.5; }
.empty-state p { font-size: 14px; text-align: center; }
.search-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); max-height: 360px; overflow-y: auto; z-index: 50; margin-top: 4px; }
.search-dropdown a { display: flex; align-items: center; gap: 12px; padding: 10px 16px; font-size: 13px; color: #334155; transition: background 0.1s; text-decoration: none; }
.search-dropdown a:hover { background: #f1f5f9; }
.search-dropdown .search-empty { padding: 24px; text-align: center; color: #94a3b8; font-size: 13px; }
@media (max-width: 768px) {
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .confirm-box { max-width: calc(100vw - 2rem); }
}
