* {
    box-sizing: border-box;
}

:root {
    --bg: #fff9f2;
    --surface: #ffffff;
    --surface-soft: #fff4e9;
    --text: #272727;
    --muted: #6d6d6d;
    --orange: #ff7f2a;
    --orange-deep: #de630d;
    --orange-soft: #fff0e2;
    --green: #21b457;
    --purple: #725cf6;
    --cyan: #17c6ea;
    --border: rgba(255, 127, 42, 0.12);
    --shadow: 0 24px 60px rgba(255, 127, 42, 0.12);
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff0e5;
    color: #d86410;
    font-weight: 700;
    margin-bottom: 14px;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
    font-size: 1.05rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(255, 249, 242, 0.88);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.flash-wrap {
    padding-top: 14px;
}

.flash-banner {
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.flash-success {
    background: #dff8e7;
    color: #157a3c;
    border-left: 5px solid #1fb55d;
}

.flash-error {
    background: #ffe5e8;
    color: #b92f41;
    border-left: 5px solid #ea4f62;
}

.nav-row {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), #ff9a4f);
    color: #fff;
    font-weight: 800;
}

.brand small {
    display: block;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-links a {
    font-weight: 700;
    color: #5f5f5f;
}

.hero {
    padding: 62px 0 34px;
}

.hero-grid,
.access-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: center;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--orange-soft);
    color: var(--orange-deep);
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-copy h1,
.module-head h1,
.admin-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.1;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    border: none;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ff9a4f);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--orange-deep);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-points span {
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    color: #4b4b4b;
    font-weight: 700;
    font-size: 0.94rem;
}

.hero-preview {
    display: grid;
    gap: 18px;
}

.preview-card,
.feature-card,
.plan-card,
.access-card,
.stat-box,
.quick-card,
.recent-card,
.admin-card,
.placeholder-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.preview-card {
    padding: 24px;
}

.preview-card-main {
    background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
}

.mini-stats {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.mini-stats div {
    padding: 14px;
    border-radius: 18px;
    background: #fff;
}

.mini-stats small {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
}

.mini-stats strong {
    font-size: 1.4rem;
}

.success-text {
    color: var(--green);
}

.section-block {
    padding: 22px 0 34px;
}

.section-head {
    margin-bottom: 22px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
}

.feature-grid,
.plan-grid,
.admin-grid,
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.plan-card,
.access-card,
.admin-card,
.placeholder-card {
    padding: 24px;
}

.feature-card h3,
.plan-card h3,
.access-card h3,
.quick-card h3,
.placeholder-card h3,
.admin-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.plans-wrap {
    background: linear-gradient(180deg, #fff6eb 0%, rgba(255, 246, 235, 0) 100%);
}

.plan-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--orange-deep);
}

.plan-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff1db;
    color: #aa6d1e;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-card ul {
    padding-left: 18px;
    margin: 0 0 18px;
    color: var(--muted);
}

.access-wrap {
    padding-bottom: 64px;
}

.auth-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.auth-form {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.auth-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: #515151;
}

.auth-form input {
    width: 100%;
    border: 2px solid #f3d5bb;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    background: #fffdfb;
}

.admin-login-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.admin-login-block h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.dashboard-body,
.admin-body,
.module-body {
    background: #faf7f2;
}

.landing-body {
    background:
        radial-gradient(circle at top right, rgba(255, 166, 77, 0.25), transparent 28%),
        linear-gradient(180deg, #fff6ec 0%, #fffdf8 100%);
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landing-brand-mark,
.sidebar-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), #ffad5b);
    color: #fff;
    font-weight: 900;
}

.landing-brand small,
.sidebar-brand small {
    display: block;
    color: var(--muted);
}

.landing-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.landing-links a {
    font-weight: 800;
    color: #525252;
}

.landing-main {
    padding-bottom: 56px;
}

.landing-hero {
    padding: 46px 0 24px;
}

.landing-hero-grid,
.landing-feature-grid,
.dual-login-grid {
    display: grid;
    gap: 18px;
}

.landing-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.landing-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
}

.landing-stack {
    display: grid;
    gap: 18px;
}

.landing-panel {
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.landing-panel.warm {
    background: linear-gradient(135deg, #ff8f3b, #ffc56f);
    color: #fff;
}

.landing-panel.warm p {
    color: rgba(255, 255, 255, 0.92);
}

.landing-section {
    padding: 20px 0 36px;
}

.landing-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dual-login-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-admin {
    background: linear-gradient(180deg, #15233d 0%, #1f2f4f 100%);
    color: #fff;
}

.sidebar-user {
    background: linear-gradient(180deg, #dff8f0 0%, #fff7eb 100%);
    color: #2f2f2f;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
}

.sidebar-nav {
    display: grid;
    gap: 10px;
}

.sidebar-link,
.sidebar-group-title,
.sidebar-logout {
    display: block;
    width: 100%;
    border: none;
    border-radius: 22px;
    padding: 18px 20px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 800;
    background: transparent;
}

.sidebar-admin .sidebar-link,
.sidebar-admin .sidebar-group-title,
.sidebar-admin .sidebar-logout {
    color: #f2f6ff;
}

.sidebar-user .sidebar-link,
.sidebar-user .sidebar-group-title,
.sidebar-user .sidebar-logout {
    color: #3b342d;
}

.sidebar-link.active,
.sidebar-group-title {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.sidebar-user .sidebar-link.active,
.sidebar-user .sidebar-group-title {
    background: #fff0d9;
    box-shadow: var(--shadow);
}

.sidebar-group {
    display: grid;
    gap: 8px;
}

.sidebar-submenu {
    display: grid;
    gap: 8px;
    padding-left: 22px;
    border-left: 3px solid rgba(255, 170, 79, 0.75);
    margin-left: 18px;
}

.sidebar-submenu a,
.sidebar-submenu span {
    font-size: 0.98rem;
    color: inherit;
    padding: 8px 0;
}

.sidebar-logout {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-user .sidebar-logout {
    background: #ffe9ea;
    color: #c32032;
}

.content-shell {
    padding: 26px;
}

.worker-list-card p {
    margin-top: 6px;
}

.menu-action-bar form {
    margin: 0;
}

.dashboard-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dashboard-topbar-inner {
    min-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.8rem;
    font-weight: 800;
}

.hamburger,
.top-icon,
.top-avatar {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

.dashboard-top-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-avatar {
    border-radius: 999px;
    background: linear-gradient(135deg, #8372ff, #735df5);
    color: #fff;
    font-weight: 800;
}

.dashboard-shell,
.module-shell,
.admin-shell {
    padding: 24px 0 48px;
}

.welcome-banner,
.admin-hero,
.module-head {
    background: linear-gradient(135deg, var(--orange), #ff8d44);
    color: #fff;
    padding: 28px;
    border-radius: 30px;
    margin-bottom: 22px;
    box-shadow: var(--shadow);
}

.welcome-banner h1,
.admin-hero h1,
.module-head h1 {
    margin: 0 0 10px;
}

.welcome-banner p,
.admin-hero p,
.module-head p {
    color: rgba(255,255,255,0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.stat-box {
    padding: 24px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-box small {
    color: var(--muted);
}

.stat-box strong {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.stat-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-weight: 800;
}

.sky { background: #e7f4ff; color: #4ea6ff; }
.mint { background: #e7fbeb; color: #2bb75a; }
.blush { background: #ffe9ed; color: #f15b76; }
.violet { background: #f3e8ff; color: #b03ce0; }

.dashboard-tabs {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(0,0,0,0.08);
}

.dashboard-tabs a {
    position: relative;
    font-weight: 800;
    color: var(--muted);
    white-space: nowrap;
}

.dashboard-tabs a.active {
    color: var(--orange-deep);
}

.dashboard-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 3px;
    background: var(--orange);
    border-radius: 999px;
}

.quick-grid,
.recent-list {
    display: grid;
    gap: 18px;
}

.quick-card,
.recent-card {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.quick-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    font-weight: 800;
}

.orange { background: #fff0e2; color: var(--orange); }
.gray { background: #ededed; color: #787878; }
.red { background: #ffebe7; color: #ff6540; }

.recent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.status-chip,
.action-chip {
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.94rem;
}

.status-chip.pending { background: #fff0c8; color: #ba8a1d; }
.status-chip.done { background: #def7e3; color: #29944c; }
.action-chip.pdf { background: var(--purple); color: #fff; }
.action-chip.share { background: #12c85f; color: #fff; }
.action-chip.edit { background: var(--cyan); color: #fff; }

.admin-grid,
.placeholder-grid {
    margin-top: 18px;
}

.menu-builder {
    display: grid;
    gap: 22px;
}

.form-block,
.output-block {
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.block-title {
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 4px solid #ffd94c;
}

.block-title h2,
.output-head h2 {
    margin: 0;
    font-size: 1.9rem;
    color: var(--orange-deep);
}

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

.field-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
    color: #4c4c4c;
}

.field-span-full {
    grid-column: 1 / -1;
}

.field-card input,
.table-input,
.utensil-card input {
    width: 100%;
    border: 2px solid #f3d5bb;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 1rem;
    outline: none;
    background: #fffdfb;
}

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

.menu-tab-card {
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    padding: 22px;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: grid;
    gap: 8px;
}

.menu-tab-card strong {
    font-size: 1.2rem;
}

.menu-tab-card small {
    color: var(--muted);
}

.menu-tab-card span {
    margin-top: 4px;
    color: var(--orange-deep);
    font-weight: 800;
}

.menu-tab-card.active {
    border-color: #f3b37b;
    box-shadow: 0 26px 44px rgba(255, 127, 42, 0.16);
}

.selector-panel {
    display: none;
}

.selector-panel.active {
    display: block;
}

.recipe-card-grid,
.utensils-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.recipe-choice-card,
.utensil-card {
    background: #fffdf8;
    border: 2px solid #f7d7ba;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.recipe-choice-card input {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.recipe-choice-card h3,
.utensil-card h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.recipe-choice-card p,
.utensil-card p {
    font-size: 0.95rem;
}

.output-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.cost-toggle {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: #fff3e6;
    color: var(--orange-deep);
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 700;
}

.editable-table-wrap {
    overflow-x: auto;
}

.editable-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.editable-table th,
.editable-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    text-align: left;
}

.editable-table th {
    background: #fff6df;
    color: var(--orange-deep);
    font-size: 0.96rem;
}

.menu-action-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.success-strip {
    background: #d9fae7;
    border-left: 5px solid #18b45b;
    color: #0d8c43;
    font-weight: 700;
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
}

.worker-tabs {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    margin-bottom: 22px;
}

.worker-tab {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    color: var(--muted);
    white-space: nowrap;
    position: relative;
    padding: 4px 0;
    cursor: pointer;
}

.worker-tab.active {
    color: var(--orange-deep);
}

.worker-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 3px;
    background: var(--orange);
    border-radius: 999px;
}

.worker-panel {
    display: none;
}

.worker-panel.active {
    display: block;
}

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

.field-card select,
.field-card textarea {
    width: 100%;
    border: 2px solid #f3d5bb;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 1rem;
    outline: none;
    background: #fffdfb;
    font-family: inherit;
}

.worker-list-grid,
.report-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.worker-list-card,
.report-card,
.confirmation-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 22px;
}

.worker-list-card h3,
.report-card h3 {
    margin: 0 0 10px;
}

.attendance-note,
.payment-help {
    margin: 18px 0 0;
    background: #fff5e8;
    color: #9a6727;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.attendance-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.calendar-day {
    min-height: 110px;
    border: none;
    border-radius: 20px;
    background: #f7f7f7;
    color: #bdbdbd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    font-size: 1.15rem;
    font-weight: 800;
}

.calendar-day.present {
    background: #d9fae7;
    color: #0d8c43;
    border: 2px solid #25c76b;
}

.calendar-day.absent {
    background: #ffe8eb;
    color: #db3845;
    border: 2px solid #ed6a75;
}

.day-top {
    font-size: 0.9rem;
}

.attendance-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.summary-pill {
    border-radius: 24px;
    color: #fff;
    padding: 22px;
    text-align: center;
}

.summary-pill strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.orange-card { background: linear-gradient(135deg, #ff7f2a, #ff961e); }
.red-card { background: linear-gradient(135deg, #f43f5e, #ef4444); }
.purple-card { background: linear-gradient(135deg, #735df5, #8b3ff0); }

.report-card {
    min-height: 150px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), #ff7b16);
    color: #fff;
}

.payment-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.payment-card {
    min-height: 100%;
}

.selected-plan {
    border-color: #ffb57a;
    box-shadow: 0 26px 44px rgba(255, 127, 42, 0.16);
}

.order-summary {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.qr-box {
    width: min(280px, 100%);
    aspect-ratio: 1;
    margin: 0 auto 20px;
    border-radius: 20px;
    border: 2px dashed #dcb38c;
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 900;
    color: #9f6931;
    background: #fffaf5;
}

.vertical-actions {
    flex-direction: column;
}

.whatsapp-btn {
    background: #13c25d;
    color: #fff;
    border: none;
}

.light-btn {
    background: #dff3ff;
    color: #2273a7;
}

.confirmation-card {
    margin-top: 22px;
}

.confirmation-card h2 {
    margin: 0 0 16px;
}

.confirmation-body {
    background: #e8fbef;
    border-left: 5px solid #18b45b;
    color: #176f3d;
    border-radius: 18px;
    padding: 18px;
    display: grid;
    gap: 10px;
}

@media (max-width: 1024px) {
    .hero-grid,
    .access-grid,
    .feature-grid,
    .plan-grid,
    .auth-split,
    .stats-grid,
    .admin-grid,
    .placeholder-grid,
    .menu-categories,
    .recipe-card-grid,
    .utensils-card-grid,
    .form-grid-2,
    .form-grid-3,
    .worker-list-grid,
    .report-grid,
    .payment-plan-grid,
    .payment-layout,
    .attendance-summary,
    .landing-hero-grid,
    .landing-feature-grid,
    .dual-login-grid,
    .app-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .nav-row,
    .dashboard-topbar-inner,
    .quick-card,
    .recent-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links,
    .hero-actions,
    .hero-points,
    .dashboard-top-actions,
    .recent-actions {
        width: 100%;
    }

    .hero-grid,
    .access-grid,
    .feature-grid,
    .plan-grid,
    .auth-split,
    .stats-grid,
    .admin-grid,
    .placeholder-grid,
    .menu-categories,
    .recipe-card-grid,
    .utensils-card-grid,
    .form-grid-2,
    .form-grid-3,
    .worker-list-grid,
    .report-grid,
    .payment-plan-grid,
    .payment-layout,
    .attendance-summary,
    .attendance-calendar,
    .landing-hero-grid,
    .landing-feature-grid,
    .dual-login-grid,
    .app-layout {
        grid-template-columns: 1fr;
    }

    .landing-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
    }

    .landing-links {
        width: 100%;
    }

    .sidebar {
        padding: 18px 14px;
    }

    .content-shell {
        padding: 18px 14px 36px;
    }

    .preview-card,
    .feature-card,
    .plan-card,
    .access-card,
    .stat-box,
    .quick-card,
    .recent-card,
    .admin-card,
    .placeholder-card,
    .welcome-banner,
    .admin-hero,
    .module-head,
    .form-block,
    .output-block,
    .worker-list-card,
    .report-card,
    .confirmation-card {
        border-radius: 22px;
    }

    .output-head,
    .menu-action-bar {
        flex-direction: column;
    }

    .editable-table {
        min-width: 560px;
    }
}
