/* General page settings */
body {
  margin: 0;
  padding: 2rem;
  font-family: system-ui, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
}

/* Main container */
main {
  max-width: 1000px;
  margin: 0 auto;
}

#status-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 2rem;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.title-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #a0a0a0; /* applies if using inline SVG */
}


/* Individual cards */
.status-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Align text to the left */
  width: 100%;             /* Ensure full width in column layout */
  box-sizing: border-box;
}


.status-card:hover {
  transform: translateY(-4px);
}

.status-title {
  font-size: 1.25rem; /* slightly larger */
  font-weight: bold;
  color: rgb(221, 218, 218);
  margin-bottom: 0.25rem;
}

.status-value {
  font-size: 1rem; /* smaller than title */
  color: #ffffff;
  word-break: break-word;
}


