.sensor-value-widget {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.sensor-name {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}

.sensor-value {
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  font-family: 'Courier New', monospace;
}

.sensor-status {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  text-align: center;
}

.sensor-timestamp {
  font-size: 10px;
  color: #ccc;
  margin-top: 4px;
  text-align: center;
  font-family: 'Courier New', monospace;
}

/* Status indicators */
.sensor-status.connected {
  color: #4CAF50;
}

.sensor-status.disconnected {
  color: #f44336;
}

.sensor-status.error {
  color: #ff9800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sensor-value-widget {
    padding: 12px;
  }
  
  .sensor-value {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .sensor-value-widget {
    padding: 8px;
  }
  
  .sensor-value {
    font-size: 0.8em;
  }
  
  .sensor-name {
    font-size: 12px;
    margin-bottom: 6px;
  }
}