:root {
  --ink: #4b271d;
  --muted: #7b5f58;
  --line: #edd1ca;
  --paper: #fff8ef;
  --cream: #fff0c9;
  --rose: #d96c83;
  --sage: #49a078;
  --berry: #a93f73;
  --sky: #6aa6c9;
  --green: #4f7d55;
  --red: #a75a4f;
  --gold: #f2a541;
  --coral: #f27961;
  --shadow: 0 20px 58px rgba(75, 39, 29, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(217, 108, 131, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(73, 160, 120, 0.12), transparent 42%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.app-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 28px;
}

.app-shell.is-locked {
  display: none;
}

.home-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(217, 108, 131, 0.08) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, #fff3d8 0%, #ffe1e8 34%, #def4e8 66%, #fff8ef 100%);
}

.home-hero,
.home-section,
.home-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-hero {
  min-height: 92vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px 0 38px;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 0 18px;
  background: rgba(255, 248, 239, 0.82);
  border: 1px solid rgba(217, 108, 131, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(169, 63, 115, 0.11);
}

.home-nav a {
  position: relative;
  padding: 8px 0;
}

.home-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--coral);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.home-nav a:hover::after {
  transform: scaleX(1);
}

.home-nav a,
.primary-link,
.admin-link,
.ghost-button {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.nav-logo {
  width: 58px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  margin-right: auto;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 56px;
  align-items: center;
  padding: 54px 0 42px;
}

.hero-copy {
  min-width: 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 9px 12px;
  color: #fff8ef;
  background: var(--sage);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-tags span:nth-child(2) {
  background: var(--berry);
}

.hero-tags span:nth-child(3) {
  color: var(--ink);
  background: var(--gold);
}

.hero-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 530px;
  border-radius: 28px;
  background: rgba(217, 108, 131, 0.18);
  border: 1px solid rgba(217, 108, 131, 0.34);
  box-shadow: 0 30px 90px rgba(169, 63, 115, 0.18);
  overflow: hidden;
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 248, 239, 0.5);
  border-radius: 22px;
  pointer-events: none;
}

.hero-showcase::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(217, 108, 131, 0.22), rgba(73, 160, 120, 0.12));
  z-index: 1;
}

.hero-showcase::after {
  inset: auto 0 0;
  height: 38%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(0deg, rgba(75, 39, 29, 0.44), transparent);
  z-index: 1;
}

.hero-logo,
.hero-photo {
  position: relative;
  z-index: 1;
  width: min(330px, 72%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 18px 55px rgba(77, 50, 28, 0.18);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.showcase-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(223, 210, 197, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(77, 50, 28, 0.14);
}

.showcase-card span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.cake-card {
  left: 22px;
  bottom: 42px;
}

.cupcake-card {
  top: 42px;
  right: 22px;
}

.hero-content h1 {
  margin: 10px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: 0.9;
  font-weight: 500;
  color: #562617;
  text-shadow: 0 8px 24px rgba(169, 63, 115, 0.1);
}

.hero-content p:not(.eyebrow),
.contact-band p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 650;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fffaf2;
  background: linear-gradient(135deg, var(--berry), var(--coral));
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(169, 63, 115, 0.22);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 248, 239, 0.76);
  border: 1px solid rgba(217, 108, 131, 0.32);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.instagram-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.home-section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 660px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  font-weight: 500;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(169, 63, 115, 0.11);
}

.tone-rose {
  background: linear-gradient(160deg, rgba(217, 108, 131, 0.42), rgba(255, 248, 239, 0.88));
}

.tone-sage {
  background: linear-gradient(160deg, rgba(73, 160, 120, 0.36), rgba(255, 248, 239, 0.88));
}

.tone-gold {
  background: linear-gradient(160deg, rgba(242, 165, 65, 0.42), rgba(255, 248, 239, 0.88));
}

.offer-card span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 500;
}

.offer-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(217, 108, 131, 0.34), rgba(255, 248, 239, 0.86) 46%, rgba(73, 160, 120, 0.3)),
    linear-gradient(90deg, rgba(242, 165, 65, 0.18), transparent);
  border: 1px solid rgba(217, 108, 131, 0.28);
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(169, 63, 115, 0.12);
}

.feature-band,
.gallery-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 108, 131, 0.3);
  border-radius: 18px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--sage));
  box-shadow: 0 18px 55px rgba(169, 63, 115, 0.14);
}

.feature-band div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 248, 239, 0.82);
}

.feature-band span,
.gallery-tile span {
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 500;
}

.flavor-section {
  width: min(1180px, calc(100% - 48px));
  margin: 52px auto 0;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(169, 63, 115, 0.16), rgba(242, 165, 65, 0.18)),
    rgba(255, 248, 239, 0.74);
  border: 1px solid rgba(217, 108, 131, 0.26);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(75, 39, 29, 0.1);
}

.flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.flavor-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #fff8ef;
  background: var(--berry);
  border-radius: 999px;
  font-weight: 900;
}

.flavor-grid span:nth-child(2n) {
  background: var(--coral);
}

.flavor-grid span:nth-child(3n) {
  background: var(--sage);
}

.flavor-grid span:nth-child(4n) {
  background: var(--sky);
}

.flavor-grid span:nth-child(5n) {
  color: var(--ink);
  background: var(--gold);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 12px;
}

.steps-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  background: rgba(255, 248, 239, 0.86);
  border: 1px solid rgba(217, 108, 131, 0.24);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(75, 39, 29, 0.08);
}

.steps-list article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fffaf2;
  background: linear-gradient(135deg, var(--berry), var(--coral));
  border-radius: 999px;
  font-weight: 900;
}

.steps-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.steps-list p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
  padding: 18px 0 64px;
}

.gallery-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 190px;
  padding: 22px;
  color: #fffaf2;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(75, 39, 29, 0.16);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 248, 239, 0.48);
  border-radius: inherit;
  pointer-events: none;
}

.large-tile::after {
  background: linear-gradient(180deg, transparent 35%, rgba(75, 39, 29, 0.72));
}

.large-tile {
  grid-row: span 2;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile span {
  position: relative;
  z-index: 1;
  color: #fff4e7;
}

.gallery-tile strong {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
}

.home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 88px;
  border-top: 1px solid rgba(217, 108, 131, 0.28);
  color: var(--muted);
  font-weight: 800;
}

.home-footer a {
  color: var(--muted);
  text-decoration: none;
}

.admin-link,
.ghost-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.8);
}

.admin-link {
  height: 36px;
  padding: 0 12px;
}

.ghost-button {
  height: 42px;
  padding: 0 13px;
}

.login-screen {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.login-card {
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  padding: 28px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-logo {
  width: 118px;
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 34px rgba(77, 50, 28, 0.12);
}

.login-card h1 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.login-error {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-panel {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 185px;
  padding: 22px 0 30px;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 34px rgba(77, 50, 28, 0.12);
}

.brand-copy h1 {
  max-width: 820px;
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 500;
}

.eyebrow {
  margin: 0;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding-top: 26px;
}

.controls {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.panel,
.summary {
  min-width: 0;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel {
  padding: 20px;
}

.panel-heading,
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading {
  margin-bottom: 16px;
}

h2 {
  margin: 0;
  font-size: 1.05rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 11px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

input:focus,
select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(120, 135, 105, 0.18);
}

.entry-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 14px;
}

.wide-field {
  grid-column: span 2;
}

.input-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
}

.input-unit input {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.input-unit span {
  min-width: 44px;
  padding-right: 11px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.icon-button,
.text-button,
.primary-button,
.remove-button {
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.icon-button,
.remove-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--cream);
}

.text-button {
  height: 36px;
  padding: 0 13px;
  color: #fffaf2;
  background: var(--sage);
}

.logout-button {
  align-self: start;
}

.admin-actions {
  display: flex;
  align-self: start;
  gap: 10px;
}

.primary-button {
  width: 100%;
  height: 46px;
  color: #fffaf2;
  background: var(--ink);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
}

td {
  font-weight: 750;
}

.description-cell {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.amount-cell {
  text-align: right;
}

.positive {
  color: var(--green);
}

.negative {
  color: var(--red);
}

.type-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.income-pill {
  color: var(--green);
  background: rgba(79, 125, 85, 0.12);
}

.expense-pill {
  color: var(--red);
  background: rgba(167, 90, 79, 0.12);
}

.empty-cell {
  color: var(--muted);
  text-align: center;
}

.summary {
  position: sticky;
  top: 20px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.summary h2 {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.summary-filter {
  gap: 8px;
}

.summary-period {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.period-reset {
  grid-column: 1 / -1;
  width: 100%;
}

.metric,
.formula-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.metric {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.metric span,
.formula-box span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.metric strong {
  font-size: 1.32rem;
}

.metric small {
  color: var(--muted);
  font-weight: 700;
}

.highlight {
  border-color: rgba(216, 168, 91, 0.7);
  background: linear-gradient(135deg, rgba(216, 168, 91, 0.22), rgba(255, 253, 248, 0.95));
}

.highlight strong {
  font-size: 2.15rem;
}

.income-metric strong {
  color: var(--green);
}

.expense-metric strong {
  color: var(--red);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.formula-box {
  display: grid;
}

.formula-box div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.formula-box div:last-child {
  border-bottom: 0;
}

.formula-box strong {
  text-align: right;
}

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

  .summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .home-hero,
  .home-section,
  .flavor-section,
  .feature-band,
  .gallery-strip,
  .home-footer {
    width: min(100% - 36px, 1180px);
  }

  .home-hero {
    min-height: auto;
  }

  .home-nav {
    gap: 16px;
    overflow-x: auto;
    border-radius: 18px;
  }

  .hero-content,
  .offer-grid,
  .flavor-section,
  .feature-band,
  .split-section,
  .gallery-strip,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .contact-band {
    display: grid;
    gap: 24px;
  }

  .hero-logo,
  .hero-photo {
    width: min(230px, 72vw);
  }

  .hero-showcase {
    min-height: 420px;
    border-radius: 18px;
  }

  .showcase-card {
    min-width: 155px;
  }

  .cake-card {
    left: 14px;
    bottom: 24px;
  }

  .cupcake-card {
    top: 24px;
    right: 14px;
  }

  .hero-content h1 {
    font-size: 3.8rem;
  }

  .contact-band {
    padding: 24px;
  }

  .flavor-section {
    margin-top: 32px;
    padding: 24px;
  }

  .large-tile {
    grid-row: auto;
  }

  .app-shell {
    padding: 18px;
  }

  .brand-panel {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    min-height: 142px;
  }

  .admin-actions {
    grid-column: 1 / -1;
    display: grid;
  }

  .logout-button,
  .admin-actions .ghost-button {
    width: 100%;
  }

  .brand-logo {
    width: 96px;
  }

  .brand-copy h1 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .field-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .wide-field {
    grid-column: auto;
  }

  .panel,
  .summary {
    padding: 16px;
  }

  .toolbar {
    align-items: stretch;
  }
}

@media print {
  body {
    background: #fff;
  }

  .app-shell {
    padding: 0;
  }

  .brand-panel,
  .panel,
  .summary {
    box-shadow: none;
  }

  .primary-button,
  .icon-button,
  .text-button,
  .remove-button,
  .toolbar select {
    display: none;
  }
}
