    body {
      font-family: "Segoe UI", sans-serif;
      background: #f8f9fa;
      color: #333;
      margin: 0;
      padding: 0;
    }

    header {
      background-color: #1e1e2f;
      color: #fff;
      padding: 1rem 2rem;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .banner {
      padding: 10px;
      font-weight: bold;
      text-align: center;
      color: white;
      margin-bottom: 20px;
      border-radius: 5px;
    }
    .banner-green {
      background-color: #28a745;
    }
    .banner-yellow {
      background-color: #ffc107;
      color: #000;
    }
    .banner-red {
      background-color: #dc3545;
    }

    .global-status {
      background-color: #e0ffe0;
      color: #008000;
      padding: 1rem 2rem;
      border-bottom: 2px solid #c6f5c6;
      font-weight: 600;
    }

    main {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .section-title {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #555;
    }

    .service {
      background: #fff;
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-bottom: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      cursor: default;
    }

    .service-name {
      font-weight: 500;
    }

    .badge {
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-right: 20px;
    }

    .up { background: #d4edda; color: #155724; }
    .degraded { background: #fff3cd; color: #856404; }
    .down { background: #f8d7da; color: #721c24; }

    /* Rainbow "Upcoming" badge */
    @keyframes rainbowShift {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    @keyframes rainbowShiftV {
      0% { background-position: 50% 0%; }
      100% { background-position: 50% 100%; }
    }

    .upcoming {
      background: linear-gradient(270deg, red, orange, yellow, green, cyan, blue, violet, red);
      background-size: 1500% 1500%;
      color: white;
      animation: rainbowShift 8s linear infinite;
    }

    /* Dropdowns */
    .dropdown {
      margin-top: 0.5rem;
      padding-left: 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      margin-bottom: 0.5rem;
    }

    .dropdown.open {
      max-height: 500px; /* large enough for content */
    }

    .incident-log {
      margin-top: 3rem;
    }

    .incident {
      background: #fff;
      border: 1px solid #ddd;
      border-left: 4px solid #ffc107;
      padding: 1rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .incident.upcoming {
      position: relative;
      background: #fff;
      border: 1px solid #ddd;
      padding: 1rem;
      border-radius: 4px;
      margin-bottom: 1rem;
      color: black;
    }

.incident.upcoming::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px; /* same as your border-left */
  height: 100%;
  background: linear-gradient(180deg, red, orange, yellow, green, cyan, blue, violet, red);
  background-size: 1500% 1500%;
  animation: rainbowShiftV 5s linear infinite;
}

    .incident.bad {
      background: #fff;
      border: 1px solid #ddd;
      border-left: 4px solid #b00000;
      padding: 1rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .incident .date {
      font-size: 0.9rem;
      color: #999;
      margin-bottom: 0.3rem;
    }

    .incident.resolved {
      border-left-color: #28a745;
    }

    footer {
      text-align: center;
      font-size: 0.85rem;
      color: #888;
      margin: 4rem 0 2rem;
    }

/* Arrow icon */
.service.has-dropdown::after {
  content: "▶"; /* closed arrow */
  position: absolute;
  right: 1rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #555;
}

/* Rotate arrow when open */
.service.open::after {
  transform: rotate(90deg);
}

/* Sub-service style */
.sub-service {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0.3rem 0 0.3rem 1rem;
  padding: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

#duh {
  font-size: 0.9rem;
  color: #000;
  font-weight: bold;
  text-transform: capitalize;
}
