/* Sensor light styles */
.sensor-light {
    display: flex;
    align-items: center;
    margin-left: 8px; /* 문자열 우측에 마진 */
  }
  
  .light {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #555; /* 기본은 꺼진 상태 (회색) */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-left: 4px; /* light 사이에 약간의 간격 추가 */
  }
  
  /* 색상 클래스 */
  .green.on {
    background-color: #198754; /* 초록색 */
  }
  
  .red.on {
    background-color: #dc3545; /* 빨간색 */
  }
  
  .yellow.on {
    background-color: #ffc107; /* 노란색 */
  }
  
  /* Card content text size and alignment */
  .card-body label {
    font-size: 0.85em; /* 텍스트 크기 조정 */
    text-align: left; /* 좌측 정렬 */
    font-weight: bold; /* 볼드 처리 */
    display: flex;
    align-items: center; /* 센서 라이트와 한 줄로 정렬 */
  }
  
  .row.mb-2 {
    margin-bottom: 1rem; /* 두 행의 중간에 간격 추가 */
  }
  
  /* Tooltip left alignment */
  .tooltip-left-align .tooltip-inner {
    text-align: left; /* 툴팁 텍스트 좌측 정렬 */
  }
  