html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

.nav-link {
  border-radius: 5px;
  margin-bottom: 5px;
}

.nav-link:hover {
  background-color: #f8f9fa;
}

.nav-link.active {
  background-color: #0d6efd;
}

.table th {
  font-weight: 600;
}

.form-select {
  min-width: 120px;
}

/* Login-style card styling for all pages */
.card {
  border-radius: 15px;
  border: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px 15px 0 0 !important;
}

.card-footer {
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0 0 15px 15px !important;
}

.input-group-text {
  border: none;
  background-color: #f8f9fa;
}

.form-control {
  border: 1px solid #e0e0e0;
}

.btn-primary {
  border-radius: 8px;
}

/* Table styling */
.table {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Page header styling */
.page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.page-header h1, .page-header h2 {
  color: #333;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #6c757d;
}