
/* GrootMail Theme — Starlord Edition 🍃 */

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #0e1512;
  color: #e6edf3;
  background-image: radial-gradient(ellipse at top, #1e2a24 0%, #0e1512 100%);
  background-attachment: fixed;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f2018;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #6df89b;
}

.logo-word {
  font-weight: 600;
}

.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid #42d17c;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  color: #aaf9cc;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  margin-bottom: 1.5rem;
}

.btn {
  background: #42d17c;
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: 0.3rem 0.3rem;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  background: #5bf8a1;
}

.btn.secondary {
  background: #222e28;
  color: #aaf9cc;
}

input,
textarea,
select {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  color: #e6edf3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  width: 100%;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #aab8b0;
}

label {
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 3rem;
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

th {
  color: #aaf9cc;
  background-color: #1e2b24;
}

tr:hover {
  background-color: rgba(255,255,255,0.04);
}
