/******************************************************************************/
/* Root + Base                                                               */
/******************************************************************************/

:root {
  --brand: #a8402e;          /* TempliShelf rust — matches the updated logo mark */
  --brand-dark: #8a3426;
  --brand-light: #efddd9;
  --brand-verylight: #f9f2f0;
  --ink: #24262a;            /* TempliShelf charcoal — matches the wordmark/hex outline */
  --ink-muted: #6b7280;
  --border: #dfe3e8;
  --danger: #d9534f;
  --danger-dark: #c9302c;
  --success: #1f9d55;
}

* { box-sizing: border-box; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Poppins", sans-serif;
  margin: 10px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}

button, input, select, textarea {
  font-family: inherit;
}

.hidden { display: none !important; }

.title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.taskpane-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  flex-shrink: 0;
}

.app-title {
  font-size: 19px;
  font-weight: 700;
}

.page-subtitle {
  margin: 2px 0 0;
  color: var(--ink-muted);
  font-size: 12.5px;
}

.section-heading {
  margin: 18px 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.section-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.empty-state {
  color: var(--ink-muted);
  font-size: 13px;
  padding: 10px 2px;
}

.field-hint {
  color: var(--ink-muted);
  font-size: 12px;
  margin-top: 4px;
}

.no-office-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 40px 20px;
  color: var(--ink-muted);
}
.no-office-message i {
  font-size: 24px;
  color: var(--brand);
}
