/* monitoring.css */

.monitoring-card {
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  width: 300px;
  box-shadow: 0 0 6px rgba(0,255,0,0.08);
}

.rank-number {
  background-color: #2f2f2f;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  padding: 6px 12px;
  margin-right: 14px;
}

.monitoring-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.region-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.progress-line-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-bar {
  flex-grow: 1;
  height: 4px;
  background-color: #2d2d2d;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 8px;
}

.progress-bar-fill {
  height: 100%;
  background-color: #4caf50;
  width: 0%;
  transition: width 0.4s ease;
}

.online-count {
  font-size: 13px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.green-dot {
  width: 6px;
  height: 6px;
  background-color: #4caf50;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}