/* ===== BID REVISION TRACKER (PR511) ===== */
.brt-wrap {
  font-family: inherit;
  font-size: 13px;
  color: #28251D;
}

.brt-section-header {
  margin-bottom: 16px;
}
.brt-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 4px;
}
.brt-section-sub {
  font-size: 12px;
  color: #7A7974;
  line-height: 1.4;
}

/* Type buttons */
.brt-add-section { margin-bottom: 16px; }
.brt-add-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7A7974;
  margin-bottom: 8px;
}
.brt-type-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brt-type-btn {
  background: #F7F6F2;
  border: 1px solid #D4D1CA;
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #28251D;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.brt-type-btn:hover { background: #FF6B00; color: #fff; border-color: #FF6B00; }

/* Revision cards */
.brt-card {
  background: #fff;
  border: 1px solid #D4D1CA;
  border-radius: 8px;
  padding: 14px 14px 10px;
  margin-bottom: 12px;
}
.brt-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.brt-card-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A2E;
  flex: 1;
}
.brt-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.brt-status-open     { background: #FFF3E0; color: #964219; }
.brt-status-review   { background: #E3F2FD; color: #006494; }
.brt-status-resolved { background: #E8F5E2; color: #437A22; }

.brt-card-remove {
  background: none;
  border: none;
  color: #BAB9B4;
  font-size: 16px;
  cursor: pointer;
  font-family: monospace;
  padding: 0 2px;
  line-height: 1;
}
.brt-card-remove:hover { color: #A12C7B; }

.brt-card-row { margin-bottom: 8px; }
.brt-card-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.brt-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7A7974;
  margin-bottom: 3px;
}
.brt-input {
  width: 100%;
  border: 1px solid #D4D1CA;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 12px;
  font-family: inherit;
  color: #28251D;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.brt-input:focus { outline: none; border-color: #FF6B00; }
.brt-sm { font-size: 12px; }

/* TRai note */
.brt-trai-note {
  background: #F7F6F2;
  border-left: 3px solid #FF6B00;
  border-radius: 0 4px 4px 0;
  padding: 6px 10px;
  font-size: 12px;
  color: #28251D;
  margin-bottom: 8px;
  line-height: 1.4;
}
.brt-trai-label { font-weight: 700; color: #FF6B00; margin-right: 4px; }
.brt-trai-disclaimer { font-size: 10px; color: #BAB9B4; margin-left: 6px; }

/* Document upload */
.brt-doc-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brt-upload-label {
  display: inline-block;
  background: #F7F6F2;
  border: 1px dashed #D4D1CA;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #28251D;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.brt-upload-label:hover { background: #F0EFEC; border-color: #FF6B00; }
.brt-doc-attached {
  font-size: 11px;
  color: #437A22;
  font-weight: 600;
}

.brt-empty {
  color: #7A7974;
  font-size: 13px;
  padding: 12px 0;
}
