/* Global Font */
body {
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
  color: #212529;
  font-size: 16px;
  line-height: 1.6;
}

/* Reset link style */
a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

/* Make buttons more modern */
.btn {
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.25px;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

/* Optional: Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #111;
}

/* Optional: Card links */
.card a {
  color: #0d6efd;
  text-decoration: none;
}

.card a:hover {
  color: #084298;
  text-decoration: underline;
}
/* Sidebar heading spacing */
aside h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Improve list items */
.list-group-item {
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

/* Improve links in list */
.list-group-item a {
  padding: 0.25rem 1rem;

  text-decoration: none;
  display: block;
}

.list-group-item a:hover {
  text-decoration: underline;
  color: #084298;
}

/* Last item border fix */
.list-group-item:last-child {
  border-bottom: none;
}
