/* Reports */
.rpt-form { padding: 0 0 24px; }
.rpt-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; margin-bottom: 16px;
  background: #1a1a2e; border-radius: 8px;
}
.rpt-header-icon { font-size: 24px; }
.rpt-header h2 { margin: 0; font-size: 18px; color: #eee; }
.rpt-field { margin-bottom: 14px; }
.rpt-label { display: block; font-size: 13px; color: #aaa; margin-bottom: 4px; font-weight: 600; }
.rpt-req { color: #e74c3c; }
.rpt-input {
  width: 100%; padding: 10px 12px; background: #1a1a2e;
  border: 1px solid #333; border-radius: 8px; color: #eee;
  font-size: 14px; box-sizing: border-box; font-family: inherit;
}
.rpt-input:focus { outline: none; border-color: #f5a623; }
.rpt-select { appearance: auto; }
.rpt-textarea { min-height: 70px; resize: vertical; }
.rpt-yn { display: flex; gap: 8px; }
.rpt-yn-btn {
  flex: 1; padding: 8px; border: 1px solid #333; border-radius: 8px;
  background: #1a1a2e; color: #aaa; font-size: 14px; cursor: pointer;
  text-align: center; transition: all 0.15s;
}
.rpt-yn-btn.selected { background: #2a4a2a; border-color: #4caf50; color: #4caf50; font-weight: 600; }
.rpt-actions { display: flex; gap: 10px; margin-top: 20px; }
.rpt-btn-submit {
  flex: 2; padding: 12px; border: none; border-radius: 8px;
  background: #f5a623; color: #000; font-size: 15px;
  font-weight: 700; cursor: pointer; transition: background 0.15s;
}
.rpt-btn-submit:hover { background: #e09500; }
.rpt-btn-submit:disabled { background: #4caf50; color: #fff; }
.rpt-btn-cancel {
  flex: 1; padding: 12px; border: 1px solid #333; border-radius: 8px;
  background: none; color: #aaa; font-size: 14px; cursor: pointer;
}

/* Report cards in Ops */
.ops-reports { margin-top: 16px; }
.ops-reports-title { color: #999; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ops-rpt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ops-rpt-card {
  background: #1a1a2e; border: 1px solid #333; border-radius: 10px;
  padding: 12px 8px; text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: border-color 0.15s;
}
.ops-rpt-card:hover, .ops-rpt-card:active { border-color: #f5a623; }
.ops-rpt-icon { font-size: 22px; }
.ops-rpt-label { font-size: 11px; color: #ccc; font-weight: 600; }

/* Post-submit prompt */
.rpt-prompt {
  background: #1a1a2e; border: 1px solid #f5a623; border-radius: 10px;
  padding: 14px; margin-top: 12px; text-align: center;
}
.rpt-prompt-title { color: #f5a623; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.rpt-prompt-btns { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.rpt-prompt-btn {
  padding: 8px 16px; border-radius: 8px; font-size: 13px;
  font-weight: 600; cursor: pointer; border: 1px solid #333;
}
.rpt-prompt-btn-yes { background: #f5a623; color: #000; border-color: #f5a623; }
.rpt-prompt-btn-no { background: none; color: #aaa; }
