body {
  width: 100%;
  font-family: "Inter", sans-serif;
  background-color: #f6f6f6;
  margin: 0px 0;
  padding: 0;
  padding-top: 0px;
  padding-bottom: 60px;
  align-self: center;
  color: #25252dcc;
}

h1 {
  text-align: center;
  font-size: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  word-wrap: break-word;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #25252dcc;
  margin: 0 0 16px 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  /* background: #f6f6f6; */
  background-color: #003afe;
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.banner {
  width: 100%;
  height: 80px;
  /* position: fixed; */
  top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 999;
  padding: 16px 0;
  transition: background-color 0.4s ease;
}

.banner.green {
  background-color: #00c647;
  color: white;
}

.banner.yellow {
  background-color: #c376ff;
  color: #25252d;
}

.banner.red {
  background-color: #f7941d;
  color: #25252d;
}



.grid-container {
  height: calc(100vh - 120px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  scroll-behavior: smooth;
  padding-bottom: 60px;
  margin: top 100px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  justify-content: center;
  align-items: start;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.box-style {
  padding: 16px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-card {
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.green-bg {
  color: #00c647;
}

.red-bg {
  color: #f7941d;
}

.yellow-bg {
  color: #c376ff;
}

.information-card {
  padding: 32px;
  margin: 32px auto 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  border-radius: 8px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* .timestamp-container {
    text-align: right;
    padding: 20px;
    color: #00C647;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

} */

@media (max-width: 768px) {
  /* .timestamp-container {
    position: static;
    text-align: right;
    padding: 20px;
  } */

  body {
    padding-bottom: 0;
  }

  .grid {
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  .information-card {
    margin-left: 16px;
    margin-right: 16px;
  }
}
