/* @import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic); */
/* @import url(https://fonts.googleapis.com/css?family=Open+Sans:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic); */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  font-family: "Open Sans", sans-serif;
}

.cartContainer {
  display: flex;
}

@media (max-width: 1450px) {
  .cartContainer .col-lg-4,
  .col-lg-3 {
    width: 50%;
  }
}

@media (max-width: 675px) {
  .cartContainer .col-lg-4,
  .col-lg-3 {
    width: 100%;
  }
}

.cartItem {
  padding: 0px;
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  margin-bottom: 25px;
  border: 1px solid #dcdef5;
}

/* .itemName {
  color: #676767;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto;
} */

.itemNameWrapper {
  display: flex;
  align-items: center;
}

.itemNameLabel {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.itemName {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #676767;
}

.itemName:hover::before {
  content: attr(title);
  position: absolute;
  background-color: white;
  z-index: 1;
  color: #676767;
  white-space: nowrap;
}

.cartItemImageBox {
  display: flex;
  justify-content: center;
  cursor: help;
  background-color: #c7d2d975;
  border-radius: 10px;
  margin: 10px;
}

.cartItemBox {
  padding: 0px 10px;
}

.cartBorder {
  border: 2px solid;
  margin: 0;
}

.quantityBox {
  display: flex;
  gap: 12px;
  height: 100%;
  align-items: center;
}

.quantityInput {
  background: #c7d2d975;
  border-radius: 10px;
  height: 100%;
  width: 50px;
}

.plusMinusText {
  /* font-size: 25px; */
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  color: #000000;
  cursor: pointer;
}

.cartBtnBox {
  padding: 10px 10px 10px 20px;
}

.cartBtnStyle {
  border-radius: 10px;
  background: #004169;
  width: fit-content;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
  padding: 10px;
}

.cartBtnStyle:hover,
.cartBtnStyle:active,
.cartBtnStyle:focus {
  background-color: #2a3f53;
  color: #ffffff;
}

.cartItemsWrapper {
  position: sticky;
  max-height: 70vh;
  overflow-y: auto;
}

.cartAmountWrapper {
  display: flex;
  padding: 10px;
}

@media (max-width: 1200px) {
  .cartItemsWrapper {
    max-height: 35vh;
  }
  #proceedCartBtn {
    margin: 0 !important;
  }
  .cartAmountWrapper {
    padding: 2px 10px !important;
  }
}

input {
  font-size: 1em;
  background-color: #fff;
  border: 0;
}

[type="number"] {
  margin-bottom: 10px;
}

.cartList {
  padding: 10px;
  border: 1px solid black;
  border-radius: 20px;
  width: 450px;
}

.searchField {
  margin-top: 20px;
}

.autocomplete-container {
  position: relative;
}

.autocomplete-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
}

.autocomplete-option {
  padding: 8px;
  cursor: pointer;
}

.autocomplete-option:hover {
  background-color: #f2f2f2;
}

.studentName {
  /* cursor: pointer; */
  background: #004169;
  color: white;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: center;
}

td.mark {
  background-color: white;
  color: #00cc00;
  padding: 0.2em;
}

td.cross {
  background-color: white;
  color: #ff3333;
  padding: 0.2em;
}

.delete-button {
  color: #f44336;
  background-color: #fff;
  border: none;
  cursor: pointer;
  float: right;
}

.password-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.toggle-confirm-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.cardWrapper {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  height: 100%;
}

@media (max-width: 600px) {
  .cardWrapper {
    padding: 18px !important;
  }
}

/* Styles for desktop view */
.desktop-attendance {
  display: block;
}

/* Styles for mobile/tablet view */
.mobile-attendance {
  display: none;
}

@media (max-width: 768px) {
  /* Styles for screens up to 768px width (tablets and smaller) */
  .desktop-attendance {
    display: none;
  }

  .mobile-attendance {
    display: block;
  }
}

ul.nested-submenu li {
  list-style-type: circle;
  margin-left: 20px;
  font-size: 14px;
}

.custom_checkbox[type="checkbox"] {
  transform: scale(0);
}

.checkbox {
  display: block;
  width: inherit;
  height: inherit;
  border: solid 0px #ffffff;
  border-radius: 6px;
  transition: all 0.375s;
}

.letter {
  font-size: 20px;
  color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  line-height: 20px;
  display: none;
}

.letter-unchecked {
  background-color: #f13333;
}

.letter-checked {
  background-color: #197d19;
}

input[type="checkbox"]:not(:checked) ~ .letter-unchecked {
  display: block;
}

input[type="checkbox"]:checked ~ .letter-checked {
  display: block;
}

.check-symbol {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: red;
}

@media only screen and (max-width: 1000px) {
  #no-table table,
  #no-table thead,
  #no-table tbody,
  #no-table th,
  #no-table td,
  #no-table tr {
    display: block;
  }
  #no-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #no-table tr {
    border: 1px solid #ccc;
    border-bottom: 3px solid #ccc;
  }
  #no-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    white-space: normal;
    text-align: left;
  }
  #no-table td:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 45%;
    padding: 10px;
    white-space: normal;
    text-align: center;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004169;
    color: white;
  }
  #no-table td:before {
    content: attr(data-title);
  }
}

.checkbox-container {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

input[type="checkbox"].switch {
  appearance: none;
  width: 3.5em;
  height: 1.5em;
  background: #ddd;
  border-radius: 3em;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-in-out;
  margin-right: 10px; /* Adjust the spacing between the checkbox and label */
}

input[type="checkbox"].switch:checked {
  background: #2cc72c;
}

input[type="checkbox"].switch:after {
  position: absolute;
  content: "";
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  left: 0;
  top: 0;
  transition: all 0.2s ease-in-out;
}

input[type="checkbox"].switch:checked:after {
  left: calc(100% - 1.5em);
}

/* Reset Button Style */

.resetBtnStyle {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 17px;
  padding: 6px 25px;
  font-weight: 500;
  /* background: #d1d1d1; */
  background-image: linear-gradient(310deg, #ced4da 0%, #ebeff4 100%);
  color: #000;
  /* background: #1f2937;
  color: white; */
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0.6em;
  width: 100%;
  max-width: 200px;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.6em;
  margin-top: -0.25em;
  /* background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.3)
  ); */
}

.label {
  position: relative;
  top: -1px;
}

.resetTransition {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 500ms;
  /* background-color: rgba(16, 185, 129, 0.6); */
  /* background-color: rgb(255 0 0 / 80%); */
  background-image: linear-gradient(
    rgb(255 255 255 / 0%),
    rgb(255 0 0 / 60%),
    rgb(255 0 0 / 0%)
  );
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.resetBtnStyle:hover .resetTransition {
  width: 14em;
  height: 14em;
}
.resetBtnStyle:hover {
  color: #fff;
}

.resetBtnStyle:active {
  transform: scale(0.97);
}

/* Submit Button Style */

.submitBtnStyle {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 17px;
  padding: 6px 25px;
  font-weight: 500;
  /* background: #d1d1d1; */
  background-image: linear-gradient(310deg, #141727 0%, #3a416f 100%);
  color: #fff;
  /* background: #1f2937;
  color: white; */
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0.6em;
  width: 100%;
  max-width: 200px;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.6em;
  margin-top: -0.25em;
  /* background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.3)
  ); */
}

.label {
  position: relative;
  top: -1px;
}

.transition {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 500ms;
  /* background-color: rgba(16, 185, 129, 0.6); */
  /* background-color: rgb(255 0 0 / 80%); */
  background-image: linear-gradient(
    rgb(255 255 255 / 0%),
    rgb(49 255 0 / 60%),
    rgb(255 0 0 / 0%)
  );
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.submitBtnStyle:hover .transition {
  width: 14em;
  height: 14em;
}
.submitBtnStyle:hover {
  color: #fff;
}

.submitBtnStyle:active {
  transform: scale(0.97);
}

.announcementHeader {
  background-color: #003150;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

.announcementTitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0em;
  color: #ffffff;
}

.announcementLabelText {
  font-size: 19px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.02em;
  color: #1e1e1e;
}

.announcementValueText {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  color: #4e4e4e;
}

.dropZone {
  padding: 20px;
  border: 2px dashed grey;
  border-radius: 15px;
  display: grid;
  justify-content: center;
  justify-items: center;
  row-gap: 15px;
}

th.sarvagrahiStickyHeader {
  color: black;
  border: 1px solid #e9ecef;
  background: antiquewhite;
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

th.sarvagrahiHeader {
  color: black;
  border: 1px solid #e9ecef;
  background: beige;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

th.verticalTableHeader {
  text-align: center;
  width: 50px;
  white-space: nowrap;
  transform: rotate(-90deg);
}

td.sarvagrahiContent {
  border: 1px solid #e9ecef;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #322d5f;
}

.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10010;
}

.loader {
  --dim: 3rem;
  width: var(--dim);
  height: var(--dim);
  position: relative;
  animation: spin988 2s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader .circle {
  --dim: 1.2rem;
  width: var(--dim);
  height: var(--dim);
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
}

.loader .circle:nth-child(1) {
  top: 0;
  left: 0;
}

.loader .circle:nth-child(2) {
  top: 0;
  right: 0;
}

.loader .circle:nth-child(3) {
  bottom: 0;
  left: 0;
}

.loader .circle:nth-child(4) {
  bottom: 0;
  right: 0;
}

@keyframes spin988 {
  0% {
    transform: scale(1) rotate(0);
  }

  20%,
  25% {
    transform: scale(1.3) rotate(90deg);
  }

  45%,
  50% {
    transform: scale(1) rotate(180deg);
  }

  70%,
  75% {
    transform: scale(1.3) rotate(270deg);
  }

  95%,
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.welcomeBtnStyle {
  border-radius: 10px;
  font-size: 20px;
  background-color: #004169;
  width: 200px;
  margin-top: 30px;
  font-weight: 500;
  color: #ffffff;
}

.welcomeBtnStyle:hover {
  background-color: #ffffff;
  color: #004169;
  border: 3px solid #004169;
  font-weight: 700;
}

.welcomeBtnStyle:active {
  background-color: #004169;
  color: #ffffff;
}

.welcomeBtnStyle:focus {
  background-color: #004169;
  color: #ffffff;
}

.welcomeBtnStyle:disabled {
  background-color: #16183b;
  color: #939393;
}

.darkBtnStyle {
  border-radius: 10px;
  background: #004169;
  width: 300px;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
}

.darkBtnStyle:hover {
  background-color: #ffffff;
  color: #004169;
  border: 1px solid #004169;
  font-weight: 700;
}

.darkBtnStyle:active {
  background-color: #2a3f53;
  color: #ffffff;
}

.darkBtnStyle:focus {
  background-color: #2a3f53;
  color: #ffffff;
}

.lightBtnStyle {
  border-radius: 10px;
  background: #dddddd;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
}

.lightBtnStyle:hover {
  background-color: #ffffff;
  color: #878787;
  border: 1px solid #878787;
  font-weight: 700;
}

.lightBtnStyle:active {
  background-color: #878787;
  color: #ffffff;
}

.lightBtnStyle:focus {
  background-color: #878787;
  color: #ffffff;
}

.approveBtnStyle {
  border-radius: 10px;
  background: #026a4b;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
}

.approveBtnStyle:hover {
  background-color: #ffffff;
  color: #047855;
  border: 1px solid #047855;
  font-weight: 700;
}

.approveBtnStyle:active {
  background-color: #047855;
  color: #000000;
}

.approveBtnStyle:focus {
  background-color: #047855;
  color: #000000;
}

.rejectBtnStyle {
  border-radius: 10px;
  background: #d92d20;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
}

.rejectBtnStyle:hover {
  background-color: #ffffff;
  color: #e42214;
  border: 1px solid #e42214;
  font-weight: 700;
}

.rejectBtnStyle:active {
  background-color: #e42214;
  color: #000000;
}

.rejectBtnStyle:focus {
  background-color: #e42214;
  color: #000000;
}

.darkTableHeader {
  background-color: #004169 !important;
  color: white !important;
  font-weight: 600 !important;
  text-align: center !important;
}

.selectedTableHeader {
  background-color: rgb(253, 226, 149) !important;
  box-shadow: rgb(253, 226, 149) 0px 0px 10px 0px;
  color: black !important;
  font-weight: 600 !important;
  text-align: center !important;
  cursor: pointer;
}

.welcomeFont {
  font-size: 35px;
}

@media (max-width: 600px) {
  .welcomeFont {
    font-size: 25px;
    /* font-weight: 700;
    color: #ffffff; */
  }
  .welcomeBtnStyle {
    font-size: 20px;
    width: 200px;
  }
}

.header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 25px;
}

.headerFont {
  font-size: 30px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.58px;
}

@media (max-width: 600px) {
  .headerFont {
    font-size: 18px;
  }
  .header {
    padding-left: 0px;
  }
}
@media (max-width: 400px) {
  .headerFont {
    font-size: 18px;
    width: 100%;
    max-width: 200px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.btn-check:checked + .btn,
.btn-check:active + .btn,
.btn:active,
.btn.active,
.btn.show {
  color: #ffffff;
  background-color: #167fbf;
  border-color: 1px solid #4b4b4b;
  font-size: 15px;
  font-weight: 600;
}

/* Registration Dashboard */

.openRegistrationCard {
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background-color: #289104;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
}

.closeRegistrationCard {
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background-color: #bb0000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
}

.registrationDetails {
  color: #222222;
  font-weight: 600;
  font-size: 1.5rem;
}

.dashboardCard {
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
  height: calc(100% - 10px);
  display: grid;
  align-content: center;
  /* font-weight: 700;
  font-size: 1.2rem; */
}

.selectedRegistrationCard {
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background-color: #167fbf;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  height: calc(100% - 10px);
  display: grid;
  align-content: center;
  /* font-weight: 700;
  font-size: 1.2rem; */
}

.registrationCardTitle {
  /* color: #cb0c9f; */
  font-weight: 700;
  font-size: 1.2rem;
  /* white-space: nowrap; */
}

.registrationCardContent {
  color: #222222;
  font-weight: 700;
  font-size: 1.7rem;
  /* white-space: nowrap; */
}

/* .filterCard {
  padding: 10px;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
  min-width: 100px;
}

.selectedFilterCard {
  padding: 10px;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #167fbf;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  min-width: 100px;
}

.filterCardWrapper {
  display: flex;
  gap: 10px;
  padding: 20px 0px;
}

@media (max-width: 768px) {
  .filterCardWrapper {
    flex-wrap: wrap;
  }

  .filterCard {
    flex-basis: 100%;
  }
  .selectedFilterCard {
    flex-basis: 100%;
  }
} */

.filterCardWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0px;
  justify-content: flex-start; /* Align items from start */
}

.filterCard {
  flex: 1 1 auto; /* Flexible width, but not shrink or grow */
  min-width: 100px; /* Minimum width for each card */
  max-width: fit-content;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #222222;
}

.selectedFilterCard {
  flex: 1 1 auto; /* Flexible width, but not shrink or grow */
  min-width: 100px; /* Minimum width for each card */
  max-width: fit-content;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #167fbf;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  cursor: auto !important;
}

@media (max-width: 450px) {
  .filterCard,
  .selectedFilterCard {
    max-width: 100%; /* Set maximum width to 100% for small screens */
  }
}

.filterTitle {
  /* color: #222222; */
  font-weight: 600;
  font-size: 0.9rem;
}

.tableIcon {
  cursor: pointer;
  height: 30px;
}

.largeTableIcon {
  cursor: pointer;
  height: 50px;
  padding-left: 15px;
}

@media (max-width: 500px) {
  .largeTableIcon {
    height: 40px;
  }
}

.smallTableIcon {
  cursor: pointer;
  height: 18px;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  filter: blur(5px);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
  /* overflow-y: auto; */
}

.backdrop,
.popup-blur {
  pointer-events: auto !important;
}

.scrollDiv {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* @media (max-width: 800px) {
  .popup {
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
  }
} */

.clickableTableCell {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: red;
}

.transportWrapper {
  display: flex;
  align-items: center;
  margin-left: 5px;
  display: none;
}

.blurred-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  pointer-events: auto !important;
}

.borderedCard {
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
}

.paymentBody {
  height: 100vh;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.paymentHeader {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.paymentDivider {
  border: 1px solid #ffffff;
  opacity: 1;
  width: 90%;
}

.paymentDetailsBox {
  background: #003150;
  padding: 16px;
  width: 100%;
}

.paymentDetails {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.paymentButton {
  background: #ffffff;
  width: 100%;
  max-width: fit-content;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  border-radius: 10px;
  text-transform: capitalize;
}

.paymentButton:hover {
  background-color: #004169;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 700;
}

.paymentButton:active {
  background-color: #ffffff;
  color: #222222;
}

.paymentButton:focus {
  background-color: #ffffff;
  color: #222222;
}

.failDetail1 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.failDetail2 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.failDetail3 {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 50;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.studentNameWrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.autocomplete-list {
  display: none;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  margin-top: 5px;
  border: 1px solid #d2d6da;

  position: absolute;
  width: fit-content;
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
  z-index: 10;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.autocompleteItem {
  border-bottom: 1px solid #d2d6da;
}

.lastAutocompleteItem {
  border-bottom: none;
}

.autocompleteItemText {
  padding: 10px;
  margin: 0;
  color: #000;
}

.lastAutocompleteItemText {
  padding: 10px;
  margin: 0;
}

.firstAutocompleteItemText {
  padding: 10px;
  margin: 0;
}

.selectedAutocompleteItem {
  background-color: #d2d6da;
}

.selectedAutocompleteItemText {
  color: #000000;
  padding: 10px;
  margin: 0;
}

.search-box {
  display: flex;
}

.clear-icon {
  position: relative;
  top: 10px;
  right: 25px;
  cursor: pointer;
  height: 30px;
  width: 0;
  color: #000;
}

.noDataIcon {
  width: 50%;
  padding: 10px;
  min-width: 150px;
}

.autocompleteItem:hover {
  background-color: #d2d6da;
}

.autocompleteItem:hover .autocompleteItemText {
  color: #000;
}

.lb-1 {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .studentNameWrapper {
    display: block;
  }
}

.hourglassBackground {
  position: relative;
  background-color: #004169;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin: 30px auto;
}

.hourglassContainer {
  position: absolute;
  top: 15px;
  left: 25px;
  width: 50px;
  height: 70px;
  -webkit-animation: hourglassRotate 2s ease-in 0s infinite;
  animation: hourglassRotate 2s ease-in 0s infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hourglassContainer div,
.hourglassContainer div:before,
.hourglassContainer div:after {
  transform-style: preserve-3d;
}

@-webkit-keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

@keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

.hourglassCapTop {
  top: 0;
}

.hourglassCapTop:before {
  top: -25px;
}

.hourglassCapTop:after {
  top: -20px;
}

.hourglassCapBottom {
  bottom: 0;
}

.hourglassCapBottom:before {
  bottom: -25px;
}

.hourglassCapBottom:after {
  bottom: -20px;
}

.hourglassGlassTop {
  transform: rotateX(90deg);
  position: absolute;
  top: -16px;
  left: 3px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #999999;
}

.hourglassGlass {
  perspective: 100px;
  position: absolute;
  top: 32px;
  left: 20px;
  width: 10px;
  height: 6px;
  background-color: #999999;
  opacity: 0.5;
}

.hourglassGlass:before,
.hourglassGlass:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #999999;
  left: -17px;
  width: 44px;
  height: 28px;
}

.hourglassGlass:before {
  top: -27px;
  border-radius: 0 0 25px 25px;
}

.hourglassGlass:after {
  bottom: -27px;
  border-radius: 25px 25px 0 0;
}

.hourglassCurves:before,
.hourglassCurves:after {
  content: "";
  display: block;
  position: absolute;
  top: 32px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #333;
  animation: hideCurves 2s ease-in 0s infinite;
}

.hourglassCurves:before {
  left: 15px;
}

.hourglassCurves:after {
  left: 29px;
}

@-webkit-keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.hourglassSandStream:before {
  content: "";
  display: block;
  position: absolute;
  left: 24px;
  width: 3px;
  background-color: white;
  -webkit-animation: sandStream1 2s ease-in 0s infinite;
  animation: sandStream1 2s ease-in 0s infinite;
}

.hourglassSandStream:after {
  content: "";
  display: block;
  position: absolute;
  top: 36px;
  left: 19px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  animation: sandStream2 2s ease-in 0s infinite;
}

@-webkit-keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@-webkit-keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hourglassSand:before,
.hourglassSand:after {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  background-color: white;
  perspective: 500px;
}

.hourglassSand:before {
  top: 8px;
  width: 39px;
  border-radius: 3px 3px 30px 30px;
  animation: sandFillup 2s ease-in 0s infinite;
}

.hourglassSand:after {
  border-radius: 30px 30px 3px 3px;
  animation: sandDeplete 2s ease-in 0s infinite;
}

@media (max-width: 320px) {
  .filterCard {
    padding: 10px;
  }
}

@-webkit-keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@-webkit-keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}

@keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: auto auto;
  }
}

.selectedCustomCheckbox {
  padding: 10px;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #167fbf;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  min-width: 100px;
  cursor: pointer;
}

.checkboxLabel {
  padding: 5px 20px;
  line-height: 190%;
  outline-style: none;
  transition: all 0.6s;
  font-size: 17px;
  font-weight: 500;
  color: #222222;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  border: 1px solid #dcdef5;
  text-align: center;
  /* margin: 0px; */
  min-width: 120px;
}

.customCheckbox div {
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customCheckbox input[type="checkbox"],
.customCheckbox input[type="radio"] {
  display: none;
}

.customCheckbox label {
  cursor: pointer;
}

.customCheckbox input[type="checkbox"]:checked + label {
  background: rgba(0, 128, 128);
  color: #ffffff;
}

/* General Styles */

* {
  box-sizing: border-box;
}

:root {
  --clr-white: rgb(255, 255, 255);
  --clr-black: rgb(0, 0, 0);
  --clr-light: rgb(245, 248, 255);
  --clr-light-gray: rgb(196, 195, 196);
  --clr-blue: #004169;
  --clr-light-blue: #004169;
}

.upload-area-wrapper {
  /* margin: 0;
  padding: 0; */
  /* background-color: var(--clr-light); */
  color: var(--clr-black);
  /* font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; */
}

/* End General Styles */

/* Upload Area */
.upload-area {
  width: 100%;
  /* max-width: 25rem; */
  background-color: var(--clr-white);
  box-shadow: 0 10px 40px #00416945;
  border: 2px solid var(--clr-light-blue);
  border-radius: 24px;
  padding: 2rem 1.875rem 2rem 1.875rem;
  margin: 0;
  text-align: center;
}

.upload-area--open {
  /* Slid Down Animation */
  animation: slidDown 500ms ease-in-out;
}

@keyframes slidDown {
  from {
    height: 24.125rem; /* 450px */
  }

  to {
    height: 30.625rem; /* 560px */
  }
}

/* Header */
.upload-area__header {
}

.upload-area__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
  font-size: 0.9375rem;
  color: var(--clr-light-gray);
  margin-top: 0;
}

.upload-area__tooltip {
  position: relative;
  color: var(--clr-light-blue);
  cursor: pointer;
  transition: color 300ms ease-in-out;
}

.upload-area__tooltip:hover {
  color: var(--clr-blue);
}

.upload-area__tooltip-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -125%);
  min-width: max-content;
  background-color: var(--clr-white);
  color: var(--clr-blue);
  border: 1px solid var(--clr-light-blue);
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: none 300ms ease-in-out;
  transition-property: opacity, visibility;
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
  opacity: 1;
  visibility: visible;
}

/* Drop Zoon */
.upload-area__drop-zoon {
  position: relative;
  height: 11.25rem; /* 180px */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed var(--clr-light-blue);
  border-radius: 15px;
  margin-top: 2.1875rem;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon:hover {
  border-color: var(--clr-blue);
}

.drop-zoon__icon {
  display: flex;
  font-size: 3.75rem;
  color: var(--clr-blue);
  transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
  font-size: 0.9375rem;
  color: var(--clr-light-gray);
  margin: 0;
  margin-top: 0.625rem;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
  opacity: 0.7;
}

.drop-zoon__loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: var(--clr-light-blue);
  z-index: 10;
}

.drop-zoon__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3125rem;
  border-radius: 10px;
  display: none;
  z-index: 1000;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__preview-image {
  opacity: 0.8;
}

.drop-zoon__file-input {
  display: none;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
  border-color: var(--clr-blue);
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
  opacity: 0.7;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--Uploaded {
}

.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
  display: none;
}

/* File Details Area */
.upload-area__file-details {
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  transition: none 500ms ease-in-out;
  transition-property: opacity, visibility;
  transition-delay: 500ms;
}

/* (duploaded-file--open) Modifier Class */
.file-details--open {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.file-details__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-light-gray);
}

/* Uploaded File */
.uploaded-file {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  transition: none 500ms ease-in-out;
  transition-property: visibility, opacity;
}

/* (duploaded-file--open) Modifier Class */
.uploaded-file--open {
  visibility: visible;
  opacity: 1;
}

.uploaded-file__icon-container {
  position: relative;
  margin-right: 0.3125rem;
}

.uploaded-file__icon {
  font-size: 3.4375rem;
  color: var(--clr-blue);
}

.uploaded-file__icon-text {
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-white);
}

.uploaded-file__info {
  position: relative;
  top: -0.3125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
  content: "";
  position: absolute;
  bottom: -0.9375rem;
  width: 0;
  height: 0.5rem;
  background-color: #ebf2ff;
  border-radius: 0.625rem;
}

.uploaded-file__info::before {
  width: 100%;
}

.uploaded-file__info::after {
  width: 100%;
  background-color: var(--clr-blue);
}

/* Progress Animation */
.uploaded-file__info--active::after {
  animation: progressMove 800ms ease-in-out;
  animation-delay: 300ms;
}

@keyframes progressMove {
  from {
    width: 0%;
    background-color: transparent;
  }

  to {
    width: 100%;
    background-color: var(--clr-blue);
  }
}

.uploaded-file__name {
  width: 100%;
  max-width: 16.25rem; /* 100px */
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uploaded-file__counter {
  font-size: 1rem;
  color: var(--clr-light-gray);
}

.upload_button_box {
  display: none;
}

.uploadBtnStyle {
  border-radius: 10px;
  background: #2e73ec;
  width: 300px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}

.uploadBtnStyle:hover {
  background-color: #ffffff;
  color: #2e73ec;
  border: 1px solid #2e73ec;
  font-weight: 700;
}

.uploadBtnStyle:active {
  background-color: #5691f6;
  color: #ffffff;
}

.uploadBtnStyle:focus {
  background-color: #5691f6;
  color: #ffffff;
}

.customLabelText {
  font-size: 18px;
  color: black;
}

.customValueText {
  font-size: 18px;
  color: #84888e;
  font-weight: 500;
}

.itemsBox {
  padding: 15px 20px;
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px;
  margin-bottom: 25px;
  border: 1px solid #dcdef5;
}

.dashboardHeaderText {
  font-size: 22px;
  color: #1e1e1e;
  font-weight: 700;
}

.viewAllText {
  font-size: 17px;
  color: #1e1e1e;
  font-weight: 400;
  cursor: pointer;
}

.firstValueText {
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 400;
  cursor: pointer;
}

.secondValueText {
  font-size: 16px;
  color: #939393;
  font-weight: 400;
  cursor: pointer;
}

.updateCredentialsHeader {
  text-align: center;
  padding-bottom: 16px;
  font-size: 30px;
  color: #1e1e1e;
  font-weight: 700;
}

.textFieldLabel {
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 600;
}

.optionalSubjectTableCell {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 600px) {
  .updateCredentialsHeader {
    font-size: 20px;
  }
  .lb-2 {
    font-size: 16px;
  }
  .lb-1 {
    font-size: 15px;
  }
  .optionalSubjectTableCell {
    display: grid;
    justify-content: start;
  }
  .textFieldLabel {
    font-size: 16px;
  }
}

.sectionHeading {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  padding-left: 10px;
  position: relative;
  top: 10px;
}

.subjectHeading {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  display: list-item;
  margin-left: 30px;
  padding-bottom: 10px;
  cursor: pointer;
}

.subjectHeading:hover {
  font-weight: 600;
}

.centerItemFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.documentWrapper {
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  max-width: calc(100% - 100px);
}

.documentTypeName {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
}

.validationText {
  font-size: 15px;
  font-weight: 400;
  color: #777777;
}

.imageWrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  height: 100%;
}

@media (max-width: 786px) {
  .imageWrapper {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .documentWrapper {
    max-width: 100%;
  }
}

.jcrop-area {
  /* border-radius: 50%; */
  background: none !important;
  border: 2px dotted black !important;
}

.studentDropdown {
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  max-width: 570px;
}

.profileHeader {
  border-bottom: 2px dotted #00416933;
  width: 100%;
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 5px;
  font-size: 28px;
  color: #222222;
  font-weight: 600;
}

.studentProfileBorder {
  border: 2px dotted #00416933;
  margin: 0;
  width: 100%;
  opacity: 1;
}

/* Best Alumni */

.alumni {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.alumnus {
  margin: 10px;
  text-align: center;
  color: white;
  position: relative;
}

.alumnus-container {
  position: relative;
  overflow: hidden;
}

.alumnus-container img {
  width: 175px;
  height: 175px;
  object-fit: initial;
  border: 3px solid #004169;
  border-radius: 5px;
}

.alumnus-info {
  position: relative;
  bottom: 40px;
  left: 0;
  width: 160px;
  background: #004169;
  padding: 10px;
  border-radius: 6px;
}

.alumnus-info p {
  margin: 0; /* Remove default margin for p elements */
}
.schoolBackImage {
  position: relative;
  display: flex;
  width: 100vw;
  height: 100vh;
  /* overflow-y: auto; */
  justify-content: center;
  background-image: url("/static/assets/img/schoolImage.png");
  background-size: cover;
  background-position: center;
  bottom: 0;

  &::after {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffffcc;
    width: 100%;
    height: 100%;
  }
}
.simpleFont {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.boldFont {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.studentImageWrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.imageColumn {
  display: inline-block;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .imageColumn {
    width: calc(100% / 2);
  }
}
@media (min-width: 900px) {
  .imageColumn {
    width: calc(100% / 3);
  }
}
@media (min-width: 1350px) {
  .imageColumn {
    width: calc(100% / 5);
  }
}

#schoolImageHeader {
  text-align: center;
  width: 95%;
  border-bottom: 3px solid #004169;
  padding: 20px;
}

#schoolImageHeader img {
  width: 120px;
  height: auto;
}

.alumniHeaderText {
  text-align: center;
  color: #004169;
  padding-top: 20px;
}

.leaveCard {
  padding: 7px 15px;
  border-radius: 4px;
  width: fit-content;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px;
  border: 1px solid #dcdef5;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

.hostel {
  width: 200px;
  height: 300px;
  background-color: #fff;
  margin: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  float: left;
  position: relative;
}

.floor {
  width: 100%;
  height: 25%;
  background-color: #f0f0f0;
  border-top: 1px solid #ccc;
}

.room {
  width: 20px;
  height: 20px;
  background-color: #87cefa;
  position: absolute;
  cursor: pointer;
}

.room:hover {
  background-color: #4682b4;
}

.requiredFont {
  color: red;
  font-size: 14px;
}
