.page-content {
  background: linear-gradient(to bottom, rgb(0 0 0 / 51%), #1b1a1ae6), url(../images/11.JPG) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.background {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
}

.page-content {
  display: flex;
  width: 97%;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}

.user-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.page-content a {
  text-decoration: none;
}

.header-logo {
  display: flex;
  position: absolute;
  top: 40px;
  right: 40px;
}

.user-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-name {
    color: #ece8e8;
      margin-top: 8px;
      font-size: 25px;
      font-weight: 600;
}
.user-name1 {
  color: #ece8e8;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
}
.user-account-name {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 400;
}

.location-info {
  margin-top: 40px;
}

#time-in-current-location {
  color: #dddada;
  max-width: 85%;
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
#available{
      color: #dddada;
}

.current-location {
  display: flex;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
}

#location-name {
      color: #dddada;
  font-weight: 700;
  margin-left: 4px;
}

.user-status {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.user-status::before {
  display: none;
  content: "";
  position: absolute;
  background-image: url("../images/status.8edff2529970.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 10px;
  left: -15px;
}

.user-status.available::before {
  display: block;
}

.separator {
  background-image: url("../images/separator.b1b4c96dae81.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 2px;
  height: 19px;
}

.respond-time {
  color: #dddada;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

.clock {
  content: "";
  background-image: url("../images/clock.78552bade6d7.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.send-button {
display: flex;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  max-width: 330px;
  width: 90%;
  height: 50px;
  border: none;
  border-radius: 8px;
  padding: 0px 0px 0px 0px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 15px;
  background-color: #24A1DE;
}

.btn-text {
  font-weight: 600;
}

.of-icon {
  margin-right: 10px;
}

.countdown-block {
  margin-top: 16px;
}

.discount {
  color: #ff0000;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

@media screen and (max-width: 400px) {
  #time-in-current-location {
    width: 100%;
    color: #dddada;
    max-width: 330px;
    font-size: 14px;
  }
  .send-button {
    max-width: 270px;
  }
  .header-logo {
    top: 16px;
    right: 16px;
  }
  .user-info {
    margin-top: 16px;
  }
}


