body { background: #f4f6f9; }

/* login */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}
.login-card {
  background: #fff;
  padding: 2rem 2.25rem;
  border-radius: .75rem;
  width: 100%;
  max-width: 380px;
}

/* layout */
.sidebar {
  width: 230px;
  min-height: calc(100vh - 56px);
  flex-shrink: 0;
}
.sidebar .nav-link {
  color: #333;
  border-radius: 0;
  padding: .65rem 1rem;
}
.sidebar .nav-link:hover { background: #e9ecef; }
.sidebar .nav-link.active {
  background: #2a5298;
  color: #fff;
}
.sidebar .nav-link i { width: 1.4rem; }

.content { min-height: calc(100vh - 56px); }

/* tables */
.table-sm td, .table-sm th { vertical-align: middle; }
.badge-status { font-size: .75rem; }
.cursor-pointer { cursor: pointer; }
.table-wrap { max-height: 70vh; overflow: auto; }
