@import url("variables.css");

:root {
  --bs-primary: #43afaf !important;
  --bs-primary-lighter: #43afafa2 !important;
  --bs-darker: #347c7c !important;
  --bs-primary-bg: #dcebebda !important;
  /* Custom primary color - override variables.css */
}

/* Modern Typography - Lato Font */
* {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Additional typography refinements for Lato */
strong,
b {
  font-weight: 700;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.navbar-brand {
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

.primary-light {
  color: var(--bs-primary-lighter) !important;
}

/* Force nav-pills active link background color to custom */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
}

.btn-primary {
  --bs-btn-bg: var(--bs-darker);
  --bs-btn-border-color: var(--bs-darker);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  color: white !important;
}

.btn-outline-primary {
  --bs-btn-border-color: var(--bs-darker);
  color: var(--bs-darker) !important;
  --bs-btn-active-bg: var(--bs-darker);
  --bs-btn-hover-bg: var(--bs-darker);
  --bs-btn-hover-border-color: var(--bs-darker);
}

.btn-outline-primary:active {
  background-color: var(--bs-darker);
  --bs-btn-active-color: var(--bs-darker);
}

body {
  background-color: rgb(248, 249, 250) !important;
}

.btn.btn-small {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.875rem !important;
  border-radius: 1.5rem !important;
}

header {
  align-content: center;
}

header a {
  color: var(--bs-primary) !important;
}

footer {
  font-size: 1rem;
}

footer a {
  color: var(--bs-primary) !important;
}

footer a:hover {
  color: #4ed3d3 !important;
}

footer a:active {
  color: #4ed3d3 !important;
}

/* Mobile footer - keep same layout but smaller font */
@media (max-width: 768px) {
  footer {
    font-size: 0.85rem;
  }

  footer h5 {
    font-size: 1rem;
  }

  footer .navbar-brand {
    font-size: 18px !important;
  }

  footer p {
    font-size: 0.85rem;
  }

  footer ul li {
    font-size: 0.85rem;
  }

  /* Keep columns layout on mobile */
  footer .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }

  footer .row {
    display: flex;
    flex-wrap: wrap;
  }
}

.btn-outline-primary:hover {
  color: white !important;
}

.btn {
  border: var(--bs-darker) 0.1rem solid !important;
  min-width: 120px;
  border-radius: 2rem !important;
}

.btn-primary:hover {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-sm {
  border-radius: 1.5rem !important;
}

/* Fix navbar elements margin */
.navbar .btn,
.navbar .navbar-text,
.navbar span {
  margin-bottom: 0 !important;
}

/* Header and Navigation Styles */
header .px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

@media (max-width: 900px) {
  .margin-top-mobile {
    margin-top: 70px !important;
  }
}

@media (max-width: 768px) {
  header .px-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  header .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Modern Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
  padding: 90px 0 0 20px;
}

/* Sidebar bez tła */
.admin-sidebar {
  width: 260px;
  min-height: calc(100vh - 100px);
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow-y: auto;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: none;
  transition: transform 0.3s ease;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 20px;
  z-index: 1001;
  background-color: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.hamburger-menu:hover {
  background-color: var(--bs-darker);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(67, 175, 175, 0.3);
}

.hamburger-menu ion-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Hamburger menu in header (mobile only) */
.hamburger-menu-header {
  display: none;
  background-color: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  margin-right: 15px;
  flex-shrink: 0;
}

.hamburger-menu-header:hover {
  background-color: var(--bs-darker);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(67, 175, 175, 0.3);
}

.hamburger-menu-header ion-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Overlay dla mobilnego menu */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* Sidebar Categories */
.sidebar-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1rem 0.5rem 1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.sidebar-category:first-child {
  margin-top: 0;
}

.admin-sidebar .nav-link {
  color: #333;
  padding: 0.75rem 1rem;
  margin: 0;
  border-radius: 2rem;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.admin-sidebar .nav-link:hover {
  background-color: rgba(67, 175, 175, 0.1);
  color: var(--bs-primary);
  transform: translateX(5px);
}

/* Sidebar logout button - hidden on desktop, shown on mobile */
.sidebar-logout {
  display: none;
  margin-top: auto;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

.sidebar-logout .btn {
  border-radius: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logout .btn ion-icon {
  font-size: 1.2rem;
}

.admin-sidebar .nav-link:active,
.admin-sidebar .nav-link.active {
  background-color: rgba(67, 175, 175, 0.15);
  color: var(--bs-primary);
}

.admin-sidebar .nav-link i {
  font-size: 1rem;
  margin-right: 0.75rem;
  width: 18px;
  flex-shrink: 0;
  color: var(--bs-primary-lighter);
}

.admin-sidebar .nav-link:hover i {
  color: var(--bs-primary);
}

/* Content area adjustments */
.admin-content {
  flex: 1;
  padding: 2rem;
  min-height: calc(100vh - 100px);
  background-color: #fff;
  overflow-x: auto;
  margin: 1rem;
  border-radius: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.161);
}

.patient-info-box {
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.141);
  margin-bottom: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .admin-layout {
    padding: 90px 0 0 20px;
  }

  /* Pokaż hamburger menu w headerze */
  .hamburger-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Ukryj stary hamburger menu */
  .hamburger-menu {
    display: none !important;
  }

  /* Ukryj sidebar domyślnie */
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    margin-right: 0;
    padding-top: 100px;
    padding-bottom: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  /* Show logout button in sidebar on mobile */
  .sidebar-logout {
    display: block;
  }

  /* Sidebar otwarty */
  .admin-sidebar.active {
    left: 0;
  }

  /* Dim hamburger when sidebar is open but keep it clickable */
  body:has(.admin-sidebar.active) .hamburger-menu-header {
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  /* Zwiększ padding content area gdy sidebar jest ukryty */
  .admin-content {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .admin-layout {
    padding: 80px 0 0 10px;
  }

  .admin-content {
    margin: 50px 20px 0 20px;
    padding: 1.25rem;
  }

  .patient-info-box {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .admin-layout {
    padding: 80px 5px 0 5px;
  }

  .hamburger-menu-header {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .hamburger-menu-header ion-icon {
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 20px !important;
  }

  .admin-sidebar {
    width: 240px;
    left: -260px;
  }

  .admin-content {
    padding: 0.75rem;
    margin: 50px 5px 0 5px;
  }

  .patient-info-box {
    padding: 0.75rem !important;
  }

  .admin-sidebar .nav-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Table Styling */
.table {
  font-weight: 400;
  font-size: 0.9rem;
}

.table thead th {
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--bs-primary);
  background-color: transparent;
  color: #333;
}

.table tbody td {
  font-weight: 400;
  border-bottom: 1px solid rgba(67, 175, 175, 0.1);
  vertical-align: middle;
}

.table .fw-medium {
  font-weight: 500;
}

.table .fw-bold {
  font-weight: 600;
}

/* Badge Status Styling */
.badge-status {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0.375rem;
  letter-spacing: 0.01em;
}

.badge-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.badge-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.badge-status ion-icon {
  font-size: 1rem;
}

/* Custom Details/Summary Styling */
.custom-details {
  cursor: pointer;
}

.custom-summary {
  display: inline-flex;
  align-items: center;
  color: var(--bs-primary);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  list-style: none;
  padding: 0.25rem 0;
}

.custom-summary::-webkit-details-marker {
  display: none;
}

.custom-summary:hover {
  color: var(--bs-darker);
  text-decoration: underline;
}

.custom-summary ion-icon {
  font-size: 1.1rem;
}

.questions-list {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.questions-list li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.questions-list li:last-child {
  margin-bottom: 0;
}

/* Alert Styling Enhancements */
.alert {
  border-radius: 0.5rem;
  border-left: 4px solid;
}

.alert-info {
  border-left-color: var(--bs-primary);
  background-color: rgba(67, 175, 175, 0.1);
  border-color: rgba(67, 175, 175, 0.2);
}

.alert ion-icon {
  flex-shrink: 0;
}

/* Button Group Enhancements */
.btn-group-sm > .btn,
.btn-group-sm .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  min-width: auto;
  border-radius: 0.25rem;
}

.btn-group .btn + .btn {
  margin-left: -1px;
}

.btn-outline-primary ion-icon,
.btn-outline-danger ion-icon {
  font-size: 1rem;
  vertical-align: middle;
}

/* Responsive Table Container */
.table-responsive {
  border-radius: 1rem;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 300px);
}

/* Custom scrollbar for tables */
.table-responsive::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--bs-primary-lighter);
  border-radius: 4px;
  transition: background 0.2s ease;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary);
}

/* Sticky table header */
.table-responsive thead {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .table-responsive {
    max-height: calc(100vh - 250px);
  }
}

/* Text Muted with Icons */
.text-muted {
  display: inline-flex;
  align-items: center;
}

.text-muted ion-icon {
  font-size: 1rem;
}

/* Staff Info in Tables */
.staff-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.staff-info strong {
  font-weight: 600;
  color: #333;
}

.staff-info small {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  color: #6c757d;
}

.staff-info small ion-icon {
  vertical-align: middle;
}

/* Frameless Icon Button */
.btn-icon-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--bs-primary) !important;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  font-weight: 500;
}

.btn-icon-edit:hover {
  color: var(--bs-darker) !important;
  transform: scale(1.05);
  background-color: rgba(67, 175, 175, 0.1);
  border-radius: 0.375rem;
  text-decoration: none !important;
}

.btn-icon-edit:active {
  transform: scale(0.95);
  color: var(--bs-darker) !important;
}

.btn-icon-edit:focus {
  outline: none;
  color: var(--bs-primary) !important;
  text-decoration: none !important;
}

.btn-icon-edit ion-icon {
  font-size: 1.2rem;
  color: inherit;
}

.btn-icon-edit span {
  font-size: 0.9rem;
  color: inherit;
}

.btn-icon-edit.text-danger {
  color: #dc3545 !important;
}

.btn-icon-edit.text-danger:hover {
  color: #a71d2a !important;
  background-color: rgba(220, 53, 69, 0.1);
}

/* Page Title Styles */
.admin-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.page-title-border {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

/* Icon Circle in Page Title */
.admin-content h2 .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bs-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.admin-content h2 .icon-circle ion-icon {
  color: white;
  font-size: 1.3rem;
}

/* Section Subtitle Styles */
.admin-content h3,
.admin-content h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

.admin-content h3 ion-icon,
.admin-content h5 ion-icon {
  color: var(--bs-primary-lighter);
}

/* Modal with Square Corners */
.modal-square .modal-content {
  border: 2px solid var(--bs-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.modal-square .modal-header {
  color: var(--bs-primary-lighter);
  border-bottom: 2px solid;
  padding: 1.25rem 1.5rem;
}

.modal-square .modal-title {
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  color: #333;
}

.modal-square .modal-title .icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--bs-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.modal-square .modal-title .icon-circle ion-icon {
  color: white;
  font-size: 1.2rem;
}

.modal-square .modal-header .btn-close {
  opacity: 0.8;
  color: var(--bs-primary);
}

.modal-square .modal-header .btn-close:hover {
  opacity: 1;
}

.modal-square .modal-body {
  padding: 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-square .modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

/* Button styles in modal */
.modal-square .btn {
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  min-width: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-square .btn-primary {
  background-color: var(--bs-darker);
  border-color: var(--bs-darker);
}

.modal-square .btn-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.modal-square .btn-outline-primary {
  color: var(--bs-darker);
  border-color: var(--bs-darker);
}

.modal-square .btn-outline-primary:hover {
  background-color: var(--bs-darker);
  border-color: var(--bs-darker);
  color: white;
}

/* Form controls in modal */
.modal-square input[type="text"],
.modal-square input[type="email"],
.modal-square input[type="number"],
.modal-square textarea,
.modal-square select {
  border-radius: 0.5rem !important;
}

.modal-square input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Global form control styling */
.form-control {
  border-radius: 0.5rem !important;
}

textarea.form-control {
  border-radius: 0.5rem !important;
}

select.form-control {
  border-radius: 0.5rem !important;
}

/* Checkbox styles with primary color */
.form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.form-check-input:focus {
  border-color: var(--bs-primary-lighter) !important;
  box-shadow: 0 0 0 0.25rem rgba(67, 175, 175, 0.25) !important;
}

.modal-square .form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/* Spinner in modal */
.modal-square .spinner-border {
  color: var(--bs-primary) !important;
}

/* Patient Info Box - rounded with shadow */
.patient-info-box {
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

/* Card Styling - Rounded */
.card {
  border-radius: 1.5rem !important;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(70, 70, 70, 0.08);
}

.card-primary {
  border-radius: 1.5rem !important;
  border: 2px solid var(--bs-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background-color: var(--bs-primary-bg);
}

.card-primary .card-header {
  background: var(--bs-primary-bg) !important;
  border-bottom: 1px solid #dee2e6;
  border-radius: 1.5rem 1.5rem 0 0 !important;
}

.card-primary .card-body {
  border-radius: 0 0 1.5rem 1.5rem !important;
}

/* Small icon circles for card headers */
.card-header .icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bs-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-header .icon-circle ion-icon {
  color: white;
  font-size: 1rem;
}

/* AI Badge - positioned absolute */
.ai-badge {
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 100;
  background: linear-gradient(
    135deg,
    var(--bs-darker) 10%,
    var(--bs-primary) 90%
  );
  color: white;
  padding: 0.4rem 0.7rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(67, 175, 175, 0.3);
  animation: pulse-ai 2s ease-in-out infinite;
}

.ai-badge ion-icon {
  font-size: 1rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulse-ai {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(67, 175, 175, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(67, 175, 175, 0.5);
  }
}

@keyframes sparkle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
}

/* Hide user greeting text on mobile */
@media (max-width: 768px) {
  .user-greeting-text {
    display: none;
  }

  /* Reduce header height on mobile */
  header {
    height: 70px !important;
    min-height: 70px !important;
  }

  /* Hide login/logout buttons in header on mobile */
  .header-auth-buttons {
    display: none !important;
  }

  /* Reduce all font sizes by 20% on mobile */
  body {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.44rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  h4 {
    font-size: 1.12rem;
  }

  h5 {
    font-size: 0.96rem;
  }

  h6 {
    font-size: 0.8rem;
  }

  .btn {
    font-size: 0.72rem;
  }

  .form-control,
  .form-select {
    font-size: 0.8rem;
  }

  .badge {
    font-size: 0.64rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text,
  p {
    font-size: 0.8rem;
  }

  .table {
    font-size: 0.72rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .small,
  small {
    font-size: 0.7rem;
  }
}
