/* assets/css/style.css
   Small custom styles layered on top of Bootstrap 5. */

body { background: #f4f6f9; }

.app-navbar { background: #0d3b66; }          /* IPE deep blue */
.app-navbar .navbar-brand { letter-spacing: .5px; }

.stat-card { border-left-width: 4px; }

/* Status badges */
.badge.status-draft     { background: #6c757d; }
.badge.status-submitted { background: #0d6efd; }
.badge.status-verified  { background: #198754; }
.badge.status-rejected  { background: #dc3545; }

/* Login screen */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d3b66 0%, #154c85 100%);
  padding: 1rem;
}
.login-card { width: 100%; max-width: 380px; border: none; border-radius: 12px; }

/* Tables a touch tighter on mobile */
@media (max-width: 576px) {
  table { font-size: .85rem; }
}
