body {
    margin: 0;
    padding: 0;
    background-color: #171b23;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
  }

  .redText {
    color: #dc3545;
  }

  h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #4ea8de;
  }

  h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #4ea8de;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  h2 {
    border-bottom: 2px solid #4ea8de;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #82c0ff;
  }
  
  .status-card {
    display: flex;
    align-items: center;
    background-color: #1e2533;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .status {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .online {
    background-color: #28a745;
  }
  
  .degraded {
    background-color: #ffc107;
  }
  
  .offline {
    background-color: #dc3545;
  }
  
  .status-card div p {
    margin: 5px 0;
  }
  
  details {
    background-color: #1e2533;
    padding: 10px;
    border-radius: 8px;
    margin-left: 35px; /* Align with status details */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  summary {
    cursor: pointer;
    font-weight: bold;
    color: #4ea8de;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
  }
  
  li {
    padding: 5px 0;
    border-bottom: 1px solid #333;
  }
  
  li:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 600px) {
    .status-card {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .status {
      margin-bottom: 10px;
    }
  
    details {
      margin-left: 0;
    }
  }
  
