/* Tool-specific styles. Loaded only on /tools/* pages. */

.field-result {
  background-color: rgba(10, 191, 104, 0.08);
  border-color: rgba(10, 191, 104, 0.5) !important;
  font-weight: 700;
}
.dark .field-result {
  background-color: rgba(10, 191, 104, 0.15);
}

.tool-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  background: white;
  color: #0F2A1F;
  font-size: 1rem;
  transition: border-color 150ms ease;
}
.dark .tool-input {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}
.tool-input:focus {
  outline: none;
  border-color: #0ABF68;
  box-shadow: 0 0 0 3px rgba(10, 191, 104, 0.2);
}

.splits-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.splits-table th,
.splits-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark .splits-table th,
.dark .splits-table td {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
.splits-table th {
  font-weight: 700;
  color: #4B5560;
}
.dark .splits-table th {
  color: #B8C0CC;
}

.predict-row-source {
  background-color: rgba(10, 191, 104, 0.08);
  font-weight: 700;
}
.dark .predict-row-source {
  background-color: rgba(10, 191, 104, 0.15);
}
