/* P7 SIM management. All feature styles are scoped to .office-sim-* classes. */

.workspace-view-tabs {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 4px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.workspace-view-tabs .view-tab {
  flex: 0 0 auto;
  min-width: max-content;
  min-height: 44px;
  padding: 0 14px;
  white-space: nowrap;
}

.office-sim-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.office-sim-page {
  min-width: 0;
}

.office-sim-content {
  min-width: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.office-sim-full-panel,
.office-sim-content > .office-sim-panel,
.office-sim-content > .office-sim-access {
  grid-column: 1 / -1;
}

.office-sim-panel,
.office-sim-summary {
  min-width: 0;
  border: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
  border-radius: 17px;
  color: var(--ref-text, #eaf5ff);
  background: linear-gradient(145deg, rgba(18, 43, 70, .98), rgba(7, 26, 47, .98));
  box-shadow: inset 0 1px rgba(255, 255, 255, .045), 0 12px 30px rgba(0, 0, 0, .14);
}

.office-sim-panel h2,
.office-sim-panel h3,
.office-sim-summary h2,
.office-sim-summary h3 {
  margin: 0;
  color: var(--ref-text, #eaf5ff);
}

.office-sim-panel p,
.office-sim-summary p {
  color: var(--ref-muted, #8fa8c1);
}

.office-sim-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--ref-cyan, #66d7ff);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.office-sim-section-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
}

.office-sim-section-heading > div {
  min-width: 0;
}

.office-sim-section-heading h2 {
  font-size: 17px;
  line-height: 1.25;
}

.office-sim-section-heading h3 {
  font-size: 15px;
  line-height: 1.25;
}

.office-sim-section-heading > span,
.office-sim-summary-note {
  flex: 0 0 auto;
  color: var(--ref-muted, #8fa8c1);
  font-size: 11px;
  font-weight: 750;
}

.office-sim-button,
.office-sim-action-type {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(147, 202, 255, .3);
  border-radius: 10px;
  color: var(--ref-text, #eaf5ff);
  background: rgba(9, 31, 54, .9);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.office-sim-button:hover,
.office-sim-action-type:hover {
  border-color: rgba(102, 215, 255, .72);
  background: rgba(20, 58, 94, .96);
}

.office-sim-button:active,
.office-sim-action-type:active {
  transform: translateY(1px);
}

.office-sim-button:disabled,
.office-sim-action-type:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.office-sim-button--primary {
  border-color: rgba(113, 194, 255, .62);
  color: #fff;
  background: linear-gradient(145deg, #5aa8ff, #176be5 52%, #07449f);
  box-shadow: inset 0 1px rgba(255, 255, 255, .26), 0 7px 16px rgba(0, 73, 176, .25);
}

.office-sim-button--secondary {
  color: var(--ref-muted, #9bb0c4);
  background: rgba(6, 23, 41, .82);
}

.office-sim-button--danger {
  border-color: rgba(255, 108, 127, .68);
  color: #fff;
  background: linear-gradient(145deg, #dd526a, #a32442 58%, #681329);
  box-shadow: inset 0 1px rgba(255, 255, 255, .2), 0 7px 16px rgba(125, 18, 48, .26);
}

.office-sim-button--compact {
  min-width: 72px;
  min-height: 44px;
  padding: 0 10px;
}

.office-sim-button:focus-visible,
.office-sim-action-type:focus-visible,
.office-sim-content :is(input, select, textarea, summary):focus-visible,
.office-sim-table-region:focus-visible {
  outline: 3px solid rgba(128, 226, 255, .94);
  outline-offset: 2px;
}

.office-sim-page-tools {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
  border-radius: 14px;
  color: var(--ref-text, #eaf5ff);
  background: rgba(8, 28, 49, .76);
}

.office-sim-page-tools > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-sim-page-tools > div:first-child {
  display: grid;
  gap: 3px;
}

.office-sim-page-tools strong {
  color: var(--ref-text, #eaf5ff);
  font-size: 15px;
}

.office-sim-page-tools span {
  color: var(--ref-muted, #8fa8c1);
  font-size: 11px;
}

.office-sim-summary {
  overflow: hidden;
}

.office-sim-summary-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
}

.office-sim-stat {
  position: relative;
  min-width: 92px;
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(113, 178, 228, .18);
  border-radius: 13px;
  background: rgba(5, 22, 40, .68);
}

.office-sim-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: currentColor;
  opacity: .8;
}

.office-sim-stat span {
  color: var(--ref-muted, #8fa8c1);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
}

.office-sim-stat strong {
  color: currentColor;
  font-size: 25px;
  line-height: 1;
}

.office-sim-tone--good { color: var(--ref-green, #56e6ae); }
.office-sim-tone--cyan { color: var(--ref-cyan, #66d7ff); }
.office-sim-tone--blue { color: #82b8ff; }
.office-sim-tone--wait { color: var(--ref-amber, #ffc56c); }
.office-sim-tone--hot { color: #ff8093; }
.office-sim-tone--muted { color: var(--ref-muted, #8fa8c1); }

.office-sim-registration-collapsed {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.office-sim-registration-collapsed > div {
  min-width: 0;
}

.office-sim-registration-collapsed h2 {
  font-size: 16px;
}

.office-sim-registration-collapsed p {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

.office-sim-registration {
  overflow: hidden;
}

.office-sim-form,
.office-sim-event-form {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 14px 16px 16px;
}

.office-sim-event-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(102, 175, 229, .24);
  border-radius: 12px;
  background: rgba(5, 21, 38, .56);
}

.office-sim-event-form legend {
  padding: 0 7px;
  color: var(--ref-text, #eaf5ff);
  font-size: 12px;
  font-weight: 900;
}

.office-sim-form-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.office-sim-form-grid label,
.office-sim-filters label {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
}

.office-sim-form-grid label > span,
.office-sim-filters label > span,
.office-sim-access-form > label {
  color: var(--ref-text, #eaf5ff);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}

.office-sim-form-grid input,
.office-sim-form-grid select,
.office-sim-form-grid textarea,
.office-sim-filters input,
.office-sim-filters select,
.office-sim-access-form input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(147, 202, 255, .32);
  border-radius: 9px;
  color: var(--ref-text, #eaf5ff);
  background: #071b35;
  font: inherit;
  font-size: 13px;
}

.office-sim-form-grid textarea {
  min-height: 92px;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
}

.office-sim-form-grid small,
.office-sim-access small {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
  line-height: 1.4;
}

.office-sim-form-span {
  grid-column: 1 / -1;
}

.office-sim-form-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.office-sim-form-actions > span {
  color: var(--ref-muted, #8fa8c1);
  font-size: 11px;
}

.office-sim-form-actions > span strong {
  color: var(--ref-cyan, #66d7ff);
}

.office-sim-feedback {
  min-width: 0;
  margin: 10px 16px 16px;
  padding: 10px 12px;
  border: 1px solid rgba(104, 178, 232, .28);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.office-sim-feedback--error {
  border-color: rgba(255, 98, 123, .48);
  color: #ffd7de !important;
  background: rgba(91, 20, 42, .5);
}

.office-sim-feedback--success {
  border-color: rgba(86, 230, 174, .4);
  color: var(--ref-green, #56e6ae) !important;
  background: rgba(7, 65, 54, .42);
}

.office-sim-feedback--warning {
  border-color: rgba(255, 197, 108, .44);
  color: #ffe1af !important;
  background: rgba(83, 55, 13, .48);
}

#app .office-sim-access {
  width: min(720px, 100%);
  justify-self: center;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.office-sim-access h2 {
  font-size: 21px;
}

.office-sim-access p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.office-sim-access .office-sim-feedback {
  margin: 0;
}

.office-sim-access-form {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.office-sim-inline-controls {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.office-sim-list-card {
  grid-column: span 7;
  overflow: hidden;
}

.office-sim-detail-card {
  grid-column: span 5;
  overflow: hidden;
}

.office-sim-filters {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 12px;
  border-bottom: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
  background: rgba(5, 21, 38, .42);
}

.office-sim-filter-actions {
  min-width: 0;
  display: flex;
  align-items: end;
  gap: 8px;
}

.office-sim-table-region {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.office-sim-table {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  color: var(--ref-text, #eaf5ff);
  font-size: 12px;
}

.office-sim-table th,
.office-sim-table td {
  min-width: 0;
  padding: 10px 9px;
  border-bottom: 1px solid rgba(104, 170, 220, .15);
  text-align: left;
  vertical-align: middle;
}

.office-sim-table th {
  color: var(--ref-muted, #8fa8c1);
  background: rgba(18, 72, 123, .3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

.office-sim-table tbody tr {
  background: rgba(5, 21, 38, .34);
  transition: background-color .15s ease;
}

.office-sim-table tbody tr:hover {
  background: rgba(26, 72, 111, .36);
}

.office-sim-table tbody tr.office-sim-row--selected {
  background: rgba(45, 121, 181, .28);
  box-shadow: inset 3px 0 var(--ref-cyan, #66d7ff);
}

.office-sim-table td code,
.office-sim-detail-field code {
  color: #d8eeff;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.office-sim-table td strong,
.office-sim-table td small {
  display: block;
}

.office-sim-table td small {
  margin-top: 3px;
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
}

.office-sim-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(4, 20, 37, .58);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.office-sim-status::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.office-sim-attention {
  min-width: 28px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ref-muted, #8fa8c1);
  background: rgba(105, 129, 150, .12);
  font-weight: 900;
}

.office-sim-attention--active {
  color: #fff;
  background: #b12c4c;
  box-shadow: 0 0 10px rgba(255, 80, 112, .28);
}

.office-sim-text--danger {
  color: #ff9bab !important;
  font-weight: 850;
}

.office-sim-load-more {
  display: flex;
  justify-content: center;
  padding: 12px;
}

.office-sim-empty,
.office-sim-loading {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 24px;
  color: var(--ref-muted, #8fa8c1);
  text-align: center;
}

.office-sim-empty strong,
.office-sim-loading strong {
  color: var(--ref-text, #eaf5ff);
  font-size: 14px;
}

.office-sim-empty span {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.5;
}

.office-sim-empty--compact {
  min-height: 92px;
  padding: 14px;
  border: 1px dashed rgba(104, 170, 220, .25);
  border-radius: 10px;
}

.office-sim-empty--error {
  color: #ffd2da;
  background: rgba(83, 16, 38, .28);
}

.office-sim-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(102, 215, 255, .2);
  border-top-color: var(--ref-cyan, #66d7ff);
  border-radius: 50%;
  animation: officeSimSpin .8s linear infinite;
}

@keyframes officeSimSpin {
  to { transform: rotate(360deg); }
}

.office-sim-detail-heading-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.office-sim-detail-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.office-sim-detail-field {
  min-width: 0;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(104, 170, 220, .16);
  border-radius: 10px;
  background: rgba(5, 21, 38, .46);
}

.office-sim-detail-field > span {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
  font-weight: 850;
}

.office-sim-detail-field > strong,
.office-sim-detail-field > time {
  min-width: 0;
  color: var(--ref-text, #eaf5ff);
  font-size: 12px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.office-sim-timeline-section,
.office-sim-actions {
  min-width: 0;
  border-top: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
}

.office-sim-timeline {
  min-width: 0;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 12px 16px 16px;
  list-style: none;
}

.office-sim-timeline-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 0 0 16px;
}

.office-sim-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: -2px;
  left: 8px;
  width: 1px;
  background: rgba(111, 173, 222, .28);
}

.office-sim-timeline-dot {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border: 4px solid #0c2946;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.office-sim-timeline-body {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid rgba(104, 170, 220, .16);
  border-radius: 10px;
  color: var(--ref-text, #eaf5ff);
  background: rgba(5, 21, 38, .44);
}

.office-sim-timeline-body > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.office-sim-timeline-body strong {
  color: currentColor;
  font-size: 12px;
}

.office-sim-timeline-body time,
.office-sim-timeline-body small {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
}

.office-sim-timeline-body p {
  margin: 0;
  color: #c9daea;
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.office-sim-timeline-body details {
  color: var(--ref-muted, #8fa8c1);
  font-size: 11px;
}

.office-sim-timeline-body summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.office-sim-actions {
  padding-bottom: 4px;
}

.office-sim-action-types {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 16px;
}

.office-sim-action-type {
  min-width: 0;
  color: var(--ref-muted, #8fa8c1);
  white-space: normal;
}

.office-sim-action-type[aria-pressed="true"] {
  border-color: currentColor;
  color: currentColor;
  background: rgba(34, 85, 126, .42);
  box-shadow: inset 0 0 0 1px currentColor, 0 0 14px rgba(80, 173, 235, .13);
}

.office-sim-action-hint {
  margin: 0 16px 16px;
  padding: 11px 12px;
  border: 1px dashed rgba(104, 170, 220, .3);
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
}

.office-sim-impact-confirmation {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 98, 123, .48);
  border-radius: 11px;
  color: #ffd7de;
  background: rgba(91, 20, 42, .5);
  font-size: 12px;
  line-height: 1.5;
}

.office-sim-impact-confirmation input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #e14464;
}

.office-sim-impact-confirmation strong {
  color: #fff;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

@media (max-width: 1320px) {
  .office-sim-list-card,
  .office-sim-detail-card {
    grid-column: 1 / -1;
  }

  .office-sim-summary-grid {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
  }
}

@media (max-width: 1040px) {
  .workspace-view-tabs {
    padding-bottom: 10px;
  }

  .office-sim-form-grid,
  .office-sim-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-sim-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-sim-action-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .office-sim-summary-grid {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }
}

@media (max-width: 900px) {
  .office-sim-table {
    min-width: 0;
  }

  .office-sim-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .office-sim-table,
  .office-sim-table tbody {
    display: block;
  }

  .office-sim-table tbody {
    padding: 10px;
  }

  .office-sim-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    margin-bottom: 10px;
    padding: 11px;
    border: 1px solid rgba(104, 170, 220, .18);
    border-radius: 11px;
  }

  .office-sim-table td {
    display: grid;
    align-content: start;
    gap: 3px;
    padding: 0;
    border: 0;
    overflow-wrap: anywhere;
  }

  .office-sim-table td::before {
    content: attr(data-label);
    color: var(--ref-muted, #8fa8c1);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .04em;
  }
}

@media (max-width: 760px) {
  .workspace-view-tabs {
    margin-inline: -2px;
    padding-inline: 2px;
  }

  .workspace-view-tabs .view-tab {
    min-height: 44px;
  }

  .office-sim-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .office-sim-full-panel,
  .office-sim-content > .office-sim-panel,
  .office-sim-content > .office-sim-access,
  .office-sim-list-card,
  .office-sim-detail-card {
    grid-column: auto;
  }

  .office-sim-page-tools,
  .office-sim-section-heading,
  .office-sim-registration-collapsed {
    align-items: stretch;
    flex-direction: column;
  }

  .office-sim-page-tools > div:last-child,
  .office-sim-detail-heading-actions {
    justify-content: stretch;
  }

  .office-sim-page-tools > div:last-child .office-sim-button,
  .office-sim-detail-heading-actions .office-sim-button {
    flex: 1 1 auto;
  }

  .office-sim-section-heading > span,
  .office-sim-summary-note {
    align-self: flex-start;
  }

  .office-sim-action-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .workspace-view-tabs {
    gap: 6px;
  }

  .workspace-view-tabs .view-tab {
    padding-inline: 12px;
  }

  .office-sim-form-grid,
  .office-sim-filters,
  .office-sim-detail-grid,
  .office-sim-action-types,
  .office-sim-summary-grid,
  .office-sim-table tbody tr,
  .office-sim-inline-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .office-sim-page-tools > div:last-child,
  .office-sim-filter-actions,
  .office-sim-form-actions,
  .office-sim-detail-heading-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .office-sim-page-tools .office-sim-button,
  .office-sim-filter-actions .office-sim-button,
  .office-sim-form-actions .office-sim-button,
  .office-sim-registration-collapsed .office-sim-button,
  .office-sim-detail-heading-actions .office-sim-button {
    width: 100%;
  }

  #app .office-sim-access {
    padding: 18px 14px;
  }

  .office-sim-form,
  .office-sim-event-form,
  .office-sim-section-heading,
  .office-sim-action-types,
  .office-sim-timeline,
  .office-sim-filters {
    padding-right: 12px;
    padding-left: 12px;
  }

  .office-sim-timeline-body > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .office-sim-spinner {
    animation: none !important;
  }

  .office-sim-button,
  .office-sim-action-type,
  .office-sim-table tbody tr {
    transition: none !important;
  }
}
