
:root {
  --dml-navy: #003E7E;
  --dml-navy-dark: #012A52;
  --dml-teal: #00AEEF;
  --dml-bg: #F5F7FA;
  --dml-card: #FFFFFF;
}

body {
  background: var(--dml-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sidebar {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--dml-navy) 0%, var(--dml-navy-dark) 100%);
  color: #fff;
}

.sidebar .logo-area {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .logo-area img {
  max-height: 42px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}

.sidebar .nav-link {
  color: #dbeafe;
  border-radius: 8px;
  margin: 2px 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.sidebar .nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.sidebar .nav-link.active {
  background: #ffffff;
  color: var(--dml-navy-dark);
  font-weight: 600;
}

.sidebar-icon {
  width: 18px;
  text-align: center;
}

.main-wrapper {
  min-height: 100vh;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.topbar .user-badge {
  font-size: 0.9rem;
  color: #4b5563;
}

.card-soft {
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.card-soft .card-header {
  background: transparent;
  border-bottom: 0;
}

.badge-status-billable {
  background-color: #fbbf24;
  color: #1f2937;
}

.badge-status-paid {
  background-color: #22c55e;
}

.badge-status-converted {
  background-color: #3b82f6;
}

.badge-status-not-converted {
  background-color: #9ca3af;
}

.btn-dml {
  background: var(--dml-teal);
  border-color: var(--dml-teal);
  color: #fff;
}

.btn-dml:hover {
  background: #0095d5;
  border-color: #0095d5;
  color: #fff;
}

.table thead th {
  background-color: var(--dml-navy-dark);
  color: #e5e7eb;
  border-color: #0f172a;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
}

.login-bg {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #00AEEF 0, #003E7E 45%, #012A52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  max-width: 420px;
  width: 100%;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15,23,42,0.35);
  padding: 28px 26px 26px;
}

.login-logo-wrapper {
  text-align: center;
  margin-bottom: 12px;
}

.login-logo-wrapper img {
  max-height: 52px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
}

.login-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: #111827;
}

.login-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 18px;
  font-size: 0.93rem;
}
