/* Global Styling */
body {
  background-color: #f8f9fa;
}
.container {
  max-width: 1000px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Login Styling */
.login-bg {
  background-color: #f8f9fa;
}

.login-container {
  max-width: 400px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.login-form:focus {
  border-color: #6c757d;
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
}

#logo {
  max-width: 15%;
  padding: 0.5rem;
}

#nav {
  padding: 0.5rem 1rem;
}

/* Button Styling */
.btn-llibott-green {
  background-color: #84c332;
  color: #ffffff;
  border-color: #84c332;
}

.btn-outline-llibott-green {
  color: #84c332;
  border-color: #84c332;
}

.btn-llibott-blue {
  background-color: #4eabf9;
  color: #ffffff;
  border-color: #4eabf9;
}

.btn-outline-llibott-blue {
  color: #4eabf9;
  border-color: #4eabf9;
}

/* Card Styling */
.bg-llibott-blue {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

h1.pricing-card-title {
  font-size: 18px;
}

h2.or-card-title {
  font-size: 14px;
}

/* Vaccine Styling */
.vaccine-item {
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.vaccine-item.received {
  background-color: #e9ecef;
}

@media print {
  .noprint {
    display: none;
  }

  .container {
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  #eligible-vaccines,
  #received-vaccines {
    border: 1px solid #dee2e6;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  #eligible-vaccines::before,
  #received-vaccines::before {
    font-weight: bold;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  #eligible-vaccines::before {
    content: "Eligible Vaccines:";
  }

  #received-vaccines::before {
    content: "Received Vaccines:";
  }
}

.nav-link.dropdown-toggle {
  color: #304770;
}

.nav-link.dropdown-toggle:hover {
  color: #4eabf9;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  #logo {
    max-width: 35%;
  }
}
