/* Fire Incidents Styles */
.fire-incidents-container {
  margin-top: 20px;
}

.fire-incidents-table {
  width: 100%;
  border-collapse: collapse;
}

.fire-incidents-table th,
.fire-incidents-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.fire-incidents-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.fire-incidents-table tbody tr {
  cursor: pointer;
  transition: background-color 0.3s;
}

.fire-incidents-table tbody tr:hover {
  background-color: #f5f5f5;
}

/* Modal Styles - Kept for login modal in fires.html */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 5px;
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .fire-incidents-container {
    overflow-x: auto;
  }
}
