.gauge-chart {
    width: 100%;
    height: 220px; /* 원하는 높이로 조정 */
    background-color: #212529; /* 배경 색상 설정 */
  }
  
  .sensor-light {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
  }
  
  .light {
    width: 24px;
    height: 24px;
    border-radius: 60%;
    background-color: #555; /* 기본은 꺼진 상태 (회색) */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .green.on {
    background-color: #198754; /* 초록색 */
  }
  
  .red.on {
    background-color: #dc3545; /* 빨간색 */
  }
  
  .card-header {
    font-size: 0.8em;
  }

  .card-body_font-sm{
    font-size: 0.8em;
  }