html {
  box-sizing: border-box;
  overflow-y: scroll;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background: #0f0c1b;
  font-family: 'Inter', sans-serif;
}
/* Customizing Swagger UI for Dark Mode aesthetic matching dashboard */
.swagger-ui {
  filter: invert(88%) hue-rotate(180deg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  background: #fafafa;
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.swagger-ui .info {
  margin: 20px 0;
}
.header-bar {
  background: linear-gradient(135deg, #110d22 0%, #05020c 100%);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-title {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(to right, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.btn-back {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3f4f6;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-back:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
