body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px;
}

.page {
    padding-top: 10px;
}

.narrow {
    max-width: 560px;
}

h1 {
    text-align: center;
    margin: 0 0 28px;
    font-size: 28px;
    color: #222;
}

h2, h3 {
    margin-top: 0;
    color: #222;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 10px 0 16px 0;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

.split {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.split {
    align-items: stretch;
}

.responsive-split {
    gap: 16px;
}

.responsive-split > * {
    flex: 1;
}

.grid {
    display: grid;
    gap: 18px;
}

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tile,
.card,
.button-link,
button,
input,
select,
textarea {
    border: 1px solid #555;
    background: #fff;
    box-sizing: border-box;
}

.tile {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    font-size: 20px;
    color: #222;
    text-decoration: none;
    transition: 0.2s;
}

.tile:hover {
    background: #ececec;
}

.card {
    padding: 16px;
    background: #fff;
}

.card.small {
    display: inline-block;
    min-width: 220px;
}

form.card,
.form-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.form-row .form-field {
    min-width: 220px;
    flex: 1 1 220px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input,
select,
textarea,
button,
.button-link {
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 0;
}

input,
select,
textarea {
    width: 100%;
    color: #222;
}

button,
.button-link {
    cursor: pointer;
    color: #222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    transition: 0.2s;
}

button:hover,
.button-link:hover {
    background: #ececec;
}

.primary-button {
    font-weight: 600;
}

.secondary-button {
    background: #fff;
}

.danger-button {
    background: #c0392b;
    color: #fff;
    border: 1px solid #a93226;
}

.danger-button:hover {
    background: #a93226;
}

.small-button {
    padding: 7px 10px;
    font-size: 14px;
}

.inline-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.small-input {
    width: 96px;
    padding: 7px 8px;
    font-size: 14px;
}

.secondary-action {
    text-align: center;
}

.alert {
    border: 1px solid #555;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: #fff;
}

.success {
    border-left: 4px solid #2e7d32;
}

.error {
    border-left: 4px solid #c62828;
}

.field-error {
    color: #c62828;
    font-size: 14px;
    margin-top: 4px;
}

.hint {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.muted {
    color: #777;
    font-size: 14px;
    font-style: italic;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    border: 1px solid #555;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

th {
    background: #fafafa;
}

.actions form {
    display: inline;
    margin: 0;
}

.table-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.feed-page .card {
    overflow-x: auto;
}

.feeding-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.feeding-table th,
.feeding-table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feeding-table th:last-child,
.feeding-table td:last-child {
    width: 170px;
    text-align: center;
}

.print-only {
    display: none;
}

.print-actions {
    margin-top: 20px;
    text-align: center;
}

.print-page-body {
    background: #f5f6f8;
    margin: 0;
    padding: 24px;
    color: #222;
}

.print-page {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.print-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.print-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e5e7eb;
}

.print-header h1 {
    margin: 0;
    font-size: 30px;
}

.print-subtitle {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #555;
}

.print-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.print-info-card h3 {
    margin-bottom: 14px;
}

.print-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.print-section {
    margin-bottom: 24px;
}

.print-meal-card {
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
}

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

.print-table th,
.print-table td {
    border: 1px solid #dcdfe4;
    padding: 10px 12px;
    text-align: left;
}

.print-table th {
    background: #f3f4f6;
}

.print-totals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.print-total-row {
    padding: 8px 0;
    border-bottom: 1px dashed #d1d5db;
}

.print-total-row:last-child {
    border-bottom: none;
}

.print-footer {
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
    color: #777;
    font-size: 13px;
}

.menu-btn,
.tile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.users-tile {
    grid-column: 1 / 2;
}

@media (max-width: 900px) {
    .top-bar,
    .actions,
    .split {
        flex-direction: column;
        align-items: stretch;
    }

    .page {
        padding: 18px 16px;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row .form-field {
        width: 100%;
    }

    .table-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .print-page {
        padding: 20px;
    }

    .print-totals-grid {
        grid-template-columns: 1fr;
    }

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

@media print {
    @page {
        size: A4;
        margin: 12mm;
    }

    body,
    body.print-page-body {
        background: #fff;
        color: #000;
        padding: 0;
    }

    .no-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }

    .page,
    .print-page {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .print-info-card,
    .print-meal-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

.feeding-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.feeding-table th,
.feeding-table td {
    vertical-align: middle;
    word-wrap: break-word;
}

.feeding-table th:nth-child(2),
.feeding-table td:nth-child(2) {
    text-align: center;
}

.feeding-table th:nth-child(3),
.feeding-table td:nth-child(3) {
    text-align: center;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feeding-summary-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 8px;
    background: #fff;
}

.feeding-summary-table th,
.feeding-summary-table td {
    border: 1px solid #555;
    padding: 18px 16px;
    text-align: center;
    vertical-align: middle;
}

.feeding-summary-table th {
    background: #fafafa;
    font-weight: 600;
}

.feeding-summary-table td {
    line-height: 1.7;
}

.feeding-top-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: stretch;
}

.feeding-time-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feeding-time-box {
    border: 1px solid #555;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.feeding-time-title {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #555;
    font-weight: 600;
}

.feeding-time-box select {
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 14px 12px;
    background: #fff;
}

.feeding-time-box select:focus {
    outline: none;
}

@media (max-width: 1000px) {
    .feeding-top-layout {
        grid-template-columns: 1fr;
    }
}

.button-link.active {
    background-color: #16a34a;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.top-bar-home {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.logout-form {
    margin: 0;
}

.container-preview {
    width: 72px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.portion-cell {
    text-align: center;
    vertical-align: middle;
}

.delete-cell {
    text-align: center;
    vertical-align: middle;
}

.delete-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portion-adjust-form {
    margin: 0 auto;
    width: 260px;
}

.portion-editor {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.portion-row {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 6px;
    width: 100%;
    align-items: stretch;
}

.portion-side-button {
    width: 42px;
    min-width: 42px;
    height: 38px;
    padding: 0;
    font-size: 18px;
    line-height: 1;
}

.portion-cups-input {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 10px;
    text-align: center;
    font-size: 16px;
    line-height: 38px;
    box-sizing: border-box;
}

.save-button {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    justify-content: center;
}
.meal-title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin: 12px 0 10px;
    color: #222;
}
.page-subtitle {
    max-width: 900px;
    margin: -6px auto 24px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #5f6b7a;
}

.home-info {
    margin-top: 28px;
    padding: 22px 24px;
}

.home-info h2 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.home-info-text {
    margin: 0 0 16px;
    text-align: center;
    color: #5f6b7a;
    line-height: 1.5;
}

.home-steps {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 22px;
    line-height: 1.8;
}

.home-steps li {
    margin-bottom: 6px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 10px;
}

.stat-card {
    background: white;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}
.page-subtitle {
    max-width: 900px;
    margin: -6px auto 24px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #5f6b7a;
}

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

.table-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.table-link:hover {
    text-decoration: underline;
}

.status-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.status-badge.success {
    background: #e8f7ee;
    color: #1f7a45;
}

.status-badge.warning {
    background: #fff4e5;
    color: #b26a00;
}

.empty-state {
    margin-top: 28px;
    padding: 36px 24px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.empty-state-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.empty-state h2 {
    margin: 0 0 10px;
}

.empty-state p {
    margin: 0 0 18px;
    color: #5f6b7a;
}

.inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.top-bar-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-center {
    flex: 1;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #5f6b7a;
    max-width: 600px;
}
.actions-bar {
    margin-top: 12px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-logo {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
}

.login-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 28px 24px;
}

.form-subtitle {
    margin: -4px 0 18px;
    text-align: center;
    color: #5f6b7a;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.full-width {
    width: 100%;
}

.login-form input {
    width: 100%;
    box-sizing: border-box;
}
.login-shell {
    min-height: 100vh;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
            radial-gradient(circle at top left, rgba(111, 173, 255, 0.18), transparent 28%),
            radial-gradient(circle at bottom right, rgba(91, 214, 170, 0.16), transparent 30%),
            #f6f8fc;
    box-sizing: border-box;
}

.login-layout {
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.login-brand-panel {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef4ff;
    color: #3559a8;
    font-size: 14px;
    font-weight: 700;
}

.login-brand-panel h1 {
    margin: 0 0 16px;
    font-size: 38px;
    line-height: 1.2;
    color: #1f2937;
}

.login-brand-text {
    margin: 0 0 24px;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6b7a;
}

.login-features {
    display: grid;
    gap: 14px;
}

.login-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
}

.login-feature-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f4f7fb;
    font-size: 20px;
}

.login-feature-title {
    margin-bottom: 4px;
    font-weight: 700;
    color: #1f2937;
}

.login-feature-text {
    color: #5f6b7a;
    line-height: 1.5;
    font-size: 14px;
}

.login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card-saas {
    width: 100%;
    max-width: 460px;
    padding: 30px 26px;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.10);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
}

.login-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-card-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f6ff;
    font-size: 28px;
}

.login-card-header h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.form-subtitle {
    margin: 0;
    color: #5f6b7a;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1f2937;
}

.login-form input {
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8e0ea;
    border-radius: 12px;
    background: #ffffff;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #7aa7ff;
    box-shadow: 0 0 0 4px rgba(122, 167, 255, 0.16);
}

.full-width {
    width: 100%;
}

.login-submit {
    min-height: 48px;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
}

.login-footer-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #7a8594;
}

@media (max-width: 980px) {
    .login-layout {
        grid-template-columns: 1fr;
    }

    .login-brand-panel {
        padding: 24px;
    }

    .login-brand-panel h1 {
        font-size: 30px;
    }

    .login-card-saas {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .login-shell {
        padding: 18px 12px;
    }

    .login-brand-panel,
    .login-card-saas {
        border-radius: 18px;
        padding: 20px 18px;
    }

    .login-brand-panel h1 {
        font-size: 26px;
    }

    .login-card-header h2 {
        font-size: 24px;
    }
}
.measuring-container-preview {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #d8dee8;
    padding: 6px;
}

.measuring-container-owner-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.modal-overlay.hidden {
    display: none;
}

.modal-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.modal-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.modal-box h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.modal-box p {
    margin: 0 0 10px;
    line-height: 1.5;
    color: #374151;
}

.modal-hint {
    font-size: 14px;
    color: #6b7280;
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.measuring-usage-card {
    margin-bottom: 20px;
}

.measuring-usage-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    align-items: end;
}

.measuring-usage-info p {
    margin: 0 0 12px;
}

.measuring-usage-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.measuring-usage-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

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

    .measuring-usage-actions {
        grid-template-columns: 1fr;
    }
}
.measuring-usage-note {
    margin: -4px 0 14px;
}
.warning-summary-card {
    margin: 18px auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 420px;
    text-align: center;
}

.center-warning-card {
    margin-top: 18px;
}

.warning-summary-icon {
    font-size: 28px;
}

.warning-summary-title {
    font-size: 14px;
    color: #6b7280;
}

.warning-summary-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.warning-ok {
    border-left: 6px solid #16a34a;
    background: #f0fdf4;
}

.warning-danger {
    border-left: 6px solid #dc2626;
    background: #fef2f2;
}

.stat-card-success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.stat-card-danger {
    border: 1px solid #fecaca;
    background: #fef2f2;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.field-error {
    color: #c62828;
    font-size: 14px;
    font-weight: 600;
}

.content-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
}

.info-value {
    text-align: right;
}

.recommendation-list {
    margin: 0;
    padding-left: 20px;
}

.recommendation-list li {
    margin-bottom: 8px;
}
.error-list {
    margin: 0;
    padding-left: 18px;
}

.error-list li {
    margin: 4px 0;
}

.field-error {
    margin-top: 6px;
    color: #b42318;
    font-size: 14px;
}

.full-width {
    grid-column: 1 / -1;
}
.error-list {
    margin: 0;
    padding-left: 18px;
}

.error-list li {
    margin: 4px 0;
}