/*! Bootstrap v5.3.0 (custom subset for offline use) */
:root {
  --bs-blue: #4776E6;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #4776E6;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-body-font-family: "Inter", "Segoe UI", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #f1f5fb;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}
a {
  color: var(--bs-primary);
  text-decoration: none;
}
a:hover {
  color: #2f5ac9;
}
.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.col {
  flex: 1 0 0%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.col-md-6 {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 768px) {
  .col-md-6 {
    width: 100%;
  }
}
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 0.45rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn-primary {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover {
  background-color: #2f5ac9;
  border-color: #2f5ac9;
}
.btn-secondary {
  color: #fff;
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}
.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-color: transparent;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--bs-primary);
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.75rem;
  border-bottom: 1px solid #dee2e6;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(71,118,230,.05);
}
.table-hover tbody tr:hover {
  background-color: rgba(71,118,230,.1);
}
.table thead th {
  border-bottom: 2px solid #dee2e6;
  color: #4d5875;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(15,38,84,.1);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--bs-primary);
}
.navbar-nav {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: #495057;
  font-weight: 500;
}
.nav-link.active,
.nav-link:hover {
  color: var(--bs-primary);
}
.card {
  background-color: #fff;
  border-radius: 0.75rem;
  border: 1px solid rgba(15,38,84,.05);
  box-shadow: 0 6px 18px rgba(71,118,230,.08);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border-radius: 2rem;
}
.bg-success {
  background-color: var(--bs-success) !important;
}
.bg-danger {
  background-color: var(--bs-danger) !important;
}
.bg-warning {
  background-color: var(--bs-warning) !important;
  color: #212529;
}
.bg-secondary {
  background-color: var(--bs-secondary) !important;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  background-clip: padding-box;
}
.form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
}
.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4d5875;
}
.alert {
  position: relative;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.badge.bg-light {
  background-color: #f8f9fa !important;
  color: #4d5875 !important;
}
.table-responsive {
  overflow-x: auto;
}
.footer {
  background-color: #fff;
  border-top: 1px solid rgba(15,38,84,.1);
  padding: 1rem 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
main {
  padding-bottom: 5rem;
}
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.text-muted { color: #6c757d; }
.text-center { text-align: center; }
.text-end { text-align: right; }
.small { font-size: 0.875rem; }
.shadow-sm { box-shadow: 0 2px 6px rgba(71,118,230,.1); }
.rounded-3 { border-radius: 1rem; }
.bg-white { background-color: #fff; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
@media (max-width: 992px) {
  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .navbar-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .navbar-nav.right {
    justify-content: flex-end;
  }
}
