.yeast-crm-app {
  --yc-bg: #f4f0e8;
  --yc-panel: #fffdf9;
  --yc-panel-2: #fbf6ee;
  --yc-ink: #241f1a;
  --yc-muted: #7a6d61;
  --yc-soft: #a99c8d;
  --yc-line: #e2d7c8;
  --yc-green: #0f453f;
  --yc-deep: #0a302c;
  --yc-coral: #f47b5f;
  --yc-gold: #d99a34;
  --yc-blue: #3a7891;
  --yc-red: #bd453d;
  --yc-shadow: 0 24px 80px -54px rgba(36, 31, 26, .58);
  box-sizing: border-box;
  color: var(--yc-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.yeast-crm-app *,
.yeast-crm-app *::before,
.yeast-crm-app *::after {
  box-sizing: border-box;
}

body.yeast-crm-page-active {
  background:
    radial-gradient(circle at 15% 0%, rgba(244, 123, 95, .10), transparent 34rem),
    radial-gradient(circle at 90% 5%, rgba(15, 69, 63, .08), transparent 28rem),
    var(--yc-bg);
  overflow-x: hidden;
}

body.yeast-crm-page-active header.wp-block-template-part,
body.yeast-crm-page-active footer.wp-block-template-part,
body.yeast-crm-page-active .wp-block-post-title {
  display: none !important;
}

body.yeast-crm-page-active main,
body.yeast-crm-page-active .wp-site-blocks,
body.yeast-crm-page-active .entry-content,
body.yeast-crm-page-active .wp-block-post-content,
body.yeast-crm-page-active .yeast-crm-page-block {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.yeast-crm-page-active .is-layout-constrained > .yeast-crm-app,
body.yeast-crm-page-active .is-layout-constrained > .yeast-crm-frontend,
body.yeast-crm-page-active .wp-block-group > .yeast-crm-app {
  max-width: none !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.yeast-crm-frontend {
  min-height: 100vh;
  padding: 24px clamp(18px, 2.6vw, 40px) 56px;
}

.yeast-crm-app:not(.yeast-crm-frontend) {
  margin: 18px 20px 40px 0;
}

.yc-shell,
.yc-frontend-banner {
  width: min(1560px, 100%);
  margin: 0 auto;
}

.yc-frontend-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(226, 215, 200, .9);
  border-radius: 16px;
  background: rgba(255, 253, 249, .82);
  color: var(--yc-muted);
  box-shadow: 0 14px 44px -36px rgba(36, 31, 26, .55);
  backdrop-filter: blur(14px);
  font-size: 12px;
}

.yc-frontend-banner span {
  margin-right: auto;
  color: var(--yc-coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.yc-frontend-banner b {
  color: var(--yc-ink);
}

.yc-frontend-banner a,
.yc-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  color: var(--yc-ink);
  font-weight: 850;
  text-decoration: none;
}

.yc-topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(520px, 1.35fr);
  gap: 20px;
  align-items: end;
  padding: 22px;
  border: 1px solid rgba(226, 215, 200, .95);
  border-radius: 24px;
  background: rgba(255, 253, 249, .95);
  box-shadow: var(--yc-shadow);
  backdrop-filter: blur(16px);
}

.yc-brand {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.yc-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yc-coral), #ffb08f);
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  box-shadow: 0 18px 32px -24px rgba(244, 123, 95, .8);
}

.yc-kicker {
  margin-bottom: 4px;
  color: var(--yc-coral);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.yc-title {
  margin: 0;
  color: var(--yc-ink);
  font-size: clamp(26px, 2vw, 36px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .96;
}

.yc-sub {
  margin-top: 7px;
  color: var(--yc-muted);
  font-size: 12px;
  line-height: 1.45;
}

.yc-session {
  grid-column: 2;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 8px 11px;
  border: 1px solid var(--yc-line);
  border-radius: 13px;
  background: var(--yc-panel-2);
}

.yc-session span {
  display: block;
  color: var(--yc-muted);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.yc-session b {
  display: block;
  max-width: 220px;
  overflow: hidden;
  color: var(--yc-ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(150px, .85fr));
  gap: 10px;
  align-items: end;
  min-width: 0;
}

.yc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: var(--yc-muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.yc-field input,
.yc-field select,
.yc-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--yc-line);
  border-radius: 12px;
  background: #fff;
  color: var(--yc-ink);
  font-size: 13px;
  padding: 12px 13px;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.yc-field input:focus,
.yc-field select:focus,
.yc-field textarea:focus {
  outline: 0;
  border-color: var(--yc-coral);
  box-shadow: 0 0 0 4px rgba(244, 123, 95, .12);
}

.yc-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 14px;
}

.yc-tile {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  padding: 17px;
  border: 1px solid var(--yc-line);
  border-radius: 20px;
  background: var(--yc-panel);
  box-shadow: 0 18px 45px -42px rgba(36, 31, 26, .46);
}

.yc-tile span {
  color: var(--yc-muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.yc-tile b {
  margin-top: auto;
  color: var(--yc-ink);
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 950;
  letter-spacing: -.045em;
}

.yc-tile small {
  margin-top: 4px;
  color: var(--yc-muted);
  font-size: 11px;
}

.yc-tile.accent {
  border-color: var(--yc-green);
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 242, 95, .18), transparent 8rem),
    linear-gradient(135deg, var(--yc-green), var(--yc-deep));
  color: #fff;
}

.yc-tile.accent b {
  color: #fff;
}

.yc-tile.accent span,
.yc-tile.accent small {
  color: rgba(235, 245, 235, .78);
}

.yc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 11px 0;
}

.yc-filters button {
  border: 1px solid var(--yc-line);
  border-radius: 999px;
  background: rgba(255, 253, 249, .92);
  color: var(--yc-muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  padding: 8px 12px;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}

.yc-filters button:hover {
  transform: translateY(-1px);
}

.yc-filters button.active {
  border-color: var(--yc-green);
  background: var(--yc-green);
  color: #fff;
}

.yc-table-wrap {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--yc-line);
  border-radius: 24px;
  background: var(--yc-panel);
  box-shadow: 0 26px 90px -64px rgba(36, 31, 26, .64);
}

.yc-list {
  overflow-x: auto;
}

.yc-table-head,
.yc-row {
  display: grid;
  grid-template-columns:
    minmax(310px, 1.7fr)
    minmax(130px, .72fr)
    minmax(110px, .62fr)
    minmax(220px, 1.1fr)
    minmax(135px, .72fr)
    minmax(88px, .45fr)
    minmax(170px, .88fr);
  gap: 14px;
  align-items: center;
  min-width: 1280px;
}

.yc-table-head {
  padding: 13px 16px;
  border-bottom: 1px solid var(--yc-line);
  background: #f8f2e9;
  color: var(--yc-muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.yc-row {
  width: 100%;
  min-height: 84px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--yc-line);
  background: #fffdf9;
  color: var(--yc-ink);
  cursor: pointer;
  text-align: left;
  transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}

.yc-row:nth-child(even) {
  background: #fffaf4;
}

.yc-row:hover {
  background: #fff5eb;
  box-shadow: inset 5px 0 0 var(--yc-coral);
}

.yc-row:focus-visible {
  outline: 3px solid rgba(244, 123, 95, .38);
  outline-offset: -3px;
}

.yc-account {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.yc-account b {
  overflow: hidden;
  color: var(--yc-ink);
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-account span {
  margin-top: 4px;
  overflow: hidden;
  color: var(--yc-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-account em {
  margin-top: 4px;
  overflow: hidden;
  color: #5b5046;
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border-radius: 999px;
  background: #ece5db;
  color: #65594d;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  padding: 8px 10px;
  white-space: nowrap;
}

.yc-pill.vip {
  background: var(--yc-green);
  color: #dff66a;
}

.yc-pill.hot {
  background: #f5d4cd;
  color: #91392f;
}

.yc-pill.warn {
  background: #f8e4b8;
  color: #77540f;
}

.yc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.yc-tags span {
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #eee8df;
  color: #62574c;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yc-volume b {
  display: block;
  color: var(--yc-ink);
  font-size: 14px;
  font-weight: 900;
}

.yc-volume small {
  display: block;
  margin-top: 3px;
  color: var(--yc-muted);
  font-size: 11px;
}

.yc-score {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: #e3ddd4;
}

.yc-score i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yc-blue), var(--yc-green));
}

.yc-score b {
  position: absolute;
  top: -20px;
  right: 0;
  color: var(--yc-muted);
  font-size: 11px;
}

.yc-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.yc-actions a,
.yc-actions button,
.yc-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  color: var(--yc-ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  padding: 8px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.yc-actions a.wa {
  border-color: #15945d;
  background: #15945d;
  color: #fff;
}

.yc-actions a.review {
  border-color: var(--yc-gold);
  background: var(--yc-gold);
  color: #201c18;
}

.yc-actions span {
  opacity: .58;
}

.yc-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 14px auto 0;
  color: var(--yc-muted);
  font-size: 12px;
}

.yc-pager button {
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  color: var(--yc-ink);
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
}

.yc-pager button:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.yc-loading {
  padding: 24px;
  border: 1px solid var(--yc-line);
  border-radius: 16px;
  background: #fff;
  color: var(--yc-muted);
  font-weight: 850;
}

.yc-loading-row {
  cursor: default;
}

.yc-load-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1280px;
  gap: 18px;
  padding: 18px;
  border-left: 4px solid var(--yc-coral);
  background: #fff7f4;
  color: var(--yc-ink);
}

.yc-load-error b {
  display: block;
  font-size: 15px;
}

.yc-load-error p {
  margin: 6px 0;
  color: #89342d;
  font-size: 13px;
  line-height: 1.45;
}

.yc-load-error small {
  display: block;
  color: var(--yc-muted);
  font-size: 11px;
  line-height: 1.45;
}

.yc-load-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.yc-load-actions button {
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
}

.yc-load-actions button:first-child {
  border-color: var(--yc-green);
  background: var(--yc-green);
  color: #fff;
}

.yc-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(9, 24, 22, .62);
}

.yc-modal {
  position: relative;
  width: min(1180px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 24px;
  background: #f6f2ed;
  box-shadow: 0 32px 95px rgba(0, 0, 0, .34);
}

.yc-close {
  position: sticky;
  top: 14px;
  right: 14px;
  z-index: 4;
  float: right;
  width: 38px;
  height: 38px;
  margin: 14px 14px -52px 0;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 55, 51, .94);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

.yc-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 44px;
  background: var(--yc-green);
  color: #fff;
}

.yc-hero p {
  color: #a8c0ba;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.yc-hero h2 {
  margin: 8px 0 16px;
  font-size: 44px;
  letter-spacing: -.055em;
  line-height: .98;
}

.yc-ring {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 10px solid rgba(255, 255, 255, .13);
  border-top-color: #d8f25f;
  border-radius: 50%;
}

.yc-ring b {
  font-size: 32px;
}

.yc-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 1px;
  background: var(--yc-line);
}

.yc-contact > div {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  background: #fff;
}

.yc-contact small,
.yc-card small {
  color: var(--yc-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yc-contact b {
  margin-top: 4px;
  font-size: 13px;
}

.yc-raw {
  margin-top: 4px;
  color: var(--yc-muted);
  font-size: 10px;
}

.yc-command {
  display: flex;
  gap: 7px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--yc-line);
}

.yc-command button,
.yc-section-head button,
.yc-form-actions button {
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
}

.yc-command button:first-child,
.yc-form-actions .primary {
  border-color: var(--yc-green);
  background: var(--yc-green);
  color: #fff;
}

.yc-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 18px 24px;
}

.yc-card,
.yc-section {
  border: 1px solid var(--yc-line);
  border-radius: 16px;
  background: #fff;
}

.yc-card {
  padding: 15px;
}

.yc-card b {
  display: block;
  margin-top: 13px;
  font-size: 20px;
}

.yc-card span {
  color: var(--yc-muted);
  font-size: 11px;
}

.yc-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .82fr);
  gap: 12px;
  padding: 0 24px 28px;
}

.yc-section {
  margin-bottom: 10px;
  padding: 16px;
}

.yc-section h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.yc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.yc-request,
.yc-activity,
.yc-person,
.yc-sale {
  padding: 11px 0;
  border-top: 1px solid var(--yc-line);
}

.yc-request {
  display: grid;
  width: 100%;
  grid-template-columns: 1.4fr .75fr .55fr 18px;
  gap: 8px;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.yc-request b,
.yc-person b {
  font-size: 12px;
}

.yc-request small,
.yc-activity small,
.yc-person small,
.yc-sale small {
  display: block;
  margin-top: 3px;
  color: var(--yc-muted);
  font-size: 11px;
}

.yc-activity p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.yc-sale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.yc-empty {
  color: var(--yc-muted);
  font-size: 12px;
  line-height: 1.5;
}

.yc-form {
  padding: 28px;
}

.yc-form h2 {
  margin: 0 0 16px;
  font-size: 30px;
  letter-spacing: -.04em;
}

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

.yc-form .wide {
  grid-column: 1 / -1;
}

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

.yc-checks label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.yc-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.yc-alert {
  margin: 14px 0;
  padding: 12px;
  border-radius: 10px;
  background: #fde2dc;
  color: #89342d;
  font-weight: 800;
}

.yc-gate {
  display: grid;
  min-height: 72vh;
  place-items: center;
}

.yc-login-card {
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid var(--yc-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--yc-shadow);
}

.yc-login-card h1 {
  margin: 8px 0 12px;
  font-size: 34px;
  letter-spacing: -.05em;
  line-height: 1;
}

.yc-login-card p {
  color: var(--yc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.yc-login-card #loginform {
  margin-top: 18px;
}

.yc-login-card #loginform p {
  margin: 0 0 12px;
}

.yc-login-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--yc-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yc-login-card input[type="text"],
.yc-login-card input[type="password"] {
  padding: 12px;
  border: 1px solid var(--yc-line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
}

.yc-login-card .login-remember label {
  flex-direction: row;
  align-items: center;
  letter-spacing: 0;
  text-transform: none;
}

.yc-login-card input[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--yc-green);
  color: #fff;
  cursor: pointer;
  font-weight: 950;
  padding: 12px 14px;
}

.yc-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 5px;
}

.yc-phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #b8d8cf;
  border-radius: 10px;
  background: #edf8f4;
  color: #0c5147;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.yc-phone-chip:hover,
.yc-phone-chip:focus {
  border-color: #0c6b5c;
  background: #dff3ed;
  color: #073f37;
}

.yc-phone-chip small {
  margin: 0;
  color: #287468;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.yc-phone-chip.review {
  border-color: #dec991;
  background: #fff8e5;
  color: #785d16;
}

.yc-phone-empty {
  display: block;
  margin-top: 5px;
  color: var(--yc-muted);
}

.yc-raw {
  display: block;
  margin-top: 7px;
  color: var(--yc-muted);
  font-size: 10px;
  line-height: 1.35;
}

.yc-person .yc-phone-list {
  margin: 9px 0 4px;
}

.yc-actions {
  flex-wrap: wrap;
}

@media (max-width: 1280px) {
  .yc-topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .yc-tools {
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(145px, .85fr));
  }

  .yc-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .yc-detail-grid {
    grid-template-columns: 1fr;
  }

  .yc-contact {
    grid-template-columns: 1fr 1fr;
  }

  .yc-contact .yc-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .yeast-crm-frontend {
    padding: 14px 12px 40px;
  }

  .yc-topbar {
    position: relative;
    top: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .yc-brand {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .yc-mark {
    width: 50px;
    height: 50px;
  }

  .yc-tools,
  .yc-summary,
  .yc-kpis,
  .yc-form-grid,
  .yc-checks,
  .yc-contact {
    grid-template-columns: 1fr;
  }

  .yc-table-head {
    display: none;
  }

  .yc-row,
  .yc-load-error {
    min-width: 0;
  }

  .yc-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
  }

  .yc-row > div:nth-child(2),
  .yc-row > div:nth-child(3),
  .yc-row > div:nth-child(4),
  .yc-row > div:nth-child(5),
  .yc-row > div:nth-child(6) {
    grid-column: 1 / -1;
  }

  .yc-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .yc-load-error {
    display: block;
  }

  .yc-load-actions {
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .yc-modal-backdrop {
    padding: 0;
  }

  .yc-modal {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .yc-hero {
    padding: 34px 22px;
  }

  .yc-hero h2 {
    font-size: 34px;
  }

  .yc-ring {
    display: none;
  }
}
