body {
  background-color: #fdf8f3;
  font-family: 'Segoe UI', sans-serif;
}
.container-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.section-label {
  font-weight: bold;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0.5rem;
}
.form-section {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
}
.nav-tabs .nav-link.active {
  font-weight: bold;
  color: #23403f;
  border: none;
  border-bottom: 2px solid #23403f;
}
.search-btn {
  background-color: #558d95;
  color: white;
}
.patient-card {
  border: 2px solid #007ebd;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: white;
}
.patient-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px dashed #007ebd;
  font-weight: 600;
}
.patient-body {
  padding: 1rem;
}
.patient-body > div {
  margin-bottom: 8px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
