/* ===========================================================================
   Schematisches Outlook-Fenster mit JurShare-Aufgabenbereich
   (includes/outlook-mock.php). Bewusst neutral gehalten – keine Kopie der
   Microsoft-Oberfläche, sondern eine lesbare Illustration des Ablaufs.
   ========================================================================= */
.olmock { margin: 0; min-width: 0; }
.olmock-window {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.olmock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F3F1EC;
  border-bottom: 1px solid var(--line-soft);
}
.olmock-send {
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-right: 6px;
}
.olmock-tool { color: var(--ink-mute); padding: 6px 8px; }
.olmock-addin {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--bordeaux);
  background: #fff;
  border: 1px solid var(--bordeaux);
  border-radius: 4px;
  padding: 5px 10px;
  box-shadow: 0 0 0 3px rgba(122, 44, 44, .12);
}
.olmock-addin img { display: block; }
.olmock-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 232px;
  min-height: 330px;
}
.olmock-mail { padding: 6px 18px 18px; min-width: 0; }
.olmock-field {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.olmock-field span { color: var(--ink-mute); min-width: 52px; }
.olmock-attachments { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0 2px; }
.olmock-chip {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 9px;
  background: var(--paper);
  font-size: 11.5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.olmock-chip small, .olmock-check small { color: var(--ink-mute); margin-left: 4px; }
.olmock-text { padding-top: 14px; line-height: 1.55; font-family: Calibri, 'Manrope', Arial, sans-serif; font-size: 13px; }
.olmock-text p { margin-bottom: 10px; }
.olmock-inserted {
  margin: 4px 0 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(184, 147, 90, .08);
  border-radius: 0 4px 4px 0;
}
.olmock-inserted p { margin-bottom: 2px; }
.olmock-link { color: #1a56db; text-decoration: underline; word-break: break-all; }
.olmock-meta { font-size: 11.5px; color: #666; }
.olmock-pane {
  border-left: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 14px 14px 16px;
  min-width: 0;
}
.olmock-pane-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.olmock-pane-head img { flex: 0 0 20px; }
.olmock-pane-head div { min-width: 0; }
.olmock-pane-head strong { display: block; font-family: 'Fraunces', serif; font-weight: 500; font-size: 14px; color: var(--ink); }
.olmock-pane-head small { display: block; color: var(--ink-mute); font-size: 10.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.olmock-h { font-weight: 700; color: var(--ink); margin: 12px 0 6px; font-size: 12.5px; }
.olmock-label { font-size: 10.5px; color: var(--ink-mute); margin: 8px 0 4px; }
.olmock-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  padding: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.olmock-check i {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--ink);
  position: relative;
}
.olmock-check i::after {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 1px;
  width: 3px;
  height: 6px;
  border: solid var(--paper);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.olmock-input, .olmock-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 11.5px;
}
.olmock-input-row, .olmock-copy { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.olmock-input-row em, .olmock-copy em { font-style: normal; font-size: 10.5px; font-weight: 700; color: var(--bordeaux); flex: 0 0 auto; }
.olmock-copy span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; }
.olmock-hint { font-size: 10.5px; color: var(--ink-mute); line-height: 1.45; margin: 6px 0 12px; }
.olmock-button {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-weight: 700;
  border-radius: 4px;
  padding: 9px 8px;
  font-size: 11.5px;
}
.olmock-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green-seal);
  font-size: 13px;
  margin: 4px 0 6px;
}

.olmock-muted { font-size: 11px; color: var(--ink-mute); line-height: 1.5; margin-bottom: 6px; }
.olmock figcaption { margin-top: 10px; font-size: 12px; color: var(--ink-mute); }

@media (max-width: 620px) {
  .olmock-body { grid-template-columns: 1fr; min-height: 0; }
  .olmock-pane { border-left: none; border-top: 1px solid var(--line-soft); }
  .olmock-tool { display: none; }
}
