body {
  font-family: Arial, sans-serif;
  background-color: #e0f7fa;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #0288d1;
  color: #ffffff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.icon {
  width: 24px;
  height: 24px;
  margin: 0 5px;
}

.arrow {
  font-size: 1.2em;
  font-weight: bold;
}

button {
  background-color: #0288d1;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #0277bd;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 20px;
}

.container {
  text-align: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

#status {
  margin-top: 15px;
  font-size: 0.9em;
  color: #333;
}

.agreement ul {
  text-align: left;
  padding-left: 20px;
}

footer {
  text-align: center;
  background-color: #0288d1;
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.9em;
}
