.pmo-app-wrapper,
.pmo-app-wrapper * {
  box-sizing: border-box;
}

.pmo-app-wrapper {
  width: 100%;
  padding: 18px 28px 52px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(17, 24, 39, 0.035);
  border-radius: 10px;
  background: #fff;
}

.pmo-app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pmo-app-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111827;
  text-align: left;
}

.pmo-app-subtitle {
  font-size: 0.88rem;
  color: #6b7280;
  margin-top: 2px;
  text-align: left;
}

.pmo-project-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pmo-project-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.pmo-project-input {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  outline: none;
  min-width: 220px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pmo-project-input:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.pmo-meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.pmo-last-saved {
  font-size: 0.75rem;
  color: #9ca3af;
}

.pmo-overall-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.pmo-overall-green {
  background: #dcfce7;
  color: #15803d;
  border-color: #bbf7d0;
}

.pmo-overall-yellow {
  background: #fef9c3;
  color: #a16207;
  border-color: #fde68a;
}

.pmo-overall-red {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #fecaca;
}

.pmo-overall-grey {
  background: #f3f4f6;
  color: #6b7280;
  border-color: #e5e7eb;
}

.pmo-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e7eb;
  margin: 18px 0 22px;
  overflow-x: auto;
  flex-shrink: 0;
}

.pmo-tab {
  border: none;
  background: none;
  cursor: pointer;
  padding: 9px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  font-family: inherit;
}

.pmo-tab:hover {
  color: #1f2937;
}

.pmo-tab.is-active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  font-weight: 600;
}

.pmo-panel {
  display: none;
}

.pmo-panel.is-active {
  display: block;
}

.pmo-section-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.pmo-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

.pmo-section-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}

.pmo-btn {
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  font-family: inherit;
  transition: filter 0.12s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pmo-btn:active {
  transform: scale(0.97);
}

.pmo-btn:hover {
  filter: brightness(1.08);
}

.pmo-btn:disabled {
  opacity: 0.5;
  cursor: default;
  box-shadow: none;
}

.pmo-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.pmo-btn-secondary {
  background: #111827;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.pmo-btn-secondary:hover {
  filter: brightness(1.15);
}

.pmo-btn-ghost {
  background: #fff;
  color: #374151;
  box-shadow: none;
  border: 1px solid #e5e7eb;
}

.pmo-btn-ghost:hover {
  background: #f3f4f6;
  filter: none;
}

.pmo-btn-danger {
  background: #dc2626;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.pmo-btn-sm {
  padding: 3px 8px;
  font-size: 0.78rem;
}

.pmo-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pmo-status-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #fff;
  transition: box-shadow 0.15s, border-color 0.15s;
  position: relative;
  overflow: hidden;
}

.pmo-status-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.pmo-status-card-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
  transition: background 0.2s;
}

.pmo-ind-green {
  background: #16a34a;
}

.pmo-ind-yellow {
  background: #ca8a04;
}

.pmo-ind-red {
  background: #dc2626;
}

.pmo-ind-grey {
  background: #e5e7eb;
}

.pmo-status-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

.pmo-status-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pmo-status-card-current {
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 1px 7px;
}

.pmo-cur-green {
  background: #dcfce7;
  color: #15803d;
}

.pmo-cur-yellow {
  background: #fef9c3;
  color: #a16207;
}

.pmo-cur-red {
  background: #fee2e2;
  color: #b91c1c;
}

.pmo-cur-grey {
  background: #f3f4f6;
  color: #9ca3af;
}

.pmo-ampel-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pmo-ampel-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, opacity 0.15s;
  flex-shrink: 0;
  opacity: 0.35;
}

.pmo-ampel-dot:hover {
  transform: scale(1.12);
  opacity: 0.7;
}

.pmo-ampel-dot.is-active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pmo-ampel-green {
  background: #16a34a;
  border-color: #15803d;
}

.pmo-ampel-yellow {
  background: #ca8a04;
  border-color: #a16207;
}

.pmo-ampel-red {
  background: #dc2626;
  border-color: #b91c1c;
}

.pmo-ampel-grey {
  background: #d1d5db;
  border-color: #9ca3af;
}

.pmo-trend-row {
  display: flex;
  gap: 4px;
}

.pmo-trend-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, border-color 0.1s, color 0.1s;
  color: #9ca3af;
  font-family: inherit;
}

.pmo-trend-btn:hover {
  background: #f3f4f6;
  color: #374151;
}

.pmo-trend-btn.is-active {
  background: #eff6ff;
  border-color: #2563eb;
  color: #2563eb;
  font-weight: 700;
}

.pmo-status-textarea {
  width: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.81rem;
  font-family: inherit;
  resize: none;
  outline: none;
  background: #fafafa;
  color: #374151;
  min-height: 52px;
  line-height: 1.45;
  transition: border-color 0.15s, background 0.15s;
}

.pmo-status-textarea:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.pmo-status-summary {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.pmo-summary-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #374151;
  margin-right: 2px;
}

.pmo-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  padding: 2px 9px;
  font-size: 0.78rem;
  font-weight: 500;
}

.pmo-chip-green {
  background: #dcfce7;
  color: #15803d;
}

.pmo-chip-yellow {
  background: #fef9c3;
  color: #a16207;
}

.pmo-chip-red {
  background: #fee2e2;
  color: #b91c1c;
}

.pmo-chip-grey {
  background: #f3f4f6;
  color: #6b7280;
}

.pmo-fc-derived-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6366f1;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0.85;
}

.pmo-pendenzen-form {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  background: #f9fafb;
  margin-bottom: 14px;
}

.pmo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pmo-form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.pmo-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pmo-form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
}

.pmo-form-input,
.pmo-form-select,
.pmo-form-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 0.84rem;
  font-family: inherit;
  color: #1f2937;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.pmo-form-input:focus,
.pmo-form-select:focus,
.pmo-form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.pmo-form-textarea {
  resize: vertical;
  min-height: 60px;
}

.pmo-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pmo-filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pmo-filter-select {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.82rem;
  font-family: inherit;
  background: #fff;
  outline: none;
  color: #374151;
  cursor: pointer;
}

.pmo-filter-select:focus {
  border-color: #2563eb;
}

.pmo-pendenzen-table-wrap {
  overflow-x: auto;
}

.pmo-pendenzen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.pmo-pendenzen-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
  white-space: nowrap;
}

.pmo-pendenzen-table td {
  border-bottom: 1px solid #f3f4f6;
  padding: 7px 10px;
  vertical-align: middle;
  color: #374151;
}

.pmo-pendenzen-table tr:hover td {
  background: #fafafa;
}

.pmo-status-badge {
  display: inline-block;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}

.pmo-badge-offen {
  background: #fee2e2;
  color: #b91c1c;
}

.pmo-badge-arbeit {
  background: #fef9c3;
  color: #a16207;
}

.pmo-badge-done {
  background: #dcfce7;
  color: #15803d;
}

.pmo-badge-beschluss {
  background: #eff6ff;
  color: #2563eb;
}

.pmo-badge-risiko {
  background: #fef3c7;
  color: #92400e;
}

.pmo-badge-pendenz {
  background: #f3f4f6;
  color: #6b7280;
}

.pmo-prio-hoch {
  color: #b91c1c;
  font-weight: 700;
}

.pmo-prio-mittel {
  color: #a16207;
  font-weight: 600;
}

.pmo-prio-tief {
  color: #9ca3af;
}

.pmo-col-id {
  width: 36px;
  color: #9ca3af;
  font-size: 0.74rem;
}

.pmo-col-del {
  width: 34px;
  text-align: center;
}

.pmo-edit-inline {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.82rem;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: #1f2937;
  transition: border-color 0.12s, background 0.12s;
}

.pmo-edit-inline:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.pmo-empty-state {
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
  padding: 28px;
  border: 1px dashed #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
}

.pmo-protokoll-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 18px;
}

.pmo-protokoll-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.pmo-protokoll-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.pmo-protokoll-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 9px 11px;
  font-family: inherit;
  font-size: 0.84rem;
  resize: vertical;
  min-height: 90px;
  outline: none;
  color: #374151;
  background: #fff;
}

.pmo-protokoll-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.pmo-gates-phase {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.pmo-gates-phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f9fafb;
  cursor: pointer;
  gap: 10px;
  user-select: none;
  transition: background 0.12s;
}

.pmo-gates-phase-header:hover {
  background: #f3f4f6;
}

.pmo-gates-phase-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pmo-gates-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pmo-gates-progress-bar {
  width: 80px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.pmo-gates-progress-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 8px;
  transition: width 0.25s ease;
}

.pmo-gates-pct {
  font-size: 0.77rem;
  color: #6b7280;
  min-width: 32px;
  text-align: right;
}

.pmo-gates-toggle {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: transform 0.2s;
}

.pmo-gates-toggle.is-collapsed {
  transform: rotate(180deg);
}

.pmo-gates-body {
  padding: 10px 14px 12px;
  border-top: 1px solid #f3f4f6;
}

.pmo-gates-body.is-hidden {
  display: none;
}

.pmo-gate-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dashed #f3f4f6;
}

.pmo-gate-item:last-child {
  border-bottom: 0;
}

.pmo-gate-cb {
  width: 15px;
  height: 15px;
  accent-color: #2563eb;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.pmo-gate-text {
  font-size: 0.82rem;
  color: #374151;
  flex: 1;
  cursor: pointer;
  line-height: 1.4;
}

.pmo-gate-text.is-done {
  text-decoration: line-through;
  color: #9ca3af;
}

.pmo-gate-del {
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0 2px;
  line-height: 1;
  transition: color 0.1s;
  flex-shrink: 0;
}

.pmo-gate-del:hover {
  color: #dc2626;
}

.pmo-gate-add-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.pmo-gate-add-input {
  flex: 1;
  border: 1px dashed #d1d5db;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  background: #fafafa;
  color: #374151;
  transition: border-color 0.15s, background 0.15s;
}

.pmo-gate-add-input:focus {
  border-color: #2563eb;
  border-style: solid;
  background: #fff;
}

.pmo-steering-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.pmo-agenda-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 600px;
}

.pmo-agenda-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
  white-space: nowrap;
}

.pmo-agenda-table td {
  border-bottom: 1px solid #f3f4f6;
  padding: 6px 8px;
  vertical-align: top;
}

.pmo-agenda-table tr:hover td {
  background: #fafafa;
}

.pmo-agenda-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pmo-agenda-input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 0.82rem;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: #374151;
  transition: border-color 0.12s, background 0.12s;
}

.pmo-agenda-input:focus {
  border-color: #2563eb;
  background: #fff;
}

.pmo-agenda-min-input {
  width: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  text-align: center;
  color: #374151;
}

.pmo-agenda-min-input:focus {
  border-color: #2563eb;
}

.pmo-steering-export {
  border-top: 1px dashed #e5e7eb;
  padding-top: 14px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pmo-steering-export-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
}

.pmo-export-msg {
  font-size: 0.78rem;
  color: #047857;
  min-height: 16px;
}

.pmo-steering-textarea {
  margin-top: 10px;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.77rem;
  resize: vertical;
  background: #f9fafb;
  outline: none;
  color: #374151;
  transition: border-color 0.15s;
}

.pmo-steering-textarea:focus {
  border-color: #2563eb;
}

.pmo-io-bar {
  border-top: 1px dashed #e5e7eb;
  padding-top: 12px;
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.pmo-io-msg {
  font-size: 0.78rem;
  color: #047857;
}

.pmo-app-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media (min-width: 992px) {
  .pmo-app-wrapper {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
    margin-right: calc(50% - 50vw + 12px);
  }
}

.pmo-fc-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 20px;
  align-items: start;
}

.pmo-fc-inputs {
  min-width: 0;
}

.pmo-fc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pmo-fc-input-unit {
  display: flex;
  gap: 6px;
}

.pmo-fc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pmo-fc-slider {
  flex: 1;
  accent-color: #2563eb;
  height: 4px;
  cursor: pointer;
}

.pmo-fc-slider-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2563eb;
  min-width: 36px;
  text-align: right;
}

.pmo-fc-auto-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
  padding: 8px 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.pmo-fc-auto-label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
}

.pmo-fc-auto-chip {
  font-size: 0.75rem;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: 500;
  white-space: nowrap;
}

.pmo-fc-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pmo-fc-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.pmo-fc-kpi {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  overflow: hidden;
}

.pmo-fc-kpi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}

.pmo-fc-kpi-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pmo-fc-kpi-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.pmo-fc-kpi-sub {
  font-size: 0.72rem;
  color: #9ca3af;
}

.pmo-fc-kpi-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 10px 10px;
}

.pmo-fc-kpi.is-green {
  border-color: #bbf7d0;
}

.pmo-fc-kpi.is-green .pmo-fc-kpi-bar {
  background: #16a34a;
}

.pmo-fc-kpi.is-green .pmo-fc-kpi-value {
  color: #15803d;
}

.pmo-fc-kpi.is-yellow {
  border-color: #fde68a;
}

.pmo-fc-kpi.is-yellow .pmo-fc-kpi-bar {
  background: #ca8a04;
}

.pmo-fc-kpi.is-yellow .pmo-fc-kpi-value {
  color: #a16207;
}

.pmo-fc-kpi.is-red {
  border-color: #fecaca;
}

.pmo-fc-kpi.is-red .pmo-fc-kpi-bar {
  background: #dc2626;
}

.pmo-fc-kpi.is-red .pmo-fc-kpi-value {
  color: #b91c1c;
}

.pmo-fc-kpi.is-blue {
  border-color: #bfdbfe;
}

.pmo-fc-kpi.is-blue .pmo-fc-kpi-bar {
  background: #2563eb;
}

.pmo-fc-kpi.is-blue .pmo-fc-kpi-value {
  color: #1d4ed8;
}

.pmo-fc-verdict {
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  border: 1px solid transparent;
}

.pmo-fc-verdict-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.pmo-fc-verdict-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pmo-fc-verdict-title {
  font-weight: 700;
  font-size: 0.88rem;
}

.pmo-fc-verdict-desc {
  opacity: 0.85;
}

.pmo-fc-verdict.is-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.pmo-fc-verdict.is-yellow {
  background: #fefce8;
  border-color: #fde68a;
  color: #a16207;
}

.pmo-fc-verdict.is-orange {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
}

.pmo-fc-verdict.is-red {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.pmo-fc-dates-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pmo-fc-date-card {
  flex: 1;
  min-width: 140px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.pmo-fc-date-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.pmo-fc-date-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

.pmo-fc-date-val.is-late {
  color: #b91c1c;
}

.pmo-fc-date-val.is-ok {
  color: #15803d;
}

.pmo-fc-chart-wrap {
  margin-top: 4px;
}

.pmo-fc-narrative-wrap {
  margin-top: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.pmo-fc-narrative-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.pmo-fc-narrative-icon {
  font-size: 1.1rem;
}

.pmo-fc-narrative-text {
  padding: 14px 16px;
  font-size: 0.84rem;
  color: #374151;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pmo-fc-nar-block {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  align-items: flex-start;
}

.pmo-fc-nar-block.ok {
  background: #f0fdf4;
}

.pmo-fc-nar-block.warn {
  background: #fefce8;
}

.pmo-fc-nar-block.alert {
  background: #fff7ed;
}

.pmo-fc-nar-block.critical {
  background: #fef2f2;
}

.pmo-fc-nar-block.info {
  background: #eff6ff;
}

.pmo-fc-nar-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pmo-fc-nar-msg {
  flex: 1;
  color: #374151;
}

.pmo-fc-nar-title {
  font-weight: 700;
  margin-bottom: 1px;
}

.pmo-kpi-info-btn {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.45;
  flex-shrink: 0;
  font-family: inherit;
  color: inherit;
  transition: opacity 0.12s;
  padding: 0;
}

.pmo-kpi-info-btn:hover,
.pmo-kpi-info-btn:focus-visible {
  opacity: 1;
  outline: none;
}

.pmo-kpi-tooltip {
  position: absolute;
  z-index: 9990;
  background: #1f2937;
  color: #f9fafb;
  font-size: 0.78rem;
  line-height: 1.55;
  border-radius: 8px;
  padding: 10px 13px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
  font-family: system-ui, -apple-system, sans-serif;
}

.pmo-kpi-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pmo-fc-kpi-skeleton {
  border-color: #e5e7eb !important;
  pointer-events: none;
}

.pmo-fc-kpi-skeleton .pmo-fc-kpi-bar {
  background: #e5e7eb !important;
}

.pmo-fc-kpi-skel-val {
  height: 28px;
  width: 75%;
  background: linear-gradient(90deg, #f3f4f6 25%, #e9eaec 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: pmoSkelShimmer 1.6s infinite;
  border-radius: 6px;
  margin: 4px 0 6px;
}

.pmo-fc-kpi-skel-sub {
  height: 11px;
  width: 55%;
  background: linear-gradient(90deg, #f3f4f6 25%, #e9eaec 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: pmoSkelShimmer 1.6s infinite 0.2s;
  border-radius: 4px;
}

@keyframes pmoSkelShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.pmo-fc-demo-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pmo-fc-demo-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.pmo-fc-demo-meta {
  font-size: 0.76rem;
  color: #6b7280;
}

#pmoTabForecast[data-demo="true"] .pmo-fc-inputs .pmo-form-input,
#pmoTabForecast[data-demo="true"] .pmo-fc-inputs .pmo-form-select {
  background: #fbfdff;
  border-color: #dbeafe;
}

#pmoTabForecast[data-demo="true"] .pmo-fc-inputs .pmo-fc-auto-row {
  background: #f8fbff;
  border-color: #dbeafe;
}

.pmo-fc-demo-hint {
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

.pmo-fc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9ca3af;
  font-size: 0.85rem;
  padding: 40px 20px;
  border: 1px dashed #e5e7eb;
  border-radius: 10px;
  text-align: center;
}

.pmo-fc-empty-icon {
  font-size: 2rem;
}

.pmo-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  animation: pmofadeIn 0.15s ease;
}

@keyframes pmofadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pmo-confirm-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 24px;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  animation: pmoslideUp 0.18s ease;
}

@keyframes pmoslideUp {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pmo-confirm-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 2px;
}

.pmo-confirm-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.pmo-confirm-desc {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.55;
}

.pmo-confirm-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}

.pmo-confirm-actions .pmo-btn {
  flex: 1;
  justify-content: center;
  padding: 9px 12px;
}

@media (max-width: 1000px) {
  .pmo-fc-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .pmo-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pmo-form-grid {
    grid-template-columns: 1fr;
  }

  .pmo-form-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .pmo-steering-meta {
    grid-template-columns: 1fr;
  }

  .pmo-protokoll-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pmo-app-wrapper {
    padding: 18px 14px 40px;
  }

  .pmo-app-title {
    font-size: 1.2rem;
  }

  .pmo-status-grid {
    grid-template-columns: 1fr;
  }

  .pmo-form-grid-3 {
    grid-template-columns: 1fr;
  }

  .pmo-tabs {
    margin: 14px 0 18px;
  }

  .pmo-fc-form-grid {
    grid-template-columns: 1fr;
  }

  .pmo-fc-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.x25-pmo-embed {
  padding: 25px 0 0;
  background: linear-gradient(180deg, #fafbff 0, #f7f9ff 50%, #fafbff 100%);
}

.pmo-tool-link {
  color: #2563eb;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37, 99, 235, 0.35);
  font-weight: 650;
  transition: color 0.15s ease, text-decoration-color 0.15s ease, text-decoration-thickness 0.15s ease, text-underline-offset 0.15s ease;
}

.pmo-tool-link:hover,
.pmo-tool-link:focus-visible {
  color: #1d4ed8;
  text-decoration-line: underline;
  text-decoration-color: rgba(37, 99, 235, 0.6);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.pmo-tool-link:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (min-width: 992px) {
  .pmo-fc-narrative-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pmo-fc-nar-block {
    height: 100%;
  }
}

.pmo-calc-toast {
  position: fixed !important;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: 99999;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px 28px 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 420px;
  min-width: 300px;
  width: calc(100vw - 48px);
  border-left: 5px solid #e5e7eb;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  overflow: hidden;
}

.pmo-calc-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.pmo-calc-toast.is-hiding {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pmo-calc-toast.pmo-toast-green {
  border-left-color: #16a34a;
}

.pmo-calc-toast.pmo-toast-yellow {
  border-left-color: #ca8a04;
}

.pmo-calc-toast.pmo-toast-orange {
  border-left-color: #ea580c;
}

.pmo-calc-toast.pmo-toast-red {
  border-left-color: #dc2626;
}

.pmo-toast-icon {
  font-size: 1.55rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.pmo-toast-body {
  flex: 1;
  min-width: 0;
}

.pmo-toast-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.pmo-toast-metrics {
  font-size: 0.82rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 2px;
}

.pmo-toast-dates {
  font-size: 0.76rem;
  color: #6b7280;
}

.pmo-toast-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f3f4f6;
}

.pmo-toast-bar-fill {
  height: 100%;
  width: 100%;
  border-radius: 0 0 0 12px;
  background: #2563eb;
  transform-origin: left;
  transition: none;
}

.pmo-calc-toast.pmo-toast-green .pmo-toast-bar-fill {
  background: #16a34a;
}

.pmo-calc-toast.pmo-toast-yellow .pmo-toast-bar-fill {
  background: #ca8a04;
}

.pmo-calc-toast.pmo-toast-orange .pmo-toast-bar-fill {
  background: #ea580c;
}

.pmo-calc-toast.pmo-toast-red .pmo-toast-bar-fill {
  background: #dc2626;
}

.pmo-ms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.pmo-ms-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.15s;
  border-top-width: 3px;
}

.pmo-ms-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.pmo-ms-green {
  border-top-color: #16a34a;
}

.pmo-ms-yellow {
  border-top-color: #ca8a04;
}

.pmo-ms-red {
  border-top-color: #dc2626;
}

.pmo-ms-grey {
  border-top-color: #d1d5db;
}

.pmo-ms-blue {
  border-top-color: #2563eb;
}

.pmo-ms-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.pmo-ms-phase {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.pmo-ms-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.pmo-ms-notiz {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

.pmo-ms-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.pmo-ms-date {
  font-size: 0.78rem;
  color: #374151;
  font-weight: 600;
}

.pmo-ms-owner {
  font-size: 0.75rem;
  color: #9ca3af;
}

.pmo-ms-days {
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 5px;
  padding: 1px 6px;
  background: #f3f4f6;
  color: #374151;
  margin-left: auto;
}

.pmo-ms-days.overdue {
  background: #fee2e2;
  color: #b91c1c;
}

.pmo-ms-days.soon {
  background: #fef9c3;
  color: #a16207;
}

.pmo-ms-days.done {
  background: #dcfce7;
  color: #15803d;
}

.pmo-ms-status-sel {
  font-size: 0.74rem;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 2px 6px;
  background: #f9fafb;
  color: #374151;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.pmo-ms-del {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 4px;
  transition: color 0.1s;
}

.pmo-ms-del:hover {
  color: #dc2626;
}

.pmo-risiko-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}

.pmo-risk-score {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pmo-risk-tief {
  background: #dcfce7;
  color: #15803d;
}

.pmo-risk-mittel {
  background: #fef9c3;
  color: #a16207;
}

.pmo-risk-hoch {
  background: #fee2e2;
  color: #b91c1c;
}

.pmo-risk-krit {
  background: #4c0519;
  color: #fca5a5;
}

.pmo-risk-matrix-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.pmo-risk-matrix-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pmo-risk-matrix {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pmo-risk-matrix-row {
  display: flex;
  gap: 3px;
  align-items: center;
}

.pmo-risk-matrix-ylabel {
  width: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
  flex-shrink: 0;
}

.pmo-risk-matrix-xlabel {
  width: 40px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
  flex-shrink: 0;
}

.pmo-risk-matrix-xrow {
  margin-top: 1px;
}

.pmo-risk-matrix-cell {
  width: 40px;
  height: 36px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  transition: transform 0.1s;
  cursor: default;
  line-height: 1.2;
}

.pmo-risk-matrix-cell:hover {
  transform: scale(1.08);
  z-index: 2;
  position: relative;
}

.pmo-rm-tief {
  background: #dcfce7;
}

.pmo-rm-mittel {
  background: #fef9c3;
}

.pmo-rm-hoch {
  background: #fecaca;
}

.pmo-rm-krit {
  background: #7f1d1d;
  color: rgba(255, 255, 255, 0.6);
}

.pmo-rm-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  cursor: pointer;
  margin: 0 1px;
}

.pmo-rm-krit .pmo-rm-dot {
  background: rgba(255, 255, 255, 0.3);
}

.pmo-risk-matrix-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  align-items: center;
}

.pmo-risk-matrix-legend span {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 4px;
}

.pmo-rm-tief-legend {
  background: #dcfce7;
  color: #15803d;
}

.pmo-rm-mittel-legend {
  background: #fef9c3;
  color: #a16207;
}

.pmo-rm-hoch-legend {
  background: #fecaca;
  color: #b91c1c;
}

.pmo-rm-krit-legend {
  background: #7f1d1d;
  color: #fca5a5;
}

.pmo-risk-matrix-axis {
  font-size: 0.65rem;
  color: #9ca3af;
  font-style: italic;
  margin-left: auto;
}

@media (max-width: 900px) {
  .pmo-risiko-layout {
    grid-template-columns: 1fr;
  }

  .pmo-ms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pmo-ms-grid {
    grid-template-columns: 1fr;
  }

  .pmo-calc-toast {
    left: 50%;
    right: auto;
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }
}

.pmo-fc-kpi-desc {
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.45;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #f3f4f6;
}

.pmo-fc-toolbar {
  align-items: flex-start;
}

.pmo-top-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 0;
}

.pmo-top-actions-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pmo-top-actions-row .pmo-btn {
  white-space: nowrap;
}

.pmo-top-actions-msg {
  min-height: 16px;
  font-size: 0.78rem;
  color: #047857;
  text-align: right;
}

.pmo-io-bar,
#pmoIoTa,
#pmoSteeringExportTa {
  display: none !important;
}

@media (max-width: 900px) {
  .pmo-fc-toolbar {
    align-items: flex-start;
  }

  .pmo-top-actions {
    width: 100%;
    align-items: flex-start;
  }

  .pmo-top-actions-row {
    justify-content: flex-start;
  }

  .pmo-top-actions-msg {
    text-align: left;
  }
}

.pmo-fc-toolbar {
  align-items: flex-start;
}

.pmo-top-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 0;
}

.pmo-top-actions-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pmo-top-actions-row .pmo-btn {
  white-space: nowrap;
}

.pmo-top-actions-msg {
  min-height: 16px;
  font-size: 0.78rem;
  color: #047857;
  text-align: right;
}

.pmo-io-bar,
#pmoIoTa,
#pmoSteeringExportTa {
  display: none !important;
}

@media (max-width: 900px) {
  .pmo-fc-toolbar {
    align-items: flex-start;
  }

  .pmo-top-actions {
    width: 100%;
    align-items: flex-start;
  }

  .pmo-top-actions-row {
    justify-content: flex-start;
  }

  .pmo-top-actions-msg {
    text-align: left;
  }
}