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

/* ---------- Hele siden ---------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1a1d24;
  color: #e6e8eb;
  line-height: 1.6;
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* ---------- Sentrer alt innhold ---------- */
header, main, footer {
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  color: #4cb4ff;
  margin-bottom: 0.5rem;
}

header p {
  color: #9aa3b2;
}

/* ---------- Seksjoner ---------- */
section {
  background: #232730;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

section h2 {
  color: #4cb4ff;
  margin-bottom: 1rem;
  border-bottom: 1px solid #2a2f3a;
  padding-bottom: 0.5rem;
}

/* ---------- Skjema ---------- */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

label {
  font-weight: 500;
  color: #c0c6d0;
}

input, textarea {
  background: #1a1d24;
  border: 1px solid #2a2f3a;
  border-radius: 8px;
  padding: 0.75rem;
  color: #e6e8eb;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #4cb4ff;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  background: linear-gradient(135deg, #4cb4ff, #2e90d6);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: transform 0.15s ease;
}

button:hover {
  transform: translateY(-2px);
}

/* ---------- Liste av rapporter ---------- */
#liste {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rapport {
  background: #1a1d24;
  border-left: 4px solid #4cb4ff;
  border-radius: 8px;
  padding: 1rem;
}

.rapport h3 {
  color: #4cb4ff;
  margin-bottom: 0.25rem;
}

.rapport p {
  color: #c0c6d0;
  margin: 0.25rem 0;
}

.rapport small {
  color: #9aa3b2;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.5rem;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  color: #9aa3b2;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* ---------- Mobil ---------- */
@media (max-width: 500px) {
  body { padding: 1rem 0.5rem; }
  section { padding: 1rem; }
}