/* =========================================================
   STC COPILOT — ENTERPRISE APP STYLING
   FILE: /copilot/app/styles.css
   STATUS: PLATFORM ALIGNED
========================================================= */

/* Layout Foundation */

#copilot-ask {
  max-width: 920px;
  margin: 80px auto;
  padding: 0 24px 120px;
}

#copilot-ask h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* Interview Bar */

.interview-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #a8b3c7;
}

.interview-toggle input {
  margin-right: 6px;
}

/* Ask Row */

.ask-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 40px;
}

.mic-button {
  background: #111822;
  border: 1px solid #2b3a52;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s ease;
}

.mic-button:hover {
  border-color: #d4a62a;
}

#copilot-input {
  flex: 1;
  background: #0f1623;
  border: 1px solid #2b3a52;
  border-radius: 12px;
  padding: 14px 16px;
  color: #e5eaf3;
  font-size: 15px;
  resize: none;
}

#copilot-input:focus {
  outline: none;
  border-color: #d4a62a;
}

.ask-button {
  background: #d4a62a;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.ask-button:hover {
  background: #f0c94a;
}

/* Response Card */

.copilot-card {
  background: #0f1623;
  border: 1px solid #1d2a3f;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
}

.copilot-card h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.copilot-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #dbe3f1;
}

.copilot-idle-line {
  font-size: 13px;
  color: #8090a8;
}

/* Transcript */

.transcript-toggle summary {
  cursor: pointer;
  margin-top: 14px;
  font-size: 14px;
  color: #a8b3c7;
}

#transcript-panel {
  margin-top: 10px;
  padding: 16px;
  background: #0c1320;
  border: 1px solid #1d2a3f;
  border-radius: 12px;
  font-size: 13px;
  color: #b8c4d9;
}

/* Export Buttons */

.export-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.export-btn {
  background: #111822;
  border: 1px solid #2b3a52;
  border-radius: 10px;
  padding: 8px 14px;
  color: #cdd6e5;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s ease;
}

.export-btn:hover {
  border-color: #d4a62a;
}

/* Anki Floating */

.anki-hud {
  margin-top: 30px;
}

.anki-card {
  background: #0f1623;
  border: 1px solid #1d2a3f;
  border-radius: 16px;
  padding: 20px;
}

.anki-front {
  font-size: 15px;
  margin-bottom: 16px;
}

.anki-controls {
  display: flex;
  gap: 10px;
}

.anki-btn {
  flex: 1;
  background: #111822;
  border: 1px solid #2b3a52;
  border-radius: 10px;
  padding: 8px 0;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
}

.anki-btn:hover {
  border-color: #d4a62a;
}

/* Footer */

#authority-strip {
  margin-top: 60px;
  font-size: 12px;
  color: #6c7a94;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
