.dashTab {
  font-size: 24px;
  color: #7F0B0E;
  margin: 10px 10px 0 0;
  padding: 10px;
  width: 125px;
  text-align: center;
  border: #7F0B0E solid 1px;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  float: left;
  /* display: none; */
}

.dashTabSelected {
  color: white;
  background-color: #7F0B0E;
}

.dashContent {
  border: #7F0B0E solid 1px;
  min-height: 800px;
  width: 100%;
  margin-bottom: 20px;
}

.Qfilter {
  cursor: pointer;
}




.itemCellLg,
.itemCellMd,
.itemCellSm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: x-large;
}

.itemCellLg {
  min-width: 350px;
}

.itemCellSm {
  min-width: 50px;
  margin: 0px 30px;
}

.itemCellMd {
  min-width: 300px;
}

.itemsContainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 5px 0px;
}

.blurBackground {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: 1001;
}

.modalCont {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}

.modal {
  width: 600px;
  margin: 0 auto;
}

.closeBtn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.notif {
  display: none;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  background-color: red;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  color: white;
}