/* styles.css */

/* Sidebar Styling */
.sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  transition: all 0.3s;
}

.main-content {
  margin-left: 250px;
  transition: all 0.3s;
}

@media (max-width: 992px) {
  .sidebar {
      margin-left: -250px;
  }
  .main-content {
      margin-left: 0;
  }
}

/* Toggle Sidebar */
#sidebarToggle {
  display: none;
}

@media (max-width: 992px) {
  #sidebarToggle {
      display: inline-block;
  }
}

/* Status Card Colors */
body {
  transition: background-color 0.3s;
}

.card.bg-secondary {
  background-color: #6c757d !important;
}

.card.bg-danger {
  background-color: #dc3545 !important;
}

.card.bg-success {
  background-color: #198754 !important;
}

/* Map Styling */
.map {
  border-radius: 5px;
}
