@import url("https://fonts.googleapis.com/css2?family=Inter&family=Saira+Condensed:wght@500&display=swap");

body {
  background-color: #111;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 2rem;
}

.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

h1 {
  color: #e60000;
  margin-bottom: 1rem;
}

.status {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.status.open {
  color: #074907;
}

.status.closed {
  color: #ad0606;
}

.emergency {
  margin-top: 1rem;
  font-weight: bold;
  color: #ffa500;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1a1a1a;
  min-width: 300px;
}

th, td {
  padding: 1rem;
  border-bottom: 1px solid #333;
  text-align: left;
}

th {
  background-color: #e60000;
  color: white;
}

tr.open {
  background-color: #222;
  color: #268d26;
}

tr.closed {
  background-color: #222;
  color: #ff0000;
}

