/* ── Apollo AI — Theme B: Warm Professional ── */
/* Pallette: warm off-white, terracotta accents, taupe neutrals */

/* Root variables */
:root {
  --bg-warm: #f8f6f3;
  --bg-sidebar: #ede8e2;
  --bg-white: #ffffff;
  --text-primary: #2d2a24;
  --text-secondary: #7a7168;
  --text-muted: #a09890;
  --accent-taupe: #8b7d6b;
  --accent-terracotta: #c4745b;
  --border-warm: #ddd6ce;
  --border-light: #e8e3dc;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, sans-serif;
  --radius-card: 8px;
  --radius-btn: 6px;
}

/* Reset/base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  background: var(--bg-warm);
  color: var(--text-primary);
  overflow: hidden;
}

.hidden {
  display: none !important;
}

/* Login screen */
#loginScreen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background: var(--bg-warm);
}

.login-box {
  width: 420px;
  max-width: calc(100vw - 32px);
  background: var(--bg-white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
}

.login-header {
  padding: 32px 24px 20px;
  text-align: center;
}

.login-title {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.login-subtitle {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 6px;
}

.login-divider {
  height: 1px;
  background: var(--border-warm);
  margin: 0 24px;
}

.login-tabs {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0 24px;
  margin-top: 16px;
}

.login-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  padding: 10px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  transition: color 0.15s, border-color 0.15s;
}

.login-tab.active {
  border-bottom-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.login-tab:hover:not(.active) {
  color: var(--text-primary);
}

#loginForm,
#registerForm {
  padding: 20px 24px 8px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  color: var(--text-primary);
  font-size: 14px;
  border-radius: var(--radius-btn);
  padding: 8px 10px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.form-group input:focus {
  border-color: var(--accent-terracotta);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.login-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.btn-primary {
  background: var(--accent-terracotta);
  border: 1px solid var(--accent-terracotta);
  color: var(--bg-white);
  padding: 8px 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: opacity 0.15s, background 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.status-text {
  color: var(--text-secondary);
  font-size: 11px;
}

.error-text {
  color: #dc2626;
  font-size: 11px;
  padding: 0 24px 16px;
  min-height: 18px;
}

/* Dashboard */
#dashboard {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--bg-warm);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border-warm);
  padding: 0 16px;
  height: 40px;
  flex-shrink: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-brand {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.header-version {
  color: var(--text-secondary);
  font-size: 10px;
  padding: 2px 6px;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-btn);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-label {
  color: var(--text-secondary);
  font-size: 11px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online {
  background: #22c55e;
}

.status-dot.offline {
  background: #dc2626;
}

.status-dot.connecting {
  background: #d97706;
}

.status-label {
  color: var(--text-secondary);
  font-size: 10px;
}

.main {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  width: 280px;
  min-width: 280px;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-warm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-section {
  padding: 12px;
  flex-shrink: 0;
}

.btn-new-chat {
  width: 100%;
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  color: var(--text-primary);
  padding: 8px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  border-radius: var(--radius-btn);
  transition: border-color 0.15s, color 0.15s;
}

.btn-new-chat:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.shortcut-badge {
  display: inline-block;
  background: var(--bg-white);
  color: var(--text-secondary);
  font-size: 10px;
  padding: 2px 5px;
  margin-right: 6px;
  border: 1px solid var(--border-warm);
  border-radius: 3px;
}

.sidebar-divider {
  height: 1px;
  background: var(--border-warm);
  margin: 0 12px;
}

.sidebar-section-title {
  color: var(--text-secondary);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 12px 12px 6px 12px;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}

.conversation-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

.conv-item {
  padding: 8px 12px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.12s, border-color 0.12s;
}

.conv-item:hover {
  background: var(--border-light);
}

.conv-item.active {
  background: var(--bg-white);
  border-left-color: var(--accent-terracotta);
}

.conv-item-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  margin-right: 8px;
  opacity: 0.4;
  vertical-align: middle;
}

.conv-item.active .conv-item-dot {
  opacity: 1;
}

.conv-item-title {
  font-size: 12px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.conv-item-time {
  font-size: 10px;
  color: var(--text-secondary);
  margin-left: 14px;
}

.conv-empty {
  padding: 20px 12px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 11px;
  white-space: pre-line;
}

.sidebar-system {
  padding: 8px 12px 4px;
  font-size: 11px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.status-online {
  color: #22c55e;
}

.sidebar-footer {
  padding: 12px;
  border-top: 1px solid var(--border-warm);
  flex-shrink: 0;
}

.btn-sidebar {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 8px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  text-align: left;
  transition: color 0.12s;
}

.btn-sidebar:hover {
  color: var(--text-primary);
}

.btn-sidebar:last-child {
  margin-top: 4px;
}

.shortcut-hints {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border-warm);
  font-size: 10px;
  color: #a09890;
  text-align: center;
  letter-spacing: 0.3px;
  user-select: none;
}

/* Chat */
.chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-warm);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border-warm);
  flex-shrink: 0;
  min-height: 40px;
  gap: 8px;
  background: var(--bg-sidebar);
}

.chat-title {
  color: var(--text-secondary);
  font-size: 11px;
  margin-right: 8px;
  flex-shrink: 0;
}

.chat-conv-title {
  color: var(--text-primary);
  font-size: 12px;
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-icon {
  background: transparent;
  border: 1px solid var(--border-warm);
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 12px;
  border-radius: var(--radius-btn);
  transition: border-color 0.12s, color 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.btn-icon:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: var(--bg-warm);
}

.msg-block {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
}

.msg-block:last-child {
  margin-bottom: 0;
}

.msg-role {
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.msg-role.user {
  color: var(--accent-terracotta);
}

.msg-role.assistant {
  color: var(--text-primary);
  font-family: var(--font-serif);
}

.msg-time {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: normal;
}

.msg-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.msg-content p {
  margin-bottom: 8px;
}

.msg-content code {
  background: var(--bg-warm);
  padding: 2px 6px;
  font-size: 12px;
  border: 1px solid var(--border-warm);
  border-radius: 3px;
  color: var(--text-primary);
}

.msg-content pre {
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  padding: 12px;
  overflow-x: auto;
  margin: 8px 0;
  border-radius: var(--radius-btn);
}

.msg-content pre code {
  background: transparent;
  border: none;
  padding: 0;
}

.msg-content strong {
  color: var(--text-primary);
}

.msg-content em {
  color: var(--text-secondary);
}

.msg-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.msg-action-btn {
  background: transparent;
  border: 1px solid var(--border-warm);
  color: var(--text-secondary);
  font-size: 10px;
  padding: 3px 8px;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius-btn);
  transition: border-color 0.12s, color 0.12s;
}

.msg-action-btn:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.empty-chat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  text-align: center;
  padding: 40px 24px;
}

.empty-chat-logo {
  font-size: 24px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.empty-chat-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
}

.chat-input-area {
  border-top: 1px solid var(--border-warm);
  padding: 12px 16px;
  flex-shrink: 0;
  background: var(--bg-warm);
}

.input-prompt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-prefix {
  color: var(--accent-terracotta);
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
  flex-shrink: 0;
}

.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-warm);
  background: var(--bg-white);
  padding: 6px 10px;
  border-radius: var(--radius-btn);
  transition: border-color 0.15s;
}

.input-wrapper:focus-within {
  border-color: var(--accent-terracotta);
}

.input-wrapper textarea {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  resize: none;
  min-height: 20px;
  max-height: 120px;
  line-height: 1.4;
}

.input-wrapper textarea::placeholder {
  color: var(--text-muted);
}

.btn-send {
  background: transparent;
  border: none;
  color: var(--accent-terracotta);
  font-size: 18px;
  cursor: pointer;
  margin-left: 6px;
  padding: 4px 8px;
  transition: color 0.12s;
  font-family: inherit;
  line-height: 1;
}

.btn-send:hover {
  color: var(--text-primary);
}

.btn-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shortcut-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 6px;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}

.shortcut-item {
  font-size: 10px;
  color: #a09890;
}

.kbd {
  display: inline-block;
  background: var(--bg-warm);
  color: var(--text-secondary);
  padding: 1px 4px;
  font-size: 9px;
  border: 1px solid var(--border-warm);
  margin: 0 1px;
  border-radius: 3px;
}

/* Modal (Settings) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-box {
  border: 1px solid var(--border-warm);
  background: var(--bg-white);
  width: 480px;
  max-width: 90vw;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-warm);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.modal-close {
  background: transparent;
  border: 1px solid var(--border-warm);
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  border-radius: var(--radius-btn);
  transition: border-color 0.12s, color 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.modal-body {
  padding: 16px;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 12px;
}

.setting-row span:first-child {
  color: var(--text-secondary);
}

.mono-text {
  color: var(--text-primary);
  font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
  font-size: 11px;
  word-break: break-all;
  text-align: right;
}

.click-to-copy {
  cursor: pointer;
  transition: color 0.15s;
  position: relative;
}
.click-to-copy:hover {
  color: var(--accent-terracotta);
}
.click-to-copy:active {
  color: var(--accent-taupe);
}

.setting-note {
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 0 0 0;
  line-height: 1.4;
}

/* Typing indicator */
.typing-indicator span {
  display: inline-block;
  animation: blink 1.2s step-end infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--bg-white);
  border: 1px solid #22c55e;
  color: var(--text-primary);
  padding: 8px 16px;
  font-size: 12px;
  z-index: 200;
  border-radius: var(--radius-btn);
  animation: toastIn 0.2s ease-out;
}

@keyframes toastIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast.error {
  border-color: #dc2626;
  color: #dc2626;
}

::selection {
  background: var(--accent-terracotta);
  color: var(--bg-white);
}

/* Scrollbar — thin */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-warm) var(--border-light);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--border-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border-warm);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-taupe);
}

/* ── Capability cards ── */
.capability-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  max-width: 680px;
  width: 100%;
}

@media (max-width: 720px) {
  .capability-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

.capability-card {
  background: var(--bg-white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
  font-family: inherit;
}

.capability-card:hover {
  border-color: var(--accent-terracotta);
  background: var(--bg-warm);
}

.capability-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.capability-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.capability-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Navigation items ── */
.nav-items {
  padding: 8px 12px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: var(--radius-btn);
  color: var(--text-secondary);
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: transparent;
  width: 100%;
  font-family: inherit;
  text-align: left;
}

.nav-item:hover {
  background: var(--border-light);
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--bg-white);
  color: var(--accent-terracotta);
  font-weight: 500;
}

.nav-item-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Briefing panel ── */
.briefing-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 32px 40px;
  background: var(--bg-warm);
  max-width: 960px;
}

.briefing-hidden {
  display: none !important;
}

.briefing-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

.briefing-greeting {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-serif);
  margin-bottom: 32px;
}

.briefing-section {
  margin-bottom: 28px;
}

.briefing-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-taupe);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-warm);
}

.briefing-action-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  margin-bottom: 8px;
  background: var(--bg-white);
  transition: border-color 0.15s;
}

.briefing-action-item:hover {
  border-color: var(--accent-terracotta);
}

.priority-high {
  background: #fdf0ed;
  color: var(--accent-terracotta);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.priority-medium {
  background: #f5f0eb;
  color: var(--accent-taupe);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.priority-low {
  background: var(--bg-warm);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.briefing-action-content {
  flex: 1;
}

.briefing-action-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.briefing-action-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

.briefing-inbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  margin-bottom: 6px;
  background: var(--bg-white);
}

.briefing-inbox-from {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  min-width: 120px;
}

.briefing-inbox-subject {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}

.briefing-inbox-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.briefing-calendar-item {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  margin-bottom: 6px;
  background: var(--bg-white);
}

.briefing-calendar-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-terracotta);
  min-width: 60px;
}

.briefing-calendar-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.briefing-calendar-location {
  font-size: 11px;
  color: var(--text-muted);
}

.briefing-decision-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  margin-bottom: 6px;
  background: var(--bg-white);
}

.briefing-decision-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
}

.briefing-decision-deadline {
  font-size: 11px;
  color: var(--accent-terracotta);
  white-space: nowrap;
}

/* ── View container ── */
.view-container {
  flex: 1;
  display: flex;
  overflow: hidden;
  background: var(--bg-warm);
}

.view-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.view-briefing {
  flex: 1;
  display: flex;
  overflow-y: auto;
  justify-content: center;
}

.view-hidden {
  display: none !important;
}
