* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  html {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  body {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: auto;
  }
  
  .outer-container {
    background: url("image.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    z-index: 0;
    overflow: auto;
    backdrop-filter: blur(100%);
  }
  
  .ornithon-container {
    display: flex;
    justify-content: center;
    padding-top: 1%;
    padding-bottom: 1%;
  }
  
  .ornithon-logo {
    background: url("Denvik.png") no-repeat;
    width: 135px;
    height: 40px;
    z-index: 100;
    background-size: cover;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;    
  }
  
  .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 60px;
    width: 30%;
    margin-bottom: 30px;
  }
  
  .card-one {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  
  .live-data {
    color: #166DA6;
    font-size: 18px;
    font-weight: 600;
  }
  
  .label-data {
    font-size: 12px;
    font-weight: 590;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .api-data1, .api-data2 {
    font-size: 18px;
    font-weight: 600;
    color: #458AB8;
  }
  
  .card-one-data {
    background-color: #EAEAEA;
    padding: 5px 35px 5px 20px;
    border: 1px solid transparent;
    display: flex;
    justify-content: space-between;
  }
  
  .error-list {
    margin-top: 20px;
  }
  
  .error-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #ddd;
  }
  
  .label-data {
    font-size: 12px;
    font-weight: 590;
  }
  
  .error-time {
    font-size: 12px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
  }
  
  .dot.green {
    background-color: green;
  }
  
  .dot.red {
    background-color: gray;
  }
  
  .status{
    display: none;
    font-weight: bold;
    font-size: 14px;
  }
  
  /* Your existing media queries */
  
  @media only screen and (max-width: 600px) {
    .row {
      width: 95% !important;
    }
  
    .ornithon-container {
      display: flex;
      justify-content: center;
      padding-left: 0px;
    }
  }
  
  @media only screen and (min-width: 600px) {
    .row {
      width: 50% !important;
    }
  }
  
  @media only screen and (min-width: 768px) {
    .row {
      width: 40% !important;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .row {
      width: 30% !important
    }}
  .heading1{
    font-size: 20px;
    font-weight: bold;
    color: #166DA6;
  }
  .status_green{
    color: rgb(10, 209, 10);
  }
  .status_red{
    color:red;
  }
  .status1{
    font-size: 14px;
    font-weight: bold;
  }