/**
 * RoutineBanner Component
 * Banner displayed at top of page in routine mode
 * 
 * Dependencies: chat-tokens.css
 */

/* ============================================
   COMPONENT VARIABLES
   ============================================ */

:root {
  --routine-banner-h: 48px;
}

/* ============================================
   BANNER CONTAINER
   ============================================ */

.routine-banner {
  display: none;
}

.routine-mode .routine-banner {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height);
  height: var(--routine-banner-h);
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #6c4ff7;
  color: #fff;
  font-weight: 600;
  z-index: 111;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  padding: 0 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.routine-banner .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

/* ============================================
   LAYOUT ADJUSTMENTS
   ============================================ */

/* Adjust chat area when routine banner is visible */
.routine-mode main#chat {
  padding-top: calc(3.5rem + var(--routine-banner-h));
  max-height: calc(
    100vh - var(--header-height) - var(--footer-height) -
      var(--routine-banner-h)
  );
}

.routine-mode .page-below-header {
  padding-top: calc(var(--header-height) + var(--routine-banner-h));
}

/* QPO progress bar positioning in routine mode */
.routine-mode #qpoqqcc-progress {
  top: calc(var(--header-height) + var(--routine-banner-h) + 8px);
}

.routine-mode.with-qpo-bar main#chat {
  max-height: calc(
    100vh - var(--header-height) - var(--footer-height) -
      var(--routine-banner-h) - var(--qpoqqcc-h)
  );
}

/* ============================================
   ROUTINE PAGE MESSAGE OVERRIDES
   ============================================ */

.routine-page .message.user {
  background: #6c43e0;
  color: #ffffff;
  border-color: #6c43e0;
}

.routine-page .message.assistant {
  background: #ffffff;
  color: #0f172a;
  border-color: var(--clr-border);
}

/* ============================================
   DARK MODE
   ============================================ */

body.dark-mode .routine-page .message.user {
  background: #6c43e0;
  color: #ffffff;
  border-color: #6c43e0;
}

body.dark-mode .routine-page .message.assistant {
  background: #0b0f1a;
  color: #e6e9f2;
  border-color: #1f2937;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
  :root {
    --routine-banner-h: 44px;
  }
}

