/* ===== TRAI BID SESSION DRAWER (PR506) ===== */
.tbs-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.14);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.tbs-drawer-closed { transform: translateX(100%); pointer-events: none; }
.tbs-drawer-open   { transform: translateX(0); }

.tbs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #1A1A2E;
  flex-shrink: 0;
}
.tbs-header-title {
  font-size: 15px;
  font-weight: 700;
  color: #FF6B00;
}
.tbs-close-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  color: #CDCCCA;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.tbs-close-btn:hover { background: rgba(255,255,255,0.1); }

.tbs-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
}

.tbs-phase-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FF6B00;
  margin-bottom: 4px;
}
.tbs-phase-title {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 16px;
}

/* Phase 1 — Rules */
.tbs-rules-list { margin-bottom: 16px; }
.tbs-rule-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #F0EFEC;
  font-size: 13px;
  gap: 12px;
}
.tbs-rule-key { color: #7A7974; flex-shrink: 0; }
.tbs-rule-val { color: #28251D; font-weight: 600; text-align: right; }
.tbs-rules-empty { color: #7A7974; font-size: 13px; margin-bottom: 16px; }
.tbs-rules-note { font-size: 11px; display: block; margin-top: 4px; color: #BAB9B4; }

/* Phase 2 — Interview */
.tbs-q-row { margin-bottom: 14px; }
.tbs-q-label { font-size: 12px; font-weight: 700; color: #28251D; margin-bottom: 4px; }
.tbs-input {
  width: 100%;
  border: 1px solid #D4D1CA;
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  color: #28251D;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.tbs-input:focus { outline: none; border-color: #FF6B00; }
.tbs-textarea { resize: vertical; min-height: 56px; }
.tbs-yn-row { display: flex; gap: 14px; }
.tbs-yn-label { font-size: 13px; color: #28251D; cursor: pointer; display: flex; align-items: center; gap: 5px; }

/* Phase 3 — Live flags */
.tbs-no-flags { color: #437A22; font-size: 13px; margin-bottom: 12px; }
.tbs-flag {
  background: #FFF3E0;
  border: 1px solid #964219;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.tbs-flag-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #964219;
  margin-bottom: 3px;
}
.tbs-flag-msg { font-size: 13px; color: #28251D; margin-bottom: 8px; }
.tbs-dismiss-btn {
  font-size: 11px;
  font-weight: 700;
  color: #7A7974;
  background: none;
  border: 1px solid #D4D1CA;
  border-radius: 4px;
  padding: 2px 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.tbs-dismiss-btn:hover { background: #F0EFEC; }

/* Shared footer */
.tbs-footer-row { margin-top: 20px; }
.tbs-next-btn {
  width: 100%;
  padding: 11px 0;
  background: #FF6B00;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.tbs-next-btn:hover { background: #e55e00; }

.tbs-disclaimer {
  font-size: 11px;
  color: #BAB9B4;
  margin-top: 14px;
  text-align: center;
}
