* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Geist', sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 520px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #1a1a1a;
}

.name {
  font-weight: 500;
  font-size: 14px;
  cursor: default;
}

.role {
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  cursor: default;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

ul li:last-child a {
  border-bottom: none;
}

ul li a:hover {
  color: #737373;
}

ul li a:hover i {
  color: #737373;
}

ul li a i {
  font-size: 18px;
  color: #737373;
  transition: color 0.2s;
}

ul li a:hover i {
  color: #e5e5e5;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
}

.email {
  font-size: 14px;
  color: #737373;
  text-decoration: none;
  transition: color 0.2s;
}

.email:hover {
  color: #e5e5e5;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.status-text {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: #737373;
}

.status.unavailable .dot {
  background: #737373;
}

@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  footer {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
