:root {
  --primary: #2563eb;
  --bg: #f1f5f9;
}

body { background: var(--bg); font-family: 'Segoe UI', sans-serif; }

/* Navbar */
.navbar { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); box-shadow: 0 2px 10px rgba(0,0,0,.2); }

/* Login */
.login-body { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); }
.login-card { border-radius: 16px; border: none; }
.login-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #1e3a5f, #2563eb);
  border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; }
.login-icon i { font-size: 2rem; color: #fff; }

/* Filter card */
.filter-card { border: none; border-radius: 12px; box-shadow: 0 1px 6px rgba(0,0,0,.08); }

/* Stat cards */
.stat-card { border: none; border-radius: 12px; box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.stat-number { font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: .8rem; color: #64748b; margin-top: 4px; }

/* Table */
.card { border: none; border-radius: 12px; box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.card-header { background: #fff; border-bottom: 1px solid #e2e8f0; border-radius: 12px 12px 0 0 !important; padding: .9rem 1.25rem; }
thead th { background: #f8fafc; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #64748b; border-bottom: 2px solid #e2e8f0; }

/* Row status colors */
.status-called { background: #f0fdf4 !important; }
.status-callback { background: #fffbeb !important; }
.status-not_interested { background: #fef2f2 !important; opacity: .75; }
.status-not_called { background: #fff; }

/* Status select */
.status-select { font-size: .82rem; min-width: 150px; border-radius: 8px; }
.comment-input { font-size: .82rem; border-radius: 8px; }

/* Phone link */
.phone-link { color: var(--primary); text-decoration: none; font-size: .88rem; }
.phone-link:hover { text-decoration: underline; }

/* SRO badge */
.sro-badge { font-size: .78rem; color: #475569; }

/* Toast */
.toast-notify {
  position: fixed; bottom: 24px; right: 24px; background: #1e3a5f; color: #fff;
  padding: 10px 20px; border-radius: 8px; font-size: .9rem; opacity: 0;
  transition: opacity .3s; z-index: 9999; pointer-events: none;
}
.toast-notify.show { opacity: 1; }

/* Buttons */
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; }

/* Activity buttons flash */
@keyframes flash { 0%,100%{opacity:1} 50%{opacity:.3} }
.btn-flash { animation: flash .6s ease; }
