@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");



.MuiOutlinedInput-root.Mui-focused {
  background-color: rgba(196, 236, 250, 0.415);
}

.MuiOutlinedInput-root {
  margin-bottom: 15px;
}

.MuiFormLabel-root {
  color: 'blue';
}

.MuiTableHead-root {
  background-color: rgba(61, 239, 218, 0.342);
}

.MuiTableHead-root th {
  text-transform: uppercase;
  font-weight: bold !important;
}

.MuiDivider-root {
  background-color: rgb(0, 0, 0);
}

.MuiCheckbox-root {
  color: rgb(252, 1, 1) !important;
}


.MuiTableCell-root {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 800px;
  height: 10px !important;
}

@media (max-width: 767px) {
  .container {
    margin-top: 50px !important;
    margin-left: inherit !important;
    margin-right: inherit !important;
    max-width: 100% !important;
  }

  .space-between {
    display: inherit !important;
    justify-content: inherit !important;
    gap: inherit !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    margin-top: 50px !important;
    margin-left: inherit !important;
    margin-right: inherit !important;
    max-width: 100% !important;
  }
}

.page-not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  margin: 0;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.no-data {
  display: flex;
  color: red;
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
}

.space-between {
  display: flex;
  justify-content: space-between;
  gap: 2px;
}

.space-evenly {
  display: flex;
  justify-content: space-evenly;
}

.center {
  display: flex;
  justify-content: center;
}

.align-center {
  display: flex;
  align-items: center;
  align-content: center;
}

.inline-block {
  display: inline-block;
}

.logo {
  height: 2rem;
  max-height: 2rem;
  width: 5rem;
  max-width: 5rem;
}

.navigate-button {
  margin-left: 2%;
  width: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  margin-top: 50px;
  margin-left: 245px;
  margin-right: 5px;
  max-width: 83%;
  overflow: auto;
  scrollbar-width: none;

  ::-webkit-scrollbar {
    display: none;
  }
}

.header-container {
  display: flex;
  position: fixed;
  width: 100%;
  height: 50px;
  background-color: #6ac8f4;
  border-bottom: 1px solid #eae9e9;
  padding: 1rem;
  padding-right: 20px;
  padding-left: 15px;
  top: 0;
  max-height: 50px !important;
  justify-content: space-between;
  z-index: 999;
  align-items: center;
  align-content: center;
}

.sidebar {
  background-color: #444150;
  color: #fff !important;
  border-right: 1px solid #F1F0F0;
  width: 245px;
  color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  margin-top: 50px;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar.open {
  left: 0;
}

.logo-container {
  height: 40px;
  width: 100%;
  background-color: #25f4ce;
}

.sidebar-item {
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;

  &.sub-item {
    margin-left: 30px !important;
  }

  &:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  &.active {
    background-color: #fff;
    color: #444150;
    border-radius: 10px;
  }
}

.sidebar-icon {
  margin-right: 10px !important;
  font-size: 20px;
}

.avatar {
  height: 100px;
  width: 100px;
  margin: 2px;
  padding-right: 10px;
}