@font-face {
  font-family: Studio;
  src: local("Avenir Next");
  font-display: swap;
}
:root {
  color-scheme: light;
  --bg: #f7f8f7;
  --surface: #fff;
  --ink: #172d29;
  --muted: #64736f;
  --line: #e2e8e5;
  --accent: #125b52;
  --accent-hover: #0b4941;
  --soft: #eaf2ee;
  --danger: #a93835;
  --shadow: 0 20px 70px #0e342522;
  --radius: 18px;
  font-family:
    Studio,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
button:disabled {
  opacity: 0.35;
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #2c9585;
  outline-offset: 3px;
}
a {
  color: var(--accent);
}
button svg {
  pointer-events: none;
}
svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  border: 0;
  background: none;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: var(--surface);
  padding: 12px;
}
.skip-link:focus {
  top: 8px;
}
.app-header {
  height: 88px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  position: relative;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -1.1px;
  color: var(--ink);
}
.brand-note {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 14px;
  border-left: 1px solid var(--line);
  padding: 5px 0 5px 24px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 29px;
  height: 33px;
}
.brand-mark i {
  width: 7px;
  height: 19px;
  border: 1.7px solid var(--accent);
  border-radius: 2px;
}
.brand-mark i:first-child {
  transform: translateY(5px);
  opacity: 0.5;
}
.brand-mark i:last-child {
  transform: translateY(-5px);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.quiet-label {
  color: var(--muted);
  font-size: 13px;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex: none;
}
.icon-button:hover:not(:disabled) {
  background: var(--soft);
}
.button {
  min-height: 46px;
  padding: 11px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
}
.button-primary {
  background: var(--accent);
  color: #fff;
}
.button-primary:hover:not(:disabled) {
  background: var(--accent-hover);
}
.button-outline {
  border: 1px solid var(--line);
  background: var(--surface);
}
.button-danger {
  background: var(--danger);
  color: white;
}
.text-button {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  min-height: 44px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.9px;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 9px;
}
.app-layout {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  min-height: calc(100dvh - 88px);
}
.sidebar {
  border-right: 1px solid var(--line);
  background: var(--surface);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
}
.sidebar-title h2 {
  font-size: 14px;
  font-weight: 650;
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-card {
  border: 1px solid transparent;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 13px;
  width: 100%;
  min-width: 0;
}
.project-card.active {
  background: var(--soft);
  border-color: #d6e6dd;
}
.project-card:hover {
  background: var(--bg);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 39px;
  height: 43px;
  flex: none;
  overflow: hidden;
  border-radius: 5px;
  background: #dce6e0;
}
.mini-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-grid span {
  background: #dce6e0;
}
.project-card-label {
  min-width: 0;
  flex: 1;
}
.project-card strong {
  font-size: 14px;
  font-weight: 600;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}
.new-project-button {
  border: 1px dashed #cedbd4;
  min-height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.sidebar-foot {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding: 30px 10px 0;
  color: var(--accent);
}
.sidebar-foot p {
  font-size: 12px;
  line-height: 1.7;
}
.sidebar-foot span {
  color: var(--muted);
}
.sidebar-foot svg {
  width: 17px;
}
.workspace {
  max-width: 1220px;
  width: 100%;
  padding: 40px 60px 34px;
  margin: 0 auto;
  outline: 0;
}
.workspace-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 31px;
}
h1 {
  font-size: 30px;
  letter-spacing: -1px;
  font-weight: 620;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.project-meta {
  font-size: 14px;
  color: var(--muted);
  margin-top: 9px;
}
.project-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.canvas-tools {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 14px;
  margin-bottom: 25px;
}
.tool-group {
  display: flex;
  gap: 6px;
}
.tool {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--muted);
}
.tool span:not([data-icon]) {
  font-size: 12px;
  opacity: 0.8;
}
.tool.active {
  background: var(--surface);
  box-shadow: 0 1px 4px #163e1810;
  color: var(--accent);
  font-weight: 600;
}
.tool:hover {
  background: var(--soft);
}
.tool svg {
  width: 17px;
  height: 17px;
}
.grid-area {
  min-height: 390px;
  position: relative;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 26px 16px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-height: 430px;
}
.empty-grid {
  display: grid;
  grid-template-columns: repeat(3, 26px);
  grid-template-rows: repeat(3, 31px);
  gap: 5px;
  transform: rotate(-5deg);
  margin-bottom: 27px;
}
.empty-grid span {
  background: #eaf1ed;
  border: 1px solid #deebe3;
  border-radius: 4px;
}
.empty-grid span:nth-child(3n + 1) {
  background: #dceae2;
}
.empty-grid span:nth-child(3n) {
  background: #d3e4da;
}
.empty-grid .empty-center {
  background: var(--accent);
  border-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.empty-center svg {
  width: 18px;
}
.empty-state h2 {
  font-size: 24px;
  letter-spacing: -0.55px;
  font-weight: 600;
  margin-bottom: 12px;
}
.empty-state p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 23px;
}
.empty-state .text-button {
  margin-top: 3px;
}
.empty-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 17px;
}
.empty-note svg {
  width: 14px;
  height: 14px;
}
.feed-grid {
  --columns: 3;
  --ratio: 0.75;
  --gap: 3px;
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: var(--gap);
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}
.photo-tile {
  position: relative;
  min-width: 0;
  aspect-ratio: var(--ratio);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--soft);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  display: block;
}
.photo-tile canvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.photo-tile.selected {
  outline: 4px solid var(--accent);
  outline-offset: -4px;
  z-index: 1;
}
.photo-tile.dragging {
  opacity: 0.5;
  outline: 4px solid #f0db92;
  outline-offset: -4px;
}
.photo-tile.drop-target {
  outline: 4px solid #f0db92;
  outline-offset: -4px;
  z-index: 1;
}
.tile-number {
  position: absolute;
  left: 9px;
  bottom: 9px;
  color: #fff;
  background: #162e2477;
  backdrop-filter: blur(6px);
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.tile-error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  padding: 8px;
}
.grid-caption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 17px;
  font-size: 12px;
  color: var(--muted);
}
.editor-toolbar {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding-top: 18px;
}
.history-buttons {
  display: flex;
  gap: 2px;
}
.progress-panel {
  padding: 18px;
  background: var(--soft);
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.progress-panel strong {
  font-size: 14px;
  display: block;
}
.progress-panel span {
  font-size: 12px;
  color: var(--muted);
}
progress {
  width: 130px;
  accent-color: var(--accent);
}
dialog {
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: 22px;
  width: min(480px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  box-shadow: var(--shadow);
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #102d2866;
  backdrop-filter: blur(4px);
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 13px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 4;
}
.dialog-head h2 {
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.4px;
}
.dialog-body {
  padding: 22px;
}
.dialog-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.field {
  display: block;
  margin: 18px 0;
}
.field > span,
.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 9px;
}
.field input[type="text"],
.field select {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 10px;
  width: 100%;
  padding: 13px;
  font-size: 16px;
}
.field input[type="range"] {
  display: block;
  width: 100%;
  min-height: 36px;
  accent-color: var(--accent);
}
.field-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.field-line output {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.menu-actions {
  display: grid;
  gap: 3px;
}
.menu-actions button {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 10px;
  min-height: 47px;
  border-radius: 9px;
  text-align: left;
  font-size: 15px;
}
.menu-actions button:hover {
  background: var(--soft);
}
.menu-actions .danger {
  color: var(--danger);
}
.menu-divider {
  border-top: 1px solid var(--line);
  margin: 10px 0;
}
.dialog-photo {
  max-height: 260px;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--soft);
}
.crop-preview {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  background: #11251f;
  border-radius: 12px;
}
.option-segments {
  display: flex;
  gap: 6px;
  background: var(--bg);
  padding: 4px;
  border-radius: 11px;
  margin: 18px 0;
}
.option-segments button {
  flex: 1;
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}
.option-segments button.active {
  background: var(--accent);
  color: #fff;
}
.notice {
  background: var(--soft);
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 18px;
}
.notice strong {
  color: var(--ink);
}
.dialog-error {
  color: var(--danger);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.5;
}
.help-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 20px 0;
}
.help-step b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex: none;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent);
  font-size: 13px;
}
.help-step p {
  padding-top: 2px;
}
.preview-dialog {
  width: min(560px, calc(100% - 24px));
}
.preview-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
}
.preview-avatar {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.preview-header h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  overflow-wrap: anywhere;
}
.preview-header p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
.preview-grid {
  border-radius: 0;
}
.preview-footer {
  padding: 18px 24px;
  line-height: 1.6;
  font-size: 12px;
  color: var(--muted);
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--surface);
  border-radius: 12px;
  padding: 14px 20px;
  max-width: calc(100% - 28px);
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 100;
  line-height: 1.5;
}
.boot-error {
  position: fixed;
  inset: auto 16px 16px;
  background: #a93835;
  color: white;
  padding: 20px;
  border-radius: 14px;
  z-index: 110;
}
.mobile-only {
  display: none;
}
.dialog-full-button {
  width: 100%;
  margin-top: 16px;
}
.about-version {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.storage-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  margin: 15px 0;
}
.keyboard-key {
  border: 1px solid var(--line);
  padding: 1px 5px;
  border-radius: 4px;
}
.error-list {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
}
@media (min-width: 1500px) {
  .workspace {
    padding-top: 55px;
  }
  .grid-area {
    min-height: 480px;
  }
  .empty-state {
    min-height: 490px;
  }
}
@media (max-width: 1000px) {
  .workspace {
    padding: 30px 30px;
  }
  .app-layout {
    grid-template-columns: 225px minmax(0, 1fr);
  }
  .brand-note {
    display: none;
  }
  .app-header {
    padding: 0 25px;
  }
}
@media (max-width: 700px) {
  .app-header {
    height: 70px;
    padding: calc(env(safe-area-inset-top) + 0px) 18px 0;
    height: calc(70px + env(safe-area-inset-top));
    background: var(--surface);
  }
  .brand {
    font-size: 24px;
    gap: 10px;
  }
  .header-actions {
    gap: 0;
  }
  .header-actions > .quiet-label {
    display: none;
  }
  .app-layout {
    display: block;
    min-height: calc(100dvh - 70px);
  }
  .sidebar {
    display: none;
  }
  .workspace {
    padding: 24px 16px 110px;
  }
  .workspace-heading {
    margin-bottom: 22px;
    gap: 4px;
    align-items: flex-end;
  }
  h1 {
    font-size: 27px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .project-meta {
    font-size: 12px;
    margin-top: 7px;
  }
  .project-actions {
    gap: 0;
  }
  .project-actions .button {
    padding: 10px 13px;
    min-height: 42px;
  }
  .project-actions .icon-button {
    width: 38px;
  }
  .canvas-tools {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .tool {
    padding: 8px 10px;
    gap: 6px;
    font-size: 13px;
  }
  .tool span:not([data-icon]) {
    font-size: 11px;
  }
  .mobile-only {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    min-height: 25px;
  }
  .mobile-only svg {
    width: 12px;
    height: 12px;
  }
  .desktop-only {
    display: none;
  }
  .grid-area {
    min-height: unset;
  }
  .empty-state {
    min-height: 410px;
    padding: 30px 12px;
    border-radius: 16px;
  }
  .empty-state h2 {
    font-size: 22px;
  }
  .empty-state p {
    font-size: 14px;
  }
  .empty-grid {
    grid-template-columns: repeat(3, 24px);
    grid-template-rows: repeat(3, 29px);
    margin-bottom: 26px;
  }
  .feed-grid {
    border-radius: 3px;
  }
  .grid-caption {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    margin-top: 15px;
    gap: 6px;
  }
  .editor-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    margin: 0;
    background: var(--surface);
    z-index: 10;
    border-top: 1px solid var(--line);
    box-shadow: 0 -5px 20px #123e2204;
  }
  .editor-toolbar .quiet-label {
    font-size: 11px;
  }
  .editor-toolbar .button {
    min-height: 44px;
    padding: 10px 16px;
  }
  .history-buttons {
    gap: 0;
  }
  .history-buttons .icon-button {
    width: 38px;
  }
  .toast {
    bottom: calc(92px + env(safe-area-inset-bottom));
    font-size: 13px;
    width: max-content;
  }
  .dialog-body {
    padding: 20px;
  }
  .dialog-head {
    padding: 13px 16px 10px;
  }
  .progress-panel {
    flex-wrap: wrap;
    padding: 14px;
    gap: 10px;
  }
  .progress-panel progress {
    flex: 1;
  }
  .photo-tile .tile-number {
    left: 5px;
    bottom: 5px;
    font-size: 10px;
    height: 20px;
    min-width: 20px;
  }
  .preview-header {
    padding: 20px;
  }
  .preview-dialog {
    width: calc(100% - 20px);
  }
  .project-list.in-dialog .project-card {
    padding: 15px;
  }
  .empty-note {
    font-size: 11px;
  }
  dialog {
    max-height: calc(100dvh - 24px - env(safe-area-inset-top));
  }
  .project-actions .button span:not([data-icon]) {
    font-size: 13px;
  }
}
@media (max-width: 370px) {
  .workspace {
    padding-left: 12px;
    padding-right: 12px;
  }
  .project-actions .button {
    padding: 9px;
  }
  .project-actions .button span:not([data-icon]) {
    display: none;
  }
  .editor-toolbar .quiet-label {
    display: none;
  }
  .header-actions .icon-button {
    width: 39px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  button {
    transition:
      background 0.15s,
      opacity 0.15s;
  }
  .photo-tile {
    transition: opacity 0.12s;
  }
  dialog[open] {
    animation: appear 0.18s ease-out;
  }
  @keyframes appear {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #12201d;
  --surface: #192b25;
  --ink: #e8f2ec;
  --muted: #a5b7ac;
  --line: #2f4439;
  --accent: #a8dcc3;
  --accent-hover: #c0e8d6;
  --soft: #263e32;
  --danger: #df9b94;
  --shadow: 0 20px 70px #0008;
}
html[data-theme="dark"] .button-primary,
html[data-theme="dark"] .option-segments .active {
  color: #12392c;
}
html[data-theme="dark"] .project-card.active {
  border-color: #3f6150;
}
html[data-theme="dark"] .new-project-button {
  border-color: #3f6150;
}
html[data-theme="dark"] .empty-grid span {
  background: #335240;
  border-color: #3e644d;
}
html[data-theme="dark"] .empty-grid .empty-center {
  background: var(--accent);
  color: #173d29;
}
.help-subtitle {
  font-size: 16px;
  margin: 24px 0 12px;
}
.update-banner {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  padding: 13px 18px;
  max-width: calc(100% - 20px);
  border-radius: 12px;
  background: var(--accent);
  color: var(--surface);
  box-shadow: var(--shadow);
  font-size: 14px;
}
html[data-theme="dark"] .button-danger {
  color: #40201d;
}
.photo-tile:focus-visible {
  outline-offset: -4px;
  z-index: 2;
}
.workspace-heading > div:first-child {
  min-width: 0;
}
.dialog-actions {
  flex-wrap: wrap;
}
.preview-dialog .dialog-body {
  padding: 0 0 20px;
}
.preview-dialog .dialog-actions {
  padding: 0 20px;
}
.preview-dialog #dialog-error {
  padding: 0 20px;
}
.photo-tile[draggable] {
  -webkit-user-drag: element;
}
@media (max-width: 450px) {
  .workspace-heading {
    flex-wrap: wrap;
  }
  .workspace-heading > div:first-child {
    flex: 1;
    min-width: 165px;
  }
  .project-actions {
    margin-left: auto;
  }
  .mobile-only {
    min-height: 36px;
  }
  .tool {
    min-height: 44px;
  }
  .history-buttons .icon-button,
  .project-actions .icon-button {
    width: 44px;
  }
}
