.app-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  background: #f2efe9;
  border-bottom: 1px solid #e0ddd7;
}

.app-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}

.page-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
} */

/* .button:hover {
  background: #0f0f0f;
} */

.diff-section {
  margin-bottom: 2rem;
}

.diff-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.diff-column {
  /* background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.25rem; */
  /* box-shadow: 0 6px 20px rgba(15, 15, 15, 0.05); */
}

.diff-block ul {
  padding-left: 1.2rem;
}

.diff-meta {
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-bottom: 0.5rem;
}

.diff-job,
.diff-education,
.diff-cert {
  margin-bottom: 1.25rem;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.row-actions a,
.row-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.row-actions svg {
  width: 16px;
  height: 16px;
}

/* .button--ghost {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.button--ghost:hover {
  background: #1f1f1f;
  color: #fff;
} */


.resume-frame iframe {
  width: 100%;
  min-height: 90vh;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.home-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}

.home-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.editor-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #fff;
}

.editor-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.editor-card__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.drag-handle {
  display: inline-flex;
  align-items: center;
  cursor: grab;
  color: #6b7280;
}

.drag-handle svg {
  width: 20px;
  height: 20px;
}

.editor-card.is-dragging {
  opacity: 0.6;
  border-style: dashed;
}

.home-actions svg {
  width: 18px;
  height: 18px;
}

header nav a[role="button"] svg {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
}

header nav a[role="button"] {
  display: inline-flex;
  align-items: center;
}

.page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* .resumes-table {
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.resumes-table thead {
  background: oklch(0.922 0 0);
}

.resumes-table tbody {
  background: #fff;
} */

@media (max-width: 900px) {
  .diff-columns {
    grid-template-columns: 1fr;
  }

  .page-header {
    flex-direction: column;
  }
}