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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  padding: 2rem;
}

main {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.contact h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  border-left: 4px solid #6c757d;
  background-color: #e9ecef;
}

.status strong {
  color: #495057;
}

.status.storage {
  background-color: #fff3cd;
  border-left-color: #ffc107;
}

.status.storage strong {
  color: #856404;
}

.status.deployed {
  background-color: #d4edda;
  border-left-color: #28a745;
}

.status.deployed strong {
  color: #155724;
}

.status a {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
}
