.table-boss {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  margin-bottom: 100px;
}

.table-holder {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}

.content-table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.table-scroll {
  overflow: auto;
}

.table-scroll::-webkit-scrollbar {
  display: none;
}

th,
td {
  border: 2px solid #282828;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
  text-align: center;
  font-family: "Poppins";
  font-weight: 500;
}

.delete-button {
  cursor: pointer;
}

td {
  font-weight: 500;
  font-family: "Poppins";
  text-transform: capitalize;
  text-align: center;
}

td::-webkit-scrollbar {
  display: none;
}

.btn-hide {
  width: 150px;
  cursor: pointer;
  height: 40px;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
  align-items: center;
  font-family: "Poppins";
  justify-content: center;
  background-color: #272727;
  text-decoration: none;
  transition: all 0.3s;
  outline: none;
  border: none;
}

button:hover {
  transform: scale(0.96);
}

span {
  height: 100%;
  width: 100%;
  cursor: pointer;
  height: 40px;
  padding: 10px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
  align-items: center;
  font-family: "Poppins";
  justify-content: center;
  background-color: #272727;
  text-decoration: none;
  transition: all 0.3s;
  outline: none;
  border: none;
  border-radius: 5px;
}
.body-two {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.confirmation-popup {
  z-index: 10000;
  position: absolute;
  width: 500px;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 20px;
  border-radius: 10px;
  display: none;
}

.confirmation-popup h1 {
  font-family: "Hanken Grotesk";
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.confirmation-popup p {
  font-size: 15px;
  color: #272727;
  text-align: center;
  font-family: "poppins";
  font-weight: 500;
  margin-top: 10px;
}

.popup-button-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.btn-next-class {
  width: 100px;
  cursor: pointer;
  height: 60px;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  display: flex;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.4px;
  align-items: center;
  font-family: "Poppins";
  justify-content: center;
  background-color: #272727;
  text-decoration: none;
  transition: all 0.3s;
  outline: none;
  border: none;
  margin: 0 0 0 40px;
}

.btn-next-class:hover {
  transform: scale(1.1);
}

.class-btn-holder {
  position: relative;
  width: 100%;
  margin-top: 100px;
  padding-right: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#Return {
  text-align: center;
}

#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

#popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 450px;
}

#popup-content h1 {
  font-family: "Hanken Grotesk";
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

#popup-content p {
  font-size: 15px;
  color: #272727;
  text-align: center;
  font-family: "poppins";
  font-weight: 500;
  margin-top: 10px;
}

.due-today {
  background-color: #ff0000;
}
