
    body {
      background-color: #0f0f0f;
      color: #ffffff;
      font-family: Arial, sans-serif;
      padding: 20px;
    }
    .status-header {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .status-icon {
      width: 50px;
      height: 50px;
      background-color: #3fd188;
      border-radius: 50%;
    }
    .status-text {
      font-size: 20px;
    }
    .system-status {
      background-color: #1a1a1a;
      padding: 10px 15px;
      border-radius: 10px;
      margin-top: 10px;
      color: #9fffa6;
      display: flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
    }
    h2 {
      margin-top: 30px;
    }
    .server {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 10px;
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .left {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .badge-green {
      background-color: #4eff9c;
      color: #000;
      font-weight: bold;
      padding: 2.5px 10px;
      border-radius: 5px;
    }
	.badge-orange {
      background-color: #ffcd4e;
      color: #000;
      font-weight: bold;
      padding: 2.5px 10px;
      border-radius: 5px;
    }
	.badge-red {
      background-color: #ff4e4e;
      color: #000;
      font-weight: bold;
      padding: 2.5px 10px;
      border-radius: 5px;
    }
    .bars {
      display: flex;
      gap: 3px;
    }
    .green {
      width: 5px;
      height: 16px;
      background-color: #4eff9c;
      border-radius: 4px;
    }
	.orange {
	width: 5px;
      height: 16px;
      background-color: #ffcd4e;
      border-radius: 4px;
    }
	.red {
		width: 5px;
      height: 16px;
      background-color: #ff4e4e;
      border-radius: 4px;

	}