.slptmodal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: 0.26s;
  visibility: hidden;
}
.slptmodal-container.slptactive {
  opacity: 1;
  visibility: visible;
}
.slptmodal-content {
  height: 30%;
  max-height: 400px;
  min-height: 300px;
  width: 50%;
  max-width: 600px;
  min-width: 300px;
  margin: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slptmodal-innercontent {
  display: block;
  width: 100%;
  padding: 20px;
}

.slptmodal-title {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
}

.slptmodal-countdown {
  font-family: Arial, Helvetica, sans-serif;
  color: red;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 12pt;
  font-weight: normal;
}

.slptmodal-text {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 12pt;
  font-weight: normal;
}

p.slptmodal-button {
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

button.slptmodal-button {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #006fCF; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.slptmodal-logout {
  font-family: Arial, Helvetica, sans-serif;
  color: #006fCF;
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 12pt;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
}