/* Global Solar Counter Styling */

.global-counter-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
  font-family: 'Roboto Mono', monospace;
}

.global-counter-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.global-counter-row:last-of-type {
  border-bottom: none;
}

.global-counter-label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 0.5rem;
  width: 100%;
}

.global-counter-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #006600;
  text-align: center;
  font-family: 'Roboto Mono', monospace;
  overflow: visible;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.global-counter-info {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#global-solar-count,
#global-energy-count,
#global-value-count {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  overflow: visible; /* Ensure text doesn't get cut off */
  font-size: 1.4rem; /* Slightly reduce font size for better fit */
  white-space: nowrap;
  margin: 0.5rem 0;
  word-break: keep-all;
}

/* Special styling for the SOLAR value */
#global-solar-count {
  color: #006600;
  font-weight: 700;
}

/* Removed responsive adjustments as we now use a column layout by default */