/* Custom styles for Swagger UI */

.route-count-container {
  background-color: #f0f0f0;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 4px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  border-left: 4px solid #49cc90;
}

.route-count, .endpoint-count {
  color: #3b4151;
  font-size: 16px;
  font-weight: bold;
}

/* Make the route count more visible in dark mode */
.swagger-ui-dark .route-count-container {
  background-color: #333;
  color: #fff;
  border-left: 4px solid #61affe;
}

.swagger-ui-dark .route-count, .swagger-ui-dark .endpoint-count {
  color: #fff;
}
