body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f5f5f5;
}
.container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}
h1 {
  color: #333;
  margin-bottom: 10px;
}
.app-info {
  background-color: #e3f2fd;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-label {
  font-weight: bold;
  color: #1976d2;
}
.info-value {
  color: #333;
  padding: 4px 8px;
  background-color: white;
  border-radius: 4px;
  font-family: monospace;
}
.environment-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.env-dev {
  background-color: #fff3cd;
  color: #856404;
}
.env-staging {
  background-color: #d1ecf1;
  color: #0c5460;
}
.env-production {
  background-color: #d4edda;
  color: #155724;
}
.env-test {
  background-color: #f8d7da;
  color: #721c24;
}
.endpoint {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  padding: 15px;
  margin: 15px 0;
  position: relative;
}
.endpoint-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.endpoint-title {
  font-weight: bold;
  color: #007bff;
  margin: 0;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #6c757d;
  transition: background-color 0.3s ease;
}
.status-light.green {
  background-color: #28a745;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}
.status-light.red {
  background-color: #dc3545;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}
.status-light.gray {
  background-color: #6c757d;
}
.status-text {
  font-size: 12px;
  color: #666;
  margin: 0;
}
.endpoint-link {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.endpoint-link:hover {
  background-color: #0056b3;
}
.description {
  color: #666;
  margin-top: 5px;
  margin-bottom: 10px;
}
.last-checked {
  font-size: 11px;
  color: #999;
  margin-top: 5px;
}
.controls {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #e9ecef;
  border-radius: 5px;
}
.control-button {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.control-button:hover {
  background-color: #5a6268;
}
.control-button.active {
  background-color: #007bff;
}
