body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #0f172a;
  color: #f1f5f9;
}

/* ================= HEADERS ================= */

h2 {
  margin-top: 25px;
  padding: 10px;
  background: #1e293b;
  border-radius: 6px;
}

/* ================= TABLES ================= */

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  background: #1e293b;
}

th,
td {
  border: 1px solid #334155;
  padding: 8px;
}

th {
  background: #1e40af;
  color: white;
}

/* ================= NAVBAR ================= */

.navbar {
  height: 60px;
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 30px;
  width: auto;
}

.app-name {
  color: white;
  margin-left: 10px;
  font-weight: 600;
}

/* ================= INPUTS ================= */

input,
select {
  width: 250px;
  padding: 10px;
  margin: 10px 0;
  background: #020617;
  border: 1px solid #334155;
  color: white;
  border-radius: 5px;
}

/* ================= BUTTONS ================= */

button {
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
}

button:hover {
  background: #2563eb;
}

button.active {
  background: #28a745;
}

button.completed {
  background: #6c757d;
}

button.danger {
  background: #dc3545;
}

/* ================= MAP ================= */

#map {
  height: 700px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* ================= STATUS TAGS ================= */

.status-active {
  background: green;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.status-completed {
  background: gray;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.status-maintenance {
  background: orange;
  color: black;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}
.page-container {
  max-width: 900px;
  margin: 120px auto;
  padding: 40px;

  background: rgba(15, 23, 42, 0.75);

  border-radius: 20px;

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);
}

.page-container h1 {
  margin-bottom: 30px;
}

.page-container section {
  margin-bottom: 40px;
}

.page-container h2 {
  color: #38bdf8;
  margin-bottom: 10px;
}