/* STATUS CLOUD */

.bionyx-service-online {
    background: #00c352;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
  }
  
  .bionyx-service-online h2 {
    margin: 0px;
    color: #fff;
  }
  
  .bionyx-service-eingeschränkt {
    background: #fcbc05; /* korrigierter Orangeton */
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
  }
  
  .bionyx-service-eingeschränkt h2 {
    margin: 0px;
    color: #fff;
  }
  
  .bionyx-service-offline {
    background: #e53935; /* kräftiges Rot für offline */
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
  }
  
  .bionyx-service-offline h2 {
    margin: 0px;
    color: #fff;
  }
  
  /* Box für Services und Fehlerbeschreibung */
  .bionyx_service, .fehlerbeschreibung {
    margin-top: 20px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 20px;
  }
  
  /* Einzelne Services mit Status-Icons */
  .bionyx_service .online {
    background: url("https://www.ekey.net/wp-content/uploads/bionyx-online.svg") no-repeat left center;
    padding-left: 40px;
    width: 33%;
    background-size: 24px;
  }
  
  .bionyx_service .eingeschränkt {
    background: url("https://www.ekey.net/wp-content/uploads/bionyx-eingeschraengt.svg") no-repeat left center;
    padding-left: 40px;
    width: 33%;
    background-size: 24px;
  }
  
  .bionyx_service .offline {
    background: url("https://www.ekey.net/wp-content/uploads/bionyx-offline.svg") no-repeat left center;
    padding-left: 40px;
    width: 33%;
    background-size: 24px;
  }
  
  /* Layout der Dienst-Elemente */
  .status_service {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Responsives Verhalten */
  @media only screen and (max-width: 1140px) {
    .bionyx_service .online,
    .bionyx_service .eingeschränkt,
    .bionyx_service .offline {
      width: 50%;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .bionyx_service .online,
    .bionyx_service .eingeschränkt,
    .bionyx_service .offline {
      width: 100%;
    }
  }
  