@font-face {
  font-family: "SF Pro Text";
  src: url(/SFProText-Regular.ttf);
}

body {
  margin: 0;
  height: 100%;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

header {
  background-color: #7F569F;
  color: white;
  padding: 20px;
}

h1 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.button-group {
  display: flex;
  flex-direction: column;
  color: white;
}

.btn {
  cursor: pointer;

  margin: 8px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;

  width: 272px;
  height: 56px;

  border-radius: 100px;

  border-style: initial;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
}

.btn-primary {
  background: #7F569F;
}

.btn-close {
  background: #FFFFFF;
  color: #000000;
}

.open-app {
  display: none;
  flex-direction: column;
  padding: 15px;
  width: 405px;
  height: 300px;

  position: fixed;
  bottom: 0;
  left: 0;

  background: rgba(44, 59, 114, 0.74);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
}

#open-app {
  display: none;
}

#open-app.show {
  display: flex;
}

.open-app p {
  width: 272px;
  height: 34px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
}

.body-title {
  margin: 0 0 24px;
}

.body-footer {
  margin-top: 24px;
}

.alert {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 20px;
  color: white;
}

.alert.danger {
  background-color: #f44336;
}

.alert.info {
  background-color: #2196F3;
}

.alert.warning {
  background-color: #ff9800;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.timer {
  position: absolute;
  width: 208px;
  height: 85px;
  display: none;
  align-items: center;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 20px 10px 10px;
  margin: 10px 80px;
}


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


.icon-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timer-icon .fa-clock {
  position: absolute;
  font-size: 28px;
  color: #625896;
  z-index: 2;
}

.progress-ring {
  transform: rotate(-90deg);
}


.timer-text {
  color: #7E808E;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.timer-number {
  color: black;
  font-size: 26px;
  font-weight: bold;
}
#time-left{
  white-space: nowrap;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.notification-banner {
  display: none;
  background-color: #9A73E6;
  padding: 20px;
  border-radius: 25px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 600px;
  box-sizing: border-box;
  z-index: 1000;
}

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

.clock-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
}

.banner-text h1 {
  font-size: 24px;
  margin-bottom: 0.5em;
}

.banner-text p {
  margin: 0;

}

.banner-button {
  position: absolute;
  left: 30%;
  bottom: -50px;
}

.details-button {
  text-decoration: none;
  background-color: #6C48AB;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.details-button:hover {
  background-color: #5D3999;
}
