.rx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.rx-grid textarea {
  min-height: 72px;
  grid-column: 1 / -1;
  border: 1px solid var(--ui-border-strong);
  border-radius: var(--ui-radius-sm);
  padding: 8px 10px;
  font-size: 14px;
}

.rx-toolbar {
  display: grid;
  grid-template-columns: 180px 1fr 240px 130px;
  gap: 8px;
  margin-bottom: 10px;
}

.rx-table {
  width: 100%;
  border-collapse: collapse;
}

.rx-table th,
.rx-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
  text-align: left;
}

.rx-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #e2e8f0;
}

.rx-status--active {
  background: #dcfce7;
  color: #166534;
}

.rx-status--danger {
  background: #fee2e2;
  color: #991b1b;
}

.rx-stock-pill {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.rx-stock-pill--green { background: #dcfce7; color: #166534; }
.rx-stock-pill--yellow { background: #fef9c3; color: #854d0e; }
.rx-stock-pill--orange { background: #ffedd5; color: #9a3412; }
.rx-stock-pill--red { background: #fee2e2; color: #991b1b; }

@media (max-width: 1100px) {
  .rx-grid {
    grid-template-columns: 1fr;
  }
  .rx-toolbar {
    grid-template-columns: 1fr;
  }
}
