


html {
    font-size: 100%;
}


.status-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.status-options label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 110%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 115%;
    }
}

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f5;
            color: #222;
            font-size: 1rem; /* Respects browser setting */
			
        }
    
	@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #e0e0e0;
  }
  table {
    background-color: #1e1e1e;
    color: #ddd;
    border-color: #444;
  }
}


@media screen and (max-width: 600px) {
  .status-options {
    flex-direction: column;
    gap: 8px;
  }

  .status-options label {
    font-size: 18px;
  }
}

.search-form {
  display: flex;
  /* border: 3px solid orange;  testing only */
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 20px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  background: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 8px;               /* space between label and input */
  flex: 1 1 180px;        /* flexible width */
  max-width: 250px;       /* limit width for readability */
  box-sizing: border-box;
}

.search-item label {
  white-space: nowrap;    /* keep label on one line */
  font-size: 14px;
}

.search-item input,
.search-item select {
  flex: 1;                /* input grows to fill remaining space */
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* Optional: stack label & input on very narrow screens */

.message-text {
    padding: 8px 0 12px 20px;
    position: relative;
}

.message-text::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: 12px;
    color: #666;
    font-size: 16px;
}

