@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap");
* {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
}

.nav-item .nav-link {
  font-weight: 700;
}

.nav-profile-pic {
  border-radius: 50%;
  width: 30px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

th {
  font-weight: 700;
}

table.table td {
  vertical-align: middle !important;
}

.editable {
  text-align: center;
  border: none;
  outline: 0 !important;
  appearance: none;
  display: block;
  width: 100%;
  resize: none;
  text-transform: uppercase;
}

.edit-form .form-control {
  text-transform: uppercase;
}

select.editable {
  color: #000;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  display: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

footer {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
}

h1,
.h1 {
  font-size: 2rem !important;
}

.top-bar {
  position: relative;
  padding: 0.5rem;
}

#menuBar {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  width: 40px;
  cursor: pointer;
  outline: 0 !important;
}

@media (max-width: 576px) {
  #menuBar {
    position: static;
    transform: translateY(0%);
    width: 50px;
    margin: auto;
  }
}

#menuBar span {
  display: block;
  width: 100%;
  background-color: #fff;
  height: 2px;
  margin-bottom: 4px;
  border-radius: 1px;
}

#menuBar:hover span {
  margin-bottom: 2px;
}

.top-bar {
  background-color: #043275;
  color: #fff;
}

.top-bar > div:nth-of-type(1) {
  font-weight: 700;
  font-size: 22px;
}

.top-bar > div:nth-of-type(2) {
  font-weight: 700;
  font-size: 18px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #f8f9fa;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.sidenav a img {
  width: 30px;
}

.sidenav a:hover {
  color: #043275;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.dashboard-card {
  border-color: #043275;
  height: 100%;
  flex-direction: row;
  align-items: center;
  padding: 10px;
}

.dashboard-card:hover {
  text-decoration: none;
  border-color: #007bff;
}

.dashboard-card .icon {
  width: 60px;
  text-align: center;
}

.dashboard-card .label,
.dashboard-card .value {
  color: #000;
  font-weight: 700;
  padding: 0 0 0 2rem;
  font-size: 22px;
  text-transform: uppercase;
}

.dashboard-card:hover .label,
.dashboard-card:hover .value {
  color: #007bff;
}

.dashboard-card .value {
  font-size: 30px;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: #090909 !important;
  border-color: #040404 !important;
  box-shadow: 0 0 0 transparent !important;
}

.table-responsive .card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  border-radius: 0 !important;
}

.ck-editor__editable {
  min-height: 600px !important;
}

.breadcrumb-item {
  font-weight: bold;
  text-transform: uppercase;
}

.breadcrumb-item a {
  color: #043275;
  font-weight: bold;
}

a.card {
  color: #043275;
}

a.card:hover {
  text-decoration: none;
}

a.card:hover .card-body {
  background: #043275;
  color: #fff;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.student-checkbox {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.student-checkbox-label {
  position: relative;
  cursor: pointer;
}

.student-checkbox-label:before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid #043275;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.student-checkbox:checked + .student-checkbox-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #043275;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
