:root {
    --green: #117c2d;
    --green-dark: #0b6421;
    --orange: #f05a1a;
    --orange-dark: #d94213;
    --yellow: #ffd25a;
    --cream: #fff7df;
    --ink: #15171d;
    --muted: #69707d;
    --line: #d9dde5;
    --bg: #f5f6f8;
    --white: #ffffff;
    --danger: #b42318;
    --success: #087443;
    --warning: #9a6700;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.has-modal {
    overflow: hidden;
}

a {
    color: var(--green);
    text-decoration: none;
}

input,
select,
textarea,
button {
    font: inherit;
}

.public-page {
    min-height: 100vh;
    background: #111111;
}

.success-page {
    min-height: 100vh;
    background: #111111;
}

.public-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}

.feedback-card {
    position: relative;
    height: auto;
    max-height: calc(100vh - 32px);
    width: min(100%, 520px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 72px 34px 30px;
    background: #f8ead8;
    border: 1px solid #efdcc6;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(20, 24, 32, 0.09);
}

.logo-mark {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-card h1 {
    margin: 0 0 16px;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    color: #050608;
}

.feedback-card > .logo-mark,
.feedback-card > h1,
.feedback-card > .alert,
.feedback-card > .feedback-form {
    position: relative;
    z-index: 2;
}

.scan-required-card {
    justify-content: center;
    min-height: min(620px, calc(100vh - 32px));
}

.scan-required-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 12px;
    color: #5f422a;
    text-align: center;
}

.scan-required-content p {
    max-width: 390px;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.scan-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #11832e;
    border-radius: 999px;
    box-shadow: 0 14px 26px rgba(17, 131, 46, 0.22);
}

.scan-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linejoin: round;
}

.feedback-pattern {
    top: 34px;
    left: 28px;
    width: 92px;
}

.feedback-chilies {
    top: 36px;
    right: 28px;
    width: 92px;
}

.feedback-plants {
    left: 20px;
    bottom: -42px;
    opacity: 0.35;
}

.feedback-dots {
    right: 30px;
    bottom: 28px;
}

.feedback-form {
    min-height: 0;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding-right: 4px;
}

.feedback-privacy-note {
    margin: -2px auto 0;
    max-width: 430px;
    color: #6f482b;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.phone-info-note {
    margin: -2px 0 0;
    color: #6f482b;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.4;
}

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

.field-group:nth-of-type(2) {
    min-height: 164px;
    flex: 0 1 164px;
    grid-template-rows: auto minmax(104px, 1fr) auto;
}

.field-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    color: #07080b;
}

.field-group small {
    font-weight: 400;
}

.field-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--orange);
}

.field-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.field-icon .phone-icon {
    width: 24px;
    height: 24px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    border: 1px solid #bfc4ce;
    border-radius: 7px;
    color: #272d38;
    background: #ffffff;
    font-size: 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #15803d;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.14);
}

.feedback-form input.is-invalid,
.feedback-form textarea.is-invalid,
.custom-select.is-invalid .custom-select-button {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.feedback-form input,
.feedback-form select {
    min-height: 48px;
    padding: 0 18px;
}

.custom-select {
    position: relative;
}

.custom-select-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 16px 0 18px;
    color: #272d38;
    background: #ffffff;
    border: 1px solid #bfc4ce;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.custom-select-button:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.14);
}

.select-chevron {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: #343a46;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.15s ease;
}

.custom-select.is-open .select-chevron {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    max-height: 220px;
    overflow-y: auto;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #cfd4de;
    border-radius: 7px;
    box-shadow: 0 14px 28px rgba(20, 24, 32, 0.16);
}

.custom-select.is-open .custom-select-menu {
    display: grid;
}

.custom-select-menu button {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    color: #272d38;
    background: transparent;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
}

.custom-select-menu button:hover,
.custom-select-menu button[aria-selected="true"] {
    color: #ffffff;
    background: #11832e;
}

.locked-outlet {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #272d38;
    background: #f8faf9;
    border: 1px solid #bfc4ce;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
}

.field-error {
    min-height: 15px;
    margin: -2px 0 0;
    color: var(--danger);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.field-error:empty {
    display: none;
}

.field-meta {
    min-height: 17px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 12px;
    row-gap: 2px;
}

.field-meta .field-error {
    min-width: 0;
    margin: 0;
}

.character-counter {
    min-height: 17px;
    margin: 0;
    color: #68707f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
}

.character-counter.is-limit {
    color: var(--warning);
}

.character-counter.is-over-limit {
    color: var(--danger);
}

.feedback-form textarea {
    min-height: 104px;
    height: auto;
    flex: 1 1 auto;
    padding: 16px 18px;
    resize: vertical;
}

.feedback-form ::placeholder {
    color: #68707f;
    opacity: 0.6;
}

.submit-button,
.primary-button,
.secondary-button,
.small-button,
.link-button {
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 700;
}

.submit-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: #11832e;
    font-size: 18px;
    box-shadow: none;
    line-height: 1;
}

.submit-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.submit-button:hover,
.primary-button:hover {
    background: var(--green-dark);
}

.success-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 18px;
}

.success-card {
    position: relative;
    width: min(100%, 430px);
    min-height: min(820px, calc(100dvh - 36px));
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 56px 34px 42px;
    background: #f8ead8;
    border-radius: 4px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.success-pattern {
    position: absolute;
    top: 48px;
    left: 22px;
    width: 120px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.success-pattern span {
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 20px solid var(--orange);
}

.success-pattern span:nth-child(2n) {
    border-bottom-color: #7a5738;
}

.success-pattern span:nth-child(n + 4) {
    transform: rotate(180deg);
}

.success-chilies {
    position: absolute;
    top: 56px;
    right: 24px;
    width: 118px;
    color: #ff8a1f;
}

.success-chilies svg {
    width: 100%;
    height: auto;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-logo {
    width: 178px;
    height: 178px;
    margin-top: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.success-copy {
    margin-top: 28px;
    text-align: center;
    color: #6f482b;
}

.success-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    line-height: 1;
}

.success-copy p {
    margin: 14px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.22;
}

.success-duck {
    width: 130px;
    margin: 22px 0 28px;
    color: #ffc51c;
}

.success-duck svg {
    width: 100%;
    height: auto;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-plants {
    position: absolute;
    bottom: -4px;
    left: 32px;
    display: flex;
    gap: 18px;
    align-items: flex-end;
    color: #42a442;
}

.success-plants span {
    position: relative;
    display: block;
    width: 7px;
    height: 112px;
    background: currentColor;
    border-radius: 999px;
}

.success-plants span:nth-child(2) {
    height: 142px;
}

.success-plants span:nth-child(3) {
    height: 86px;
}

.success-plants span::before,
.success-plants span::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 28px;
    background: currentColor;
    border-radius: 999px 999px 999px 0;
}

.success-plants span::before {
    left: -13px;
    top: 22px;
    transform: rotate(-28deg);
}

.success-plants span::after {
    right: -13px;
    top: 48px;
    transform: rotate(28deg);
}

.success-dots {
    position: absolute;
    right: 30px;
    bottom: 46px;
    width: 54px;
    height: 70px;
    background-image: radial-gradient(#d4b898 2px, transparent 2px);
    background-size: 16px 16px;
}

.alert {
    padding: 12px 14px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 700;
}

.alert-success {
    color: var(--success);
    background: #e7f6ee;
    border-color: #b9e5cc;
}

.alert-danger {
    color: var(--danger);
    background: #fdecea;
    border-color: #f8c9c4;
}

.alert-warning {
    color: var(--warning);
    background: #fff7df;
    border-color: #f3df9c;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: #f2f3f5;
}

.login-card {
    width: min(100%, 420px);
    padding: 30px;
    background: var(--white);
    border: 1px solid #e7e9ee;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(20, 24, 32, 0.09);
}

.login-logo {
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 50%;
    object-fit: cover;
}

.login-card h1 {
    margin: 0 0 20px;
    text-align: center;
    color: #050608;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    background: #f2f3f5;
}

.sidebar {
    padding: 24px;
    color: #272d38;
    background: #ffffff;
    border-right: 1px solid #e7e9ee;
    box-shadow: 8px 0 24px rgba(20, 24, 32, 0.04);
}

.sidebar-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0d7a4;
}

.sidebar-brand img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-brand strong,
.sidebar-brand span {
    display: block;
}

.sidebar-brand strong {
    color: #050608;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.sidebar-brand span {
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
}

.sidebar-nav {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
}

.sidebar-nav a,
.link-button {
    display: block;
    width: 100%;
    padding: 11px 12px;
    color: #272d38;
    background: transparent;
    border-radius: 7px;
    text-align: left;
    font-weight: 700;
}

.sidebar-nav a:hover,
.link-button:hover {
    color: var(--orange-dark);
    background: #fff4df;
}

.admin-main {
    min-width: 0;
    padding: 28px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.admin-header h1,
.panel h2 {
    margin: 0;
}

.admin-header h1 {
    color: #050608;
}

.eyebrow,
.muted {
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 4px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-user {
    color: var(--muted);
    font-size: 14px;
}

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

.stat-card,
.panel {
    background: var(--white);
    border: 1px solid #e7e9ee;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(20, 24, 32, 0.05);
}

.stat-card {
    padding: 18px;
    border-top: 4px solid var(--orange);
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.stat-card strong {
    display: block;
    margin-top: 8px;
    color: #050608;
    font-size: 32px;
}

.panel {
    padding: 18px;
}

.panel-header,
.filter-bar,
.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.filter-bar {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

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

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--orange-dark);
    font-size: 13px;
    text-transform: uppercase;
}

.message-cell {
    width: min(42vw, 520px);
    min-width: 280px;
    max-width: 520px;
}

.message-preview {
    display: -webkit-box;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: #272d38;
    line-height: 1.45;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.action-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

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

.badge {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.badge-ok {
    color: var(--success);
    background: #e7f6ee;
}

.badge-wait {
    color: var(--warning);
    background: #fff7df;
}

.stack-form {
    display: grid;
    gap: 10px;
}

.stack-form label {
    font-weight: 700;
}

.stack-form input,
.stack-form select,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #cfd4de;
    border-radius: 7px;
    background: #fff;
}

.stack-form select,
.filter-bar select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23343a46' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
}

.stack-form input:focus,
.stack-form select:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    outline: none;
    border-color: #15803d;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.14);
}

.filter-bar input,
.filter-bar select {
    width: auto;
    min-width: 220px;
}

.primary-button,
.secondary-button,
.small-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.primary-button,
.small-button {
    color: #fff;
    background: var(--green);
}

.primary-button:hover,
.small-button:hover {
    background: var(--green-dark);
}

.secondary-button {
    color: var(--ink);
    background: #fff4df;
}

.secondary-button:hover {
    color: var(--orange-dark);
    background: #ffe8b7;
}

.small-button {
    min-height: 34px;
    font-size: 13px;
}

.secondary-small-button {
    color: var(--ink);
    background: #fff4df;
}

.secondary-small-button:hover {
    color: var(--orange-dark);
    background: #ffe8b7;
}

.modal-backdrop {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(11, 16, 28, 0.58);
}

.modal-backdrop[hidden] {
    display: none;
}

.feedback-detail-modal {
    width: min(100%, 720px);
    max-height: min(760px, calc(100dvh - 48px));
    overflow: auto;
    padding: 22px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.modal-header h2 {
    margin: 2px 0 0;
    color: #050608;
    font-size: 24px;
    line-height: 1.2;
}

.modal-close {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 38px;
    color: #272d38;
    background: #fff4df;
    border: 0;
    border-radius: 7px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--orange-dark);
    background: #ffe8b7;
}

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

.detail-grid div {
    min-width: 0;
    padding: 12px;
    background: #f7f8fa;
    border: 1px solid #e7e9ee;
    border-radius: 7px;
}

.detail-grid dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-grid dd {
    margin: 4px 0 0;
    color: #15171d;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.detail-message-block {
    padding: 14px;
    background: #fffdf8;
    border: 1px solid #efdcc6;
    border-radius: 7px;
}

.detail-message-block h3 {
    margin: 0 0 10px;
    color: var(--orange-dark);
    font-size: 14px;
    text-transform: uppercase;
}

.detail-message-block p {
    max-height: 320px;
    margin: 0;
    overflow: auto;
    color: #272d38;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.two-column {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.narrow-form {
    max-width: 520px;
}

.checkbox-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkbox-row input {
    width: auto;
    min-height: auto;
}

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

    .sidebar {
        position: static;
        border-right: 0;
        border-bottom: 1px solid #e7e9ee;
    }

    .sidebar-brand {
        margin-bottom: 16px;
    }

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

    .stats-grid,
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .public-shell {
        padding: 8px;
        align-items: start;
    }

    .feedback-card {
        height: auto;
        max-height: none;
        min-height: calc(100dvh - 16px);
        overflow: visible;
        padding: 76px 14px 22px;
    }

    .feedback-pattern {
        top: 22px;
        left: 16px;
        width: 94px;
    }

    .feedback-chilies {
        top: 24px;
        right: 16px;
        width: 86px;
    }

    .feedback-plants {
        display: none;
    }

    .feedback-dots {
        right: 16px;
        bottom: 14px;
        opacity: 0.45;
    }

    .logo-mark {
        width: 82px;
        height: 82px;
        margin-bottom: 14px;
    }

    .feedback-card h1 {
        margin-bottom: 14px;
        font-size: 23px;
        line-height: 1.18;
    }

    .feedback-form {
        overflow: visible;
        gap: 12px;
        padding-right: 0;
    }

    .feedback-privacy-note {
        margin-top: -2px;
        font-size: 11.5px;
        line-height: 1.38;
    }

    .field-group {
        gap: 6px;
    }

    .field-group:nth-of-type(2) {
        min-height: 0;
        flex: 0 0 auto;
        grid-template-rows: none;
    }

    .field-group label {
        gap: 10px;
        font-size: 18px;
    }

    .field-icon {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }

    .field-icon .phone-icon {
        width: 32px;
        height: 32px;
    }

    .feedback-form input,
    .feedback-form select,
    .feedback-form textarea {
        font-size: 16px;
    }

    .feedback-form input,
    .feedback-form select {
        min-height: 52px;
        padding: 0 16px;
    }

    .custom-select-button {
        min-height: 52px;
        padding: 0 14px 0 16px;
        font-size: 16px;
    }

    .locked-outlet {
        min-height: 52px;
        padding: 0 16px;
        font-size: 16px;
    }

    .select-chevron {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        stroke-width: 3;
    }

    .custom-select-menu {
        top: calc(100% + 6px);
        max-height: 190px;
        padding: 5px;
    }

    .custom-select-menu button {
        min-height: 38px;
        font-size: 15px;
    }

    .feedback-form textarea {
        min-height: 145px;
        height: auto;
        padding: 14px 16px;
    }

    .submit-button {
        min-height: 52px;
        gap: 14px;
        border-radius: 6px;
        font-size: 22px;
    }

    .submit-button svg {
        width: 26px;
        height: 26px;
        stroke-width: 2.6;
    }

    .field-error {
        margin-top: 0;
        font-size: 12px;
    }

    .success-shell {
        padding: 0;
    }

    .success-card {
        width: min(100%, 414px);
        min-height: 100dvh;
        padding: 42px 28px 40px;
        border-radius: 0;
    }

    .success-pattern {
        top: 42px;
        left: 20px;
        width: 104px;
    }

    .success-pattern span {
        border-left-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 18px;
    }

    .success-chilies {
        top: 54px;
        right: 20px;
        width: 100px;
    }

    .success-logo {
        width: 145px;
        height: 145px;
        margin-top: 112px;
    }

    .success-copy {
        margin-top: 24px;
    }

    .success-copy h1 {
        font-size: 42px;
    }

    .success-copy p {
        font-size: 25px;
    }

    .success-duck {
        width: 105px;
        margin: 18px 0 24px;
    }

    .success-plants {
        left: 22px;
        gap: 14px;
    }

    .success-plants span {
        height: 90px;
    }

    .success-plants span:nth-child(2) {
        height: 112px;
    }

    .success-plants span:nth-child(3) {
        height: 70px;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-header,
    .panel-header,
    .form-actions {
        display: grid;
        justify-content: stretch;
    }

    .filter-bar input,
    .filter-bar select,
    .filter-bar button,
    .filter-bar a {
        width: 100%;
    }

    .message-cell {
        width: 320px;
        min-width: 260px;
    }

    .modal-backdrop {
        padding: 12px;
    }

    .feedback-detail-modal {
        max-height: calc(100dvh - 24px);
        padding: 18px;
    }

    .modal-header h2 {
        font-size: 21px;
    }

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

    .detail-message-block p {
        max-height: 280px;
    }
}
