body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.4;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: none;
}

.logo {
  width: 70%;
}

a {
  color: #0366d6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .logo-container {
    max-width: 250px;
  }
}

.linker {
  grid-template-rows: repeat(1, minmax(0, 1fr));
  display: grid;
}

.intro {
  font-size: small;
}

html {
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

body {
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
}

/* Container for the email interface */
.container {
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 90%;
  text-align: center;
}

/* Buttons */
button {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #0366d6;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 102, 214, 0.3);
}

button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 214, 0.4);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 102, 214, 0.2);
}

/* Email display */
#email {
  font-weight: 700;
  margin: 1rem 0;
  color: #1f2a37;
}

/* Inbox box */
#inbox {
  text-align: left;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 12px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

/* Empty inbox message */
.empty {
  color: #777;
  font-style: italic;
}

/* Individual messages */
.message {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.message:last-child {
  border-bottom: none;
}