@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  background-color: #f3f4ff;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  width: 100vw;
  background-image: url("../../assets/blob.svg");
  background-position: center center;
  background-repeat: no-repeat;
  overflow-x: none !important;
  color: #303972;
}

.color-blue {
  background: #303972;
  border: none;
}

.color-blue:hover {
  background: #1e2772;
}

.color-blue:active {
  background: #303972 !important;
  box-shadow: 0px 8px 12px 0px rgba(1, 106, 253, 0.3) !important;
}

.color-blue-outline {
  border: #303972 solid 1px;
  color: #303972;
  font-weight: 600;
}

.color-blue-outline:hover {
  background: #303972;
  color: white;
  border: #303972 solid 1px;
}

.color-blue-outline:active {
  background: #303972 !important;
  color: white !important;
  box-shadow: 0px 8px 12px 0px rgba(1, 106, 253, 0.3) !important;
}

#canteen .header {
  border-bottom: 1px solid #303972;
  background: #f3f4ff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#canteen .box {
  width: 33.33%;
  display: flex;
}

#canteen .nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 5px;
}

#canteen .logo {
  justify-content: center;
}

#canteen .logo img {
  height: 2.5rem;
}

#canteen .user-info {
  display: flex;
  justify-content: end;
}

#canteen .user-info-box {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  justify-content: end;
}

#canteen .user-info-box:hover {
  background-color: white;
}

#canteen .header .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

#canteen .header .user-info .dropdown-toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#canteen .student-name {
  color: #303972;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

#canteen .student-class {
  color: #303972;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 500;
}

#canteen .form-snack {
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}

#canteen .form-check-label {
  font-weight: 600;
  font-size: 1rem;
}

#canteen .form-snack-input {
  padding: 5px;
}

#canteen .footer {
  background-color: #f8f9fa;
  padding: 1rem 1rem;
  border-top: 1px solid #e3e4e8;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
#canteen .total-amount {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
#canteen .total-amount i {
  margin-right: 0.5rem;
}
#canteen .pay-buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}

#canteen .meal-table {
  --bs-table-bg: tranparent !important;
  background-color: white;
  border-radius: 1rem;
}

#canteen .table-header th {
  color: #303972;
  padding: 1rem;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
}

#canteen .form-check-label {
  color: #303972;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

#canteen .menu-section {
  margin-top: 20px;
}

#canteen .lg-screen {
  display: block;
  height: auto;
}
#canteen .sm-screen {
  display: none;
}

/* for smaller screens */
@media (max-width: 768px) {
  #canteen .lg-screen {
    display: none;
  }
  #canteen .sm-screen {
    display: block;
  }

  #canteen .canteen-order-card {
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: auto;
  }

  #canteen hr {
    margin: 1rem 0;
  }

  #canteen .menu-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    position: relative;
  }

  #canteen .price {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 0.25rem 1rem;
  }

  #canteen .menu-item {
    margin-bottom: 0rem;
  }

  #canteen .menu-options div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  #canteen .menu-options label {
    margin-right: 10px;
  }

  #canteen .menu-options input[type="checkbox"] {
    margin-left: auto;
  }

  #canteen .left {
    display: none;
  }

  #canteen .box {
    width: 50%;
  }

  #canteen .logo {
    justify-content: left;
  }

  #canteen .logo img {
    height: 2rem;
  }
}

#switch .login-container {
  max-width: 25rem;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 0.5rem;
  color: #303972;
}

#switch .logo {
  height: 3rem;
  margin-bottom: 2.5rem;
  object-fit: contain;
}

#switch .login-header {
  margin-bottom: 20px;
  text-align: center;
}

#switch .login-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#switch .login-header p {
  font-size: 1.25rem;
  font-weight: 400;
}

#switch .login-form a {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
}

#switch .student {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  border: 1px solid #303972;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  padding: 0.5rem;
}

#switch .student-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#switch .student-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

#switch .student-info p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3px;
}

#switch .student:hover {
  background-color: #f3f4ff;
}

#switch .student-image img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 100px;
  margin: 5px 20px;
}

#cart .header {
  border-bottom: 1px solid #303972;
  background: #f3f4ff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cart .box {
  width: 33.33%;
  display: flex;
}

#cart .nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 5px;
}

#cart .logo {
  justify-content: center;
}

#cart .logo img {
  height: 2.5rem;
}

#cart .user-info {
  display: flex;
  justify-content: end;
}

#cart .user-info-box {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  justify-content: end;
}

#cart .user-info-box:hover {
  background-color: white;
}

#cart .header .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

#cart .header .user-info .dropdown-toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#cart .student-name {
  color: #303972;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

#cart .student-class {
  color: #303972;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 500;
}

#cart .form-snack {
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}

#cart .form-check-label {
  font-weight: 600;
  font-size: 1rem;
}

#cart .form-snack-input {
  padding: 5px;
}

#cart .footer {
  background-color: #f8f9fa;
  padding: 1rem 1rem;
  border-top: 1px solid #e3e4e8;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

#cart .total-amount {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

#cart .total-amount i {
  margin-right: 0.5rem;
}

#cart .pay-buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}

#cart .form-check-label {
  color: #303972;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
}

#cart .menu-section {
  margin-top: 20px;
}

#cart .card img {
  height: 180px;
  object-fit: contain;
}

#cart .card-title {
  font-size: 1.25rem;
  color: #303972;
}

#cart .card-text {
  font-size: 1rem;
  color: #303972;
}

#cart .price-tag {
  font-size: 1.5rem;
  color: #303972;
  font-weight: bold;
}

#cart .add-to-cart-buttons {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

#cart .add-to-cart-group .btn {
  width: 100%;
}

#cart .has-search .form-control {
  padding-left: 2.375rem;
}

#cart .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

/* for smaller screens */
@media (max-width: 768px) {
  #cart .left {
    display: none;
  }

  #cart .box {
    width: 50%;
  }

  #cart .logo {
    justify-content: left;
  }

  #cart .logo img {
    height: 2rem;
  }
}
#forgot .login-container {
  max-width: 28rem;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 0.5rem;
  color: #303972;
}

#forgot .logo {
  height: 3rem;
  margin-bottom: 2.5rem;
  object-fit: contain;
}

#forgot .login-header {
  margin-bottom: 20px;
  text-align: center;
}

#forgot .login-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#forgot .login-header p {
  font-size: 1.25rem;
  font-weight: 400;
}

#forgot .form-group {
  margin-bottom: 40px;
}

#forgot .login-form label {
  color: #555;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  text-align: left;
}

#forgot .login-form input {
  background: #f3f4ff;
  border-radius: 0.5rem 0 0 0.5rem;
  border: none;
  font-size: 1rem;
}

#forgot .input-group-text {
  background: #303972;
  color: #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  border: none;
}

#forgot .login-form a {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  color: #fff !important;
}

#recharge .disabled {
  color: #adb5bd;
  background-color: #e9ecef;
}

#recharge .header {
  border-bottom: 1px solid #303972;
  background: #f3f4ff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#recharge .user-info {
  display: flex;
  justify-content: end;
}

#recharge .user-info-box {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  justify-content: end;
}

#recharge .user-info-box:hover {
  background-color: white;
}

#recharge .header .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

#recharge .header .user-info .dropdown-toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#recharge .student-name {
  color: #303972;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

#recharge .student-class {
  color: #303972;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 500;
}

#recharge .box {
  width: 33.33%;
  display: flex;
}

#recharge .nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 5px;
}

#recharge .logo {
  justify-content: center;
}

#recharge .logo img {
  height: 2.5rem;
}

#recharge .header .user-info {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  justify-content: end;
}

#recharge .header .user-info:hover {
  background-color: white;
}

#recharge .header .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

#recharge .header .user-info .dropdown-toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/*  */

#recharge .canteen-form-container {
  border-radius: 10px;
  background: #fff;
  width: 450px;
}

#recharge .form-title {
  color: #303972;

  font-family: Inter;
  font-size: 20px;
  font-weight: 600;

  padding: 20px;
  text-align: center;
}

#recharge .divider {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background: #303972;
}

#recharge .btn-cancel {
  border-radius: 6.789px;
  border: 1.132px solid #303972;
  color: #303972;
  background: var(--Default-White, #fff);
}
#recharge .btn-pay {
  border-radius: 6.916px;
  border: 1.153px solid #303972;
  background: #303972;
}

/* for smaller screens */
@media (max-width: 768px) {
  #recharge .canteen-form-container {
    width: 90%;
  }
  #recharge .left {
    display: none;
  }

  #recharge .box {
    width: 50%;
  }

  #recharge .logo {
    justify-content: left;
  }

  #recharge .logo img {
    height: 2rem;
  }
}

#home .header {
  border-bottom: 1px solid #303972;
  background: #f3f4ff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#home .box {
  width: 33.33%;
  display: flex;
}

#home .nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 5px;
}

#home .logo {
  justify-content: center;
}

#home .logo img {
  height: 2.5rem;
}

#home .user-info {
  display: flex;
  justify-content: end;
}

#home .user-info-box {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  justify-content: end;
}

#home .user-info-box:hover {
  background-color: white;
}

#home .header .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

#home .header .user-info .dropdown-toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#home .student-name {
  color: #303972;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

#home .disable-a {
  cursor: pointer !important;
  all: unset;
}

#home .student-class {
  color: #303972;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 500;
}

#home .dashboard-container {
  margin-top: 20px;
}

#home .card {
  margin-bottom: 20px;
  background: #fff;
  border: none;
}

#home .card-header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding: 0.4rem;
}

#home .card-title {
  color: #303972;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 800;
}

#home .card-body {
  padding: 0.3rem;
}

#home i {
  margin-right: 5px;
}

#home .color-purple {
  color: #6610f2;
  background: #ebe5fc;
  border: none;
  font-size: 0.9rem;
}

#home .color-purple:hover {
  color: #6610f2;
  background: #ebe5fc;
  box-shadow: 0px 8px 12px 0px rgba(102, 1, 253, 0.3) !important;
}

#home .color-purple:active {
  color: #6610f2 !important;
  background: #ebe5fc !important;
  box-shadow: 0px 2px 12px 0px rgba(102, 1, 253, 0.3) !important;
}

#home .pd .personal-details {
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#home .pd .personal-details img {
  border-radius: 50%;
  margin-right: 1rem;
  width: 100px;
  height: 100px;
}

#home .pd .personal-details .details {
  flex-grow: 1;
}

#home .details p {
  margin: 10px;
}

#home .details .student-name {
  font-size: 1.3rem;
}

#home .details .student-class {
  font-size: 1rem;
}

#home .pd .view-more-btn {
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: #6c5ce7;
  color: white;
  border-radius: 0.5rem;
}

#home .modal-header {
  color: #303972;
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 600;
}

#home .modal-body {
  color: #555;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}

#home .form-control-plaintext {
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
  background-color: #e9ecef;
  padding: 0.5rem 0.75rem;
  color: #adb5bd;
  font-size: 1rem;
  font-weight: 400;
}

#home .attendance-details {
  margin-left: 10%;
}

#home .chart-area {
  height: 150px;
  width: 150px;
}

#home .attended-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.3rem;
}

#home .attended-info .icon {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: #4d44b5;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home .missed .icon {
  background-color: crimson;
}

#home .total .icon {
  background-color: orangered;
}

#home .attended-info .icon i {
  font-size: 1.5rem;
  margin-left: 0.3rem;
}

#home .attended-info .text p {
  margin: 0;
}

#home .attended-info .text .title {
  color: #a098ae;
  font-size: 1rem;
  font-weight: 400;
}

#home .attended-info .text .value {
  color: #303972;
  font-size: 1.5rem;
  font-weight: 600;
}

#home .contact-details {
  margin-left: 10px;
  color: #303972;
}

#home #query {
  background-color: white;
}

#home .sports-details {
  color: #303972;
  font-weight: 500;
}

#home .sports-list {
  background-color: #f3f4ff;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

#home .sports-list .list-group-item {
  border: none;
  color: #303972;
  font-weight: 500;
  padding: 0.5rem;
  background-color: transparent;
}

#home .sports-list .list-group-item input:checked {
  background-color: #303972;
}

#home .calendar-details {
  color: #303972;
  font-weight: 500;
  padding: 0.5rem;
}

#home .calendar-details h5 {
  color: #8a92a6;
  font-size: 1rem;
  font-weight: 500;
}

#home .calendar-details h3 {
  color: #303972;
  font-size: 1.7rem;
  font-weight: 600;
}

#home .calendar-details h4 {
  color: #303972;
  font-size: 1.25rem;
  font-weight: 500;
}

#home .table > :not(caption) > * > * {
  color: #303972;
  background: transparent;
  border: none;
  padding: 0.5rem 0.8rem;
}

#home .table {
  border-radius: 0.5rem;
  background: #f3f4ff;
}

#home .wallet-balance {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#home .wallet-balance .tag {
  border-radius: 0.5rem;
  background-color: #ceecdd;
  color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10%;
  font-size: 1.5rem;
}

#home .wallet-balance .tag i {
  margin-left: 5px;
  font-size: 90%;
}

#home .recharge-wallet {
  margin: 0.5rem;
}

#home .form-check input:checked {
  background-color: #303972;
}

@media (max-width: 768px) {
  #home .left {
    display: none;
  }

  #home .box {
    width: 50%;
  }

  #home .logo {
    justify-content: left;
  }

  #home .logo img {
    height: 2rem;
  }
}

#otp .login-container {
  max-width: 28rem;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 0.5rem;
  color: #303972;
}

#otp .logo {
  height: 3rem;
  margin-bottom: 2.5rem;
  object-fit: contain;
}

#otp .login-header {
  margin-bottom: 20px;
  text-align: center;
}

#otp .login-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#otp .login-header p {
  font-size: 1.25rem;
  font-weight: 400;
}
#otp .login-form label {
  color: #555;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  text-align: left;
}

#otp .login-form input {
  background: #f3f4ff;
  border-radius: 0.5rem 0 0 0.5rem;
  border: none;
  font-size: 1rem;
}

#otp .input-group-text {
  background: #303972;
  color: #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  border: none;
}

#otp .login-form button {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
}

#otp .login-form .forgot-password {
  text-align: left;
  display: block;
  margin-top: 10px;
  color: #1e2772;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration-line: underline;
}

#otp .login-form .or-separator {
  margin: 10px 0;
  text-align: center;
  color: #c2c2c2;
  font-size: 0.875rem;
  font-weight: 400;
}

.login-form .or-separator:before,
#otp .login-form .or-separator:after {
  content: "";
  display: inline-block;
  width: 35%;
  border-bottom: 1px solid #c2c2c2;
  margin: 7px 5%;
}

#login .login-container {
  max-width: 28rem;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 0.5rem;
  color: #303972;
}

#login .logo {
  height: 3rem;
  margin-bottom: 2.5rem;
  object-fit: contain;
}

#login .login-header {
  margin-bottom: 20px;
  text-align: center;
}

#login .login-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#login .login-header p {
  font-size: 1.5rem;
  font-weight: 400;
}

#login .form-group {
  margin-bottom: 20px;
}

#login .login-form label {
  color: #555;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  text-align: left;
}

#login .login-form input[type="email"],
#login .login-form input[type="password"] {
  background: #f3f4ff;
  border-radius: 0.5rem 0 0 0.5rem;
  border: none;
  font-size: 1rem;
}

#login .input-group-text {
  background: #303972;
  color: #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  border: none;
}

#login .login-form a {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
}

#login .login-form .forgot-password {
  text-align: left;
  display: block;
  margin-top: 10px;
  color: #1e2772;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration-line: underline;
}

#login .login-form .or-separator {
  margin: 20px 0;
  text-align: center;
  color: #c2c2c2;
  font-size: 0.875rem;
  font-weight: 400;
}

#login .login-form .or-separator:before,
#login .login-form .or-separator:after {
  content: "";
  display: inline-block;
  width: 35%;
  border-bottom: 1px solid #c2c2c2;
  margin: 7px 5%;
}

#order .header {
  border-bottom: 1px solid #303972;
  background: #f3f4ff;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#order .box {
  width: 33.33%;
  display: flex;
}

#order .nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 5px;
}

#order .logo {
  justify-content: center;
}

#order .logo img {
  height: 2.5rem;
}

#order .user-info {
  display: flex;
  justify-content: end;
}

#order .user-info-box {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  justify-content: end;
}

#order .user-info-box:hover {
  background-color: white;
}

#order .header .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

#order .header .user-info .dropdown-toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

#order .student-name {
  color: #303972;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

#order .student-class {
  color: #303972;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 500;
}

#order .form-snack {
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
}

#order .form-check-label {
  font-weight: 600;
  font-size: 1rem;
}

#order .form-snack-input {
  padding: 5px;
}

#order .footer {
  background-color: #f8f9fa;
  padding: 1rem 1rem;
  border-top: 1px solid #e3e4e8;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

#order .total-amount {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

#order .total-amount i {
  margin-right: 0.5rem;
}

#order .pay-buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}

#order .form-check-label {
  color: #303972;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
}

#order .menu-section {
  margin-top: 20px;
}

#order .card img {
  height: 180px;
  object-fit: contain;
}

#order .card-title {
  font-size: 1.25rem;
  color: #303972;
}

#order .card-text {
  font-size: 1rem;
  color: #303972;
}

#order .price-tag {
  font-size: 1.5rem;
  color: #303972;
  font-weight: bold;
}

#order .add-to-cart-buttons {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

#order .add-to-cart-group .btn {
  width: 100%;
}

#order .has-search .form-control {
  padding-left: 2.375rem;
}

#order .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

/* for smaller screens */
@media (max-width: 768px) {
  #order .left {
    display: none;
  }

  #order .box {
    width: 50%;
  }

  #order .logo {
    justify-content: left;
  }

  #order .logo img {
    height: 2rem;
  }
}
