﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/* ===== Font ===== */
@font-face {
    font-family: 'CameraPlain';
    src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

/* ===== Design Tokens ===== */
:root {
    --res-bg: #f4f5f7;
    --res-bg-soft: #f2f3f4;
    --res-text: #13161b;
    --res-text-muted: #646b75;
    --res-nav-text: #5d6773;
    --res-nav-text-popup: #56616e;
    --res-green: #2f6f58;
    --res-green-dark: #255846;
    --res-border: #e4e7eb;
    --res-white: #fff;
    --res-font: 'CameraPlain', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --res-radius: 14px;
    --res-radius-sm: 10px;
    --res-shadow: 0 1px 2px rgba(18, 22, 28, .05);
    --res-shadow-hover: 0 10px 28px rgba(16, 22, 32, .09);
    --res-transition: .25s ease;
    --res-max-width: 1180px;
    --res-header-height: 82px;
}

/* ===== Reset & Global ===== */
html, body {
    font-family: var(--res-font);
    background: var(--res-bg);
    color: var(--res-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--res-font);
    color: var(--res-text);
    line-height: 1.2;
    margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

h1:focus { outline: none; }

a, .btn-link {
    color: var(--res-green);
    text-decoration: none;
    transition: color var(--res-transition);
}
a:hover, .btn-link:hover { color: var(--res-green-dark); }

.btn-primary {
    color: var(--res-white);
    background-color: var(--res-green);
    border-color: var(--res-green);
    border-radius: var(--res-radius);
    font-family: var(--res-font);
    font-weight: 500;
    letter-spacing: .02em;
    transition: background var(--res-transition);
}
.btn-primary:hover {
    background-color: var(--res-green-dark);
    border-color: var(--res-green-dark);
}

.content {
    padding-top: 0;
}

/* ===== Header ===== */
.res-header {
    height: var(--res-header-height);
    background: var(--res-bg);
    border-bottom: 1px solid var(--res-border);
    display: flex;
    align-items: center;
    padding: 0 clamp(16px, 4vw, 48px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.res-header-inner {
    max-width: var(--res-max-width);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.res-brand a { display: flex; align-items: center; }
.res-brand img {
    height: 48px;
    width: auto;
}
.res-brand-text {
    color: var(--res-text);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1;
}

.res-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.res-search-box {
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.res-search-box .ant-input {
    border-radius: var(--res-radius-sm) 0 0 var(--res-radius-sm);
    border: 1px solid var(--res-border);
    height: 36px;
    width: 118px;
    font-family: var(--res-font);
    background: var(--res-white);
}
.res-search-box .ant-btn {
    border-radius: 0 var(--res-radius-sm) var(--res-radius-sm) 0;
    height: 36px;
    background: var(--res-green);
    border: 1px solid var(--res-green);
    color: var(--res-white);
}
.res-search-box .ant-btn:hover {
    background: var(--res-green-dark);
    border-color: var(--res-green-dark);
}

.res-quote-btn {
    background: var(--res-green) !important;
    color: var(--res-white) !important;
    border: 1px solid var(--res-green) !important;
    border-radius: var(--res-radius) !important;
    height: 42px !important;
    padding: 0 24px !important;
    font-family: var(--res-font);
    font-weight: 500;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: background var(--res-transition);
}
.res-quote-btn:hover {
    background: var(--res-green-dark) !important;
}

.res-quote-btn:focus,
.res-outline-btn:focus,
.res-card-link-btn:focus,
.res-cta-main-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .25) !important;
}

.res-quote-btn:focus-visible,
.res-outline-btn:focus-visible,
.res-card-link-btn:focus-visible,
.res-cta-main-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .25) !important;
}

.res-header-right .res-quote-btn {
    height: 36px !important;
    padding: 0 16px !important;
}

.res-outline-btn {
    background: transparent !important;
    color: var(--res-text) !important;
    border: 1px solid var(--res-border) !important;
    border-radius: var(--res-radius) !important;
    height: 44px !important;
    padding: 0 24px !important;
    font-weight: 500;
}

.res-outline-btn:hover {
    color: var(--res-white) !important;
    background: var(--res-green-dark) !important;
    border-color: var(--res-green-dark) !important;
}

/* ===== Navigation ===== */
.res-nav .ant-menu {
    background: transparent;
    border: none;
    font-family: var(--res-font);
    font-size: .86rem;
    letter-spacing: .01em;
}
.res-nav .ant-menu-horizontal {
    line-height: var(--res-header-height);
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}
.res-nav .ant-menu-item,
.res-nav .ant-menu-submenu-title {
    color: var(--res-nav-text) !important;
    font-weight: 500;
    padding: 0 8px !important;
    white-space: nowrap;
}
.res-nav .ant-menu-item,
.res-nav .ant-menu-submenu {
    flex: 0 0 auto;
}
.res-nav .ant-menu-item:hover,
.res-nav .ant-menu-submenu-title:hover,
.res-nav .ant-menu-item-active,
.res-nav .ant-menu-submenu-active > .ant-menu-submenu-title {
    color: var(--res-green) !important;
    background: rgba(47, 111, 88, .08) !important;
    border-radius: 8px;
}
.res-nav .ant-menu-horizontal > .ant-menu-item::after,
.res-nav .ant-menu-horizontal > .ant-menu-submenu::after {
    border-bottom-color: transparent !important;
}
.res-nav .ant-menu-horizontal > .ant-menu-item:hover::after,
.res-nav .ant-menu-horizontal > .ant-menu-submenu:hover::after,
.res-nav .ant-menu-horizontal > .ant-menu-item-active::after,
.res-nav .ant-menu-horizontal > .ant-menu-item-selected::after,
.res-nav .ant-menu-horizontal > .ant-menu-submenu-selected::after,
.res-nav .ant-menu-horizontal > .ant-menu-submenu-active::after {
    border-bottom-color: var(--res-green) !important;
}
.res-nav .ant-menu-item a,
.res-nav .ant-menu-submenu-title a {
    color: inherit !important;
    white-space: nowrap;
}
.res-nav .ant-menu-item a:hover,
.res-nav .ant-menu-submenu-title a:hover {
    color: var(--res-green) !important;
}

.res-nav .ant-menu-item:focus-visible,
.res-nav .ant-menu-submenu-title:focus-visible,
.res-nav .ant-menu-item a:focus-visible,
.res-nav .ant-menu-submenu-title a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .25) !important;
    border-radius: 8px;
}

.ant-menu-submenu-popup .ant-menu-item,
.ant-menu-submenu-popup .ant-menu-item a {
    color: var(--res-nav-text-popup) !important;
}

.ant-menu-submenu-popup .ant-menu-item:hover,
.ant-menu-submenu-popup .ant-menu-item-active,
.ant-menu-submenu-popup .ant-menu-item-selected {
    background: rgba(47, 111, 88, .10) !important;
    color: var(--res-green) !important;
    font-weight: 600;
}

.ant-menu-submenu-popup .ant-menu-item:focus-visible,
.ant-menu-submenu-popup .ant-menu-item a:focus-visible {
    outline: none;
    background: rgba(47, 111, 88, .10) !important;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .25) inset !important;
    border-radius: 8px;
}

.ant-menu-submenu-popup .ant-menu-item:hover a,
.ant-menu-submenu-popup .ant-menu-item-active a,
.ant-menu-submenu-popup .ant-menu-item-selected a {
    color: var(--res-green) !important;
}

/* Collapsed mobile menu */
.res-nav-collapsed .ant-menu {
    background: var(--res-white);
    border-radius: var(--res-radius-sm);
}
.res-nav-collapsed .ant-menu-item a,
.res-nav-collapsed .ant-menu-submenu-title a {
    color: var(--res-text) !important;
}

/* ===== Footer ===== */
.res-footer {
    background: #0d1118 !important;
    color: rgba(255,255,255,.85);
    padding: 72px clamp(16px, 4vw, 48px) 32px;
}
.ant-layout-footer.res-footer {
    background: #0d1118 !important;
    padding: 72px clamp(16px, 4vw, 48px) 32px !important;
}
.res-footer-inner {
    max-width: var(--res-max-width);
    margin: 0 auto;
}

.res-footer-inner > .ant-row:first-child {
    margin-top: 8px;
}
.res-footer strong,
.res-footer h4 {
    color: var(--res-white);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
    font-size: 1rem;
    letter-spacing: .03em;
}
.res-footer a {
    color: rgba(255,255,255,.7);
    transition: color var(--res-transition);
    line-height: 2;
}
.res-footer a:hover { color: var(--res-white); }
.res-footer-text {
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin: 0 0 14px;
}
.res-footer-copyright {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}
.res-footer .anticon {
    color: rgba(255,255,255,.7);
}
.res-footer .anticon:hover {
    color: var(--res-white);
}

.res-footer-social {
    margin-left: 10px;
}

.res-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255,255,255,.75);
    margin: 0 0 8px;
    line-height: 1.8;
}

.res-footer-cache {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
}

.res-footer-cache .ant-switch {
    background: rgba(255,255,255,.35);
}

.res-footer-cache .ant-switch-checked {
    background: var(--res-green);
}

/* ===== Section Containers ===== */
.res-section {
    background: #f7f8fa;
    padding: 92px clamp(16px, 4vw, 48px);
}
.res-section-inner {
    max-width: var(--res-max-width);
    margin: 0 auto;
}
.res-section-soft,
.res-section-warm {
    background: #e9edf1;
}
.res-section-title {
    font-family: var(--res-font);
    font-size: clamp(1.9rem, 3.1vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--res-text);
    letter-spacing: -.01em;
}
.res-section-subtitle {
    text-align: center;
    color: var(--res-text-muted);
    max-width: 760px;
    margin: 0 auto 44px;
    font-size: 1.07rem;
    line-height: 1.65;
}
.res-section-note {
    text-align: center;
    color: var(--res-text-muted);
    margin: 36px 0 0;
    font-size: 1.06rem;
}

/* ===== Contact Page ===== */
.res-contact-section {
    padding-top: 76px;
    padding-bottom: 56px;
}

.res-contact-map-section {
    padding-top: 0;
    padding-bottom: 92px;
}

.res-contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.res-contact-info-card,
.res-contact-form-card,
.res-contact-map-card {
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius);
    box-shadow: var(--res-shadow);
}

.res-contact-info-card,
.res-contact-form-card,
.res-article-card {
    transition: box-shadow var(--res-transition), transform var(--res-transition);
}

.res-contact-info-card:hover,
.res-contact-form-card:hover,
.res-article-card:hover {
    box-shadow: var(--res-shadow-hover);
    transform: translateY(-1px);
}

.res-contact-info-card,
.res-contact-form-card {
    padding: 28px 24px;
}

.res-contact-title {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.res-contact-subtitle {
    margin: 0 0 22px;
    color: var(--res-text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.res-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.res-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--res-border);
}

.res-contact-item:first-child {
    border-top: none;
    padding-top: 0;
}

.res-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #e8f0ec;
    color: var(--res-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
}

.res-contact-item strong {
    color: var(--res-text);
    font-weight: 600;
}

.res-contact-item p {
    margin: 4px 0 0;
    color: var(--res-text-muted);
    line-height: 1.6;
}

.res-contact-item a {
    color: var(--res-green);
}

.res-contact-item a:hover {
    color: var(--res-green-dark);
}

.res-contact-form-card .ant-typography {
    margin-bottom: 18px !important;
    text-align: left !important;
}

.res-contact-form-card .res-leave-message-title {
    margin-bottom: 18px !important;
    line-height: 1.25;
}

.res-contact-form-card .res-leave-message-subtitle {
    display: block;
    margin-top: 6px;
    color: var(--res-text-muted);
    font-size: .96rem;
    font-weight: 400;
}

.res-contact-form-card .ant-form-item {
    margin-bottom: 14px;
}

.res-contact-form-card .ant-result {
    padding: 20px 8px;
}

.res-contact-form-card .ant-input,
.res-contact-form-card .ant-input-affix-wrapper,
.res-contact-form-card .ant-input-search .ant-input {
    border-radius: 10px !important;
    border-color: var(--res-border) !important;
}

.res-contact-form-card .ant-input:focus,
.res-contact-form-card .ant-input-affix-wrapper:focus,
.res-contact-form-card .ant-input-affix-wrapper-focused {
    border-color: var(--res-green) !important;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .16) !important;
}

.res-contact-form-card .ant-input-search-button {
    background: var(--res-green) !important;
    border-color: var(--res-green) !important;
    border-radius: 0 10px 10px 0 !important;
}

.res-contact-form-card .ant-btn {
    font-family: var(--res-font);
    font-weight: 500;
    letter-spacing: .01em;
}

.res-contact-form-card .ant-input-search-button:hover {
    background: var(--res-green-dark) !important;
    border-color: var(--res-green-dark) !important;
}

.res-contact-map-card {
    padding: 8px;
    overflow: hidden;
}

.res-contact-map {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: calc(var(--res-radius) - 6px);
}

/* ===== Article Page ===== */
.res-article-section {
    padding-top: 76px;
    padding-bottom: 92px;
}

.res-article-card {
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius);
    box-shadow: var(--res-shadow);
    padding: clamp(20px, 3vw, 36px);
}

.res-article-about-card {
    background: linear-gradient(180deg, #ffffff 0, #f9fbfc 190px, #ffffff 190px);
}

.res-article-eyebrow {
    margin-bottom: 8px;
    color: #6a7380;
}

.res-article-title {
    margin: 0;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -.01em;
}

.res-article-title a {
    color: var(--res-text);
}

.res-article-title a:hover {
    color: var(--res-green);
}

.res-article-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.res-article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--res-text-muted);
    font-size: .95rem;
}

.res-article-like-link {
    display: inline-flex;
    align-items: center;
    color: var(--res-green);
}

.res-article-like-link:hover {
    color: var(--res-green-dark);
}

.res-article-divider {
    margin: 18px 0 22px !important;
    border-top-color: var(--res-border) !important;
}

.res-article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #2a2f37;
    max-width: 980px;
}

.res-article-body p {
    margin: 0 0 1em;
}

.res-article-body > p:first-child {
    font-size: 1.07rem;
    color: #38404b;
}

.res-article-body a {
    color: var(--res-green);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.res-article-body a:hover {
    color: var(--res-green-dark);
}

.res-article-body ul,
.res-article-body ol {
    margin: 0 0 1em;
    padding-left: 1.2rem;
}

.res-article-body h1,
.res-article-body h2,
.res-article-body h3,
.res-article-body h4,
.res-article-body h5,
.res-article-body h6 {
    margin: 1.25em 0 .5em;
    line-height: 1.3;
}

.res-article-body head-1,
.res-article-body head-2,
.res-article-body head-3 {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 8px;
    display: block;
}

.res-article-body head-1 {
    font-size: 1.6rem;
}

.res-article-body head-2 {
    font-size: 1.45rem;
}

.res-article-body head-3 {
    font-size: 1.2rem;
}

.res-article-body .divcenter {
    text-align: center;
}

.res-article-body img,
.res-article-body .imgfull {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.res-article-body img {
    display: block;
    margin: 16px auto;
}

.res-article-body .imgright {
    max-width: 300px;
    max-height: 300px;
    float: right;
    margin: 8px 0 12px 16px;
}

.res-article-body .accordionbutton {
    background: transparent;
    cursor: pointer;
    padding: 14px 16px;
    width: 100%;
    text-align: left;
    border: 1px solid var(--res-border);
    border-radius: 10px;
    outline: none;
    transition: background var(--res-transition), border-color var(--res-transition);
}

.res-article-body .accordionbutton:hover {
    background: #f5f7f9;
    border-color: #d8dde3;
}

.res-article-body .accordiondiv {
    padding: 8px 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    margin-left: 8px;
}

.res-article-body .accordionbutton:before {
    content: '\002B';
    font-weight: 700;
    margin-right: 5px;
}

.res-article-body .accordionactive:before {
    content: '\2212';
}

.res-article-body table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 16px 0;
    border: 1px solid #d7dce2;
}

.res-article-body table caption {
    color: var(--res-text);
    padding: 1em 0;
    text-align: center;
}

.res-article-body table td,
.res-article-body table th {
    border: 1px solid #d7dce2;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: .55em .9em;
}

.res-article-body table thead {
    background: #eef2f5;
    color: var(--res-text);
    text-align: left;
    vertical-align: bottom;
    font-weight: 600;
}

.res-article-body table tr:hover {
    background: #f7f9fb;
}

/* ===== Search Page ===== */
.res-search-section {
    padding-top: 76px;
    padding-bottom: 92px;
}

.res-search-head {
    margin-bottom: 20px;
}

.res-search-title {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    line-height: 1.25;
}

.res-search-stats {
    margin: 8px 0 0;
    color: var(--res-text-muted);
    font-size: .96rem;
}

.res-search-keyword {
    color: var(--res-green);
}

.res-search-list .ant-list-item {
    padding: 4px !important;
}

.res-search-card {
    height: 100%;
    border: 1px solid var(--res-border) !important;
    border-radius: var(--res-radius) !important;
    overflow: hidden;
    box-shadow: var(--res-shadow);
    cursor: pointer;
    transition: box-shadow var(--res-transition), transform var(--res-transition);
}

.res-search-card:hover {
    box-shadow: var(--res-shadow-hover);
    transform: translateY(-2px);
}

.res-search-card .ant-card-body {
    padding: 16px 16px 18px;
}

.res-search-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--res-bg-soft);
    border-bottom: 1px solid var(--res-border);
}

.res-search-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.res-search-item-title {
    display: block;
    color: var(--res-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.38;
    min-height: 3.1em;
}

.res-search-item-desc {
    display: block;
    color: var(--res-text-muted);
    line-height: 1.55;
    min-height: 4.4em;
}

.res-search-pagination {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.res-search-pagination .ant-pagination-item-active {
    border-color: var(--res-green) !important;
}

.res-search-pagination .ant-pagination-item-active a {
    color: var(--res-green) !important;
}

.res-search-pagination .ant-pagination-item,
.res-search-pagination .ant-pagination-prev .ant-pagination-item-link,
.res-search-pagination .ant-pagination-next .ant-pagination-item-link {
    border-radius: 8px;
}

.res-search-empty {
    padding: 20px 0 8px;
}

.res-search-skeleton {
    padding: 10px 0;
}

.res-search-hit {
    padding: 0 2px;
    border-radius: 4px;
    background: #e6f3ed;
    color: #265746;
}

/* ===== Product Query ===== */
.res-pq-section {
    padding-top: 76px;
    padding-bottom: 92px;
}

.res-pq-layout,
.res-pq-main {
    background: transparent !important;
}

.res-pq-sider {
    background: transparent !important;
    padding-right: 14px;
}

.res-pq-content {
    background: transparent !important;
}

.res-pq-head {
    margin: 0 0 12px;
}

.res-pq-title {
    margin: 0;
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    line-height: 1.25;
}

.res-pq-subtitle {
    margin: 6px 0 0;
    color: var(--res-text-muted);
    font-size: .95rem;
}

.res-pq-mobile-category,
.res-pq-breadcrumb {
    margin: 0 0 12px !important;
    padding: 12px 14px;
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius-sm);
}

.res-pq-mobile-label {
    color: var(--res-text);
    font-weight: 600;
    margin-right: 8px;
}

.res-pq-section .ant-menu-inline,
.res-pq-section .ant-menu-vertical,
.res-pq-section .ant-menu:not(.ant-menu-horizontal) {
    border-right: none !important;
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius-sm);
}

.res-pq-section .ant-menu-item,
.res-pq-section .ant-menu-submenu-title {
    color: #5e6772 !important;
    border-radius: 8px;
}

.res-pq-section .ant-menu-item:hover,
.res-pq-section .ant-menu-submenu-title:hover,
.res-pq-section .ant-menu-item-active,
.res-pq-section .ant-menu-submenu-active > .ant-menu-submenu-title {
    color: var(--res-green) !important;
    background: rgba(47, 111, 88, .08) !important;
}

.res-pq-section .ant-menu-item-selected,
.res-pq-section .ant-menu-submenu-selected > .ant-menu-submenu-title {
    color: var(--res-green) !important;
    background: rgba(47, 111, 88, .12) !important;
    font-weight: 600;
}

.res-pq-section .ant-menu-item::after,
.res-pq-section .ant-menu-submenu::after {
    border-right-color: transparent !important;
}

.res-pq-section .ant-menu-item-selected::after,
.res-pq-section .ant-menu-submenu-selected::after {
    border-right-color: var(--res-green) !important;
}

.res-pq-breadcrumb a {
    color: #5e6772;
    font-weight: 500;
}

.res-pq-breadcrumb a:hover {
    color: var(--res-green);
}

.res-pq-filter-panel {
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius);
    box-shadow: var(--res-shadow);
    margin-bottom: 16px;
}

.res-pq-filter-body {
    padding: 12px 14px;
}

.res-pq-actions-row {
    margin-top: 14px;
}

.res-pq-apply-btn {
    min-width: 92px;
    border-radius: 10px !important;
}

.res-pq-apply-btn,
.res-pq-more-btn {
    background: var(--res-green) !important;
    border-color: var(--res-green) !important;
    color: var(--res-white) !important;
}

.res-pq-apply-btn:hover,
.res-pq-more-btn:hover {
    background: var(--res-green-dark) !important;
    border-color: var(--res-green-dark) !important;
}

.res-pq-pagination .ant-pagination-item-active {
    border-color: var(--res-green) !important;
}

.res-pq-pagination .ant-pagination-item-active a,
.res-pq-pagination .ant-pagination-item:hover a {
    color: var(--res-green) !important;
}

.res-pq-filter-panel .ant-select-selector,
.res-pq-filter-panel .ant-input,
.res-pq-filter-panel .ant-input-affix-wrapper {
    border-radius: 10px !important;
    border-color: var(--res-border) !important;
}

.res-pq-filter-panel .ant-select-focused .ant-select-selector,
.res-pq-filter-panel .ant-select:not(.ant-select-disabled):hover .ant-select-selector,
.res-pq-filter-panel .ant-input:focus,
.res-pq-filter-panel .ant-input-affix-wrapper-focused {
    border-color: var(--res-green) !important;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .16) !important;
}

.res-pq-filter-panel .ant-checkbox-checked .ant-checkbox-inner,
.res-pq-filter-panel .ant-radio-checked .ant-radio-inner {
    border-color: var(--res-green) !important;
    background: var(--res-green) !important;
}

.res-pq-filter-panel .ant-checkbox:hover .ant-checkbox-inner,
.res-pq-filter-panel .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.res-pq-filter-panel .ant-radio:hover .ant-radio-inner {
    border-color: var(--res-green) !important;
}

.res-pq-filter-panel .ant-collapse > .ant-collapse-item > .ant-collapse-header {
    color: #5e6772;
}

.res-pq-filter-panel .ant-collapse > .ant-collapse-item-active > .ant-collapse-header {
    color: var(--res-green-dark);
}

.res-pq-filter-panel .ant-slider-track {
    background-color: var(--res-green) !important;
}

.res-pq-filter-panel .ant-slider-handle,
.res-pq-filter-panel .ant-slider-handle:focus,
.res-pq-filter-panel .ant-slider-handle:hover {
    border-color: var(--res-green) !important;
}

.res-pq-filter-panel .ant-slider-dot-active,
.res-pq-filter-panel .ant-slider-mark-text-active {
    border-color: var(--res-green) !important;
    color: var(--res-green-dark) !important;
}

.res-pq-filter-panel .ant-input-number {
    border-radius: 10px;
    border-color: var(--res-border);
}

.res-pq-filter-panel .ant-input-number:hover,
.res-pq-filter-panel .ant-input-number-focused {
    border-color: var(--res-green) !important;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .16) !important;
}

.res-pq-filter-panel .ant-select-selection-item {
    background: #e7f2ec !important;
    border-color: #cfe4da !important;
    color: #2b5f4d !important;
}

.res-pq-pagination-col {
    text-align: right;
}

.res-pq-list .ant-list-item {
    padding: 4px !important;
}

.res-pq-card {
    height: 100%;
    border: 1px solid var(--res-border) !important;
    border-radius: var(--res-radius) !important;
    overflow: hidden;
    box-shadow: var(--res-shadow);
    transition: box-shadow var(--res-transition), transform var(--res-transition);
}

.res-pq-card:hover {
    box-shadow: var(--res-shadow-hover);
    transform: translateY(-2px);
}

.res-pq-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--res-bg-soft);
    border-bottom: 1px solid var(--res-border);
    overflow: hidden;
}

.res-pq-thumb-link {
    width: 100%;
    height: 100%;
    display: block;
}

.res-pq-thumb-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 88, .25) inset;
}

.res-pq-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.res-pq-card .ant-card-body {
    padding: 12px 14px;
}

.res-pq-card .ant-card-meta-title {
    white-space: normal;
    line-height: 1.35;
    min-height: 2.6em;
}

.res-pq-item .ant-ribbon-text {
    font-size: .78rem;
    letter-spacing: .02em;
}

.res-pq-load-more {
    text-align: center;
    margin-top: 12px;
    height: 34px;
    line-height: 34px;
}

.res-pq-more-btn {
    border-radius: 10px !important;
    height: 34px !important;
}

/* ===== Product View ===== */
.res-pv-section {
    padding-top: 76px;
    padding-bottom: 92px;
}

.res-pv-row {
    margin: 0;
}

.res-pv-breadcrumb {
    margin: 0 0 14px !important;
}

.res-pv-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.res-pv-table td {
    padding: 10px 0;
    border-bottom: none;
    vertical-align: top;
}

.res-pv-table tr:last-child td {
    border-bottom: none;
}

.res-pv-media-cell {
    width: 47%;
}

.res-pv-main-image-wrap {
    width: 100%;
    text-align: center;
}

.res-pv-main-image-wrap .ant-image-img {
    width: 95%;
    max-width: 420px;
    border-radius: 12px;
    object-fit: cover;
}

.res-pv-info-cell {
    vertical-align: bottom !important;
}

.res-pv-line {
    margin: 0 0 10px;
    color: var(--res-text-muted);
    line-height: 1.65;
}

.res-pv-line b {
    color: var(--res-text);
    font-weight: 600;
}

.res-pv-table a {
    color: var(--res-green);
}

.res-pv-table a:hover {
    color: var(--res-green-dark);
}

.res-pv-stats {
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: var(--res-text-muted);
}

.res-pv-stats .anticon {
    color: var(--res-green);
}

.res-pv-inquire-btn {
    border-radius: 10px !important;
    height: 36px !important;
    font-weight: 500;
}

.res-pv-details-title {
    display: block;
    margin-bottom: 8px;
    color: var(--res-text);
    font-size: 1.02rem;
    font-weight: 600;
}

.res-pv-attachments {
    margin-top: 14px;
}

.res-pv-attachments .ant-list-item {
    padding: 4px 0;
    border-bottom: none;
}

.res-pv-attachments .ant-list-item:last-child {
    border-bottom: none;
}

.res-pv-preview-host {
    display: none;
}

.res-pv-carousel-wrap {
    width: 100%;
    margin-top: 18px;
}

.res-pv-carousel-wrap .ant-carousel .slick-slide {
    text-align: center;
    background: var(--res-white);
    overflow: hidden;
}

.res-pv-carousel-wrap .ant-image-img {
    width: 92%;
    max-width: 800px;
    border-radius: 12px;
}

.res-pv-carousel-controls {
    display: flex;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
    padding-top: 6px;
    gap: 8px;
}

.res-pv-carousel-controls .ant-btn {
    border-radius: 10px;
}

.res-pv-category-additions {
    margin-top: 14px;
    color: var(--res-text-muted);
    line-height: 1.7;
}

/* ===== Eyebrow ===== */
.res-eyebrow {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--res-text-muted);
    margin-bottom: 12px;
}

/* ===== Cards ===== */
.res-card {
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius);
    overflow: hidden;
    transition: box-shadow var(--res-transition), transform var(--res-transition);
}
.res-card:hover {
    box-shadow: var(--res-shadow-hover);
    transform: translateY(-2px);
}
.res-card-body {
    padding: 22px 24px 24px;
}
.res-card-img {
    width: 100%;
    height: 290px;
    display: block;
    object-fit: cover;
    background: var(--res-bg-soft);
    border-radius: calc(var(--res-radius) - 1px) calc(var(--res-radius) - 1px) 0 0;
}
.res-card-body p {
    color: var(--res-text-muted);
    margin: 0 0 14px;
}

.res-card-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--res-border);
    border-radius: 10px;
    color: var(--res-text);
    font-weight: 600;
    background: #fbfbfc;
    transition: background var(--res-transition), color var(--res-transition), border-color var(--res-transition);
}

.res-card-link-btn:hover {
    color: var(--res-white) !important;
    background: var(--res-green-dark);
    border-color: var(--res-green-dark);
}

.res-solution-btn {
    min-width: 190px;
}

/* Category cards */
.res-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.res-category-card {
    background: var(--res-white);
    border: 1px solid var(--res-border);
    border-radius: var(--res-radius);
    overflow: hidden;
    transition: box-shadow var(--res-transition), transform var(--res-transition);
}
.res-category-card:hover {
    box-shadow: var(--res-shadow-hover);
    transform: translateY(-3px);
}
.res-category-card img {
    width: 100%;
    height: 290px;
    display: block;
    object-fit: cover;
    background: var(--res-bg-soft);
    border-radius: calc(var(--res-radius) - 1px) calc(var(--res-radius) - 1px) 0 0;
}

.res-category-body {
    padding: 20px 20px 18px;
}

.res-category-card .res-category-name {
    font-weight: 600;
    font-size: 1.18rem;
    letter-spacing: -.01em;
    line-height: 1.25;
    color: var(--res-text);
    margin-bottom: 8px;
}
.res-category-card .res-category-desc {
    color: var(--res-text-muted);
    font-size: 1.03rem;
    margin-bottom: 14px;
    min-height: 58px;
}

/* ===== Hero (Index page) ===== */
.res-hero {
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 74px clamp(16px, 4vw, 48px);
    background: var(--res-bg);
    border-top: 1px solid var(--res-border);
}
.res-hero-inner {
    max-width: var(--res-max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.res-hero-copy {
    max-width: 620px;
}
.res-hero h1 {
    font-size: clamp(1.28rem, 1.95vw, 2.05rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 22px;
}

.res-hero-intro {
    color: var(--res-text-muted);
    font-size: 1.13rem;
    line-height: 1.6;
    margin: 0 0 22px;
}

.res-hero-warning {
    color: #414853;
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0 0 16px;
}
.res-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.res-hero-bullets li {
    padding: 7px 0 7px 30px;
    position: relative;
    font-size: 1.04rem;
    color: #3f4550;
}
.res-hero-bullets li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--res-green);
    font-weight: 700;
}
.res-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.res-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--res-radius);
    object-fit: cover;
    max-height: 640px;
    border: 1px solid var(--res-border);
}

@media (max-width: 768px) {
    .res-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .res-hero-actions {
        justify-content: center;
    }
    .res-hero-img-wrap {
        order: -1;
    }
}

@media (max-width: 1200px) {
    .res-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .res-nav .ant-menu {
        font-size: .8rem;
    }

    .res-nav .ant-menu-item,
    .res-nav .ant-menu-submenu-title {
        padding: 0 6px !important;
    }
}

@media (max-width: 1400px) {
    .res-header-right {
        gap: 12px;
    }

    .res-search-box {
        margin-right: 6px;
    }

    .res-search-box .ant-input {
        width: 120px;
    }
}

@media (max-width: 900px) {
    .res-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .res-contact-grid {
        grid-template-columns: 1fr;
    }

    .res-contact-map {
        min-height: 280px;
    }

    .res-article-body .imgright {
        float: none;
        max-width: 100%;
        margin: 12px auto;
    }

    .res-search-title {
        font-size: 1.45rem;
    }

    .res-search-item-title,
    .res-search-item-desc {
        min-height: 0;
    }

    .res-pq-sider {
        padding-right: 0;
    }

    .res-pq-actions-row .ant-col {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .res-pq-pagination-col {
        text-align: left;
        margin-top: 10px;
    }

    .res-pv-table,
    .res-pv-table tbody,
    .res-pv-table tr,
    .res-pv-table td {
        display: block;
        width: 100%;
    }

    .res-pv-table td {
        padding: 14px;
    }

    .res-pv-media-cell {
        width: 100%;
    }

    .res-pv-carousel-controls {
        width: 100%;
    }

    .res-header-right .res-search-box {
        display: none;
    }
}

@media (max-width: 600px) {
    .res-category-grid {
        grid-template-columns: 1fr;
    }

    .res-brand-text {
        font-size: 1.6rem;
    }
}

/* ===== Feature Cards (Why Work With Us) ===== */
.res-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.res-feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 6px 6px;
    text-align: center;
}

.res-icon-chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf0ed;
    color: #3f6e5d;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.res-feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.32;
}
.res-feature-card p {
    color: var(--res-text-muted);
    font-size: 1.03rem;
    line-height: 1.52;
    margin: 0 0 12px;
}

.res-feature-note {
    color: #8a8f97 !important;
    font-style: italic;
    margin-top: 10px !important;
}

@media (max-width: 1200px) {
    .res-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .res-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Stats Row (Built for Long-Term B2B) ===== */
.res-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    text-align: center;
}

.res-stat-card {
    padding: 10px 10px;
}

.res-stat-label {
    color: #49515c;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .res-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== Split Section (Quality / Factory) ===== */
.res-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.res-split-reverse {
    direction: rtl;
}
.res-split-reverse > * {
    direction: ltr;
}
.res-split img {
    width: 100%;
    border-radius: var(--res-radius);
    object-fit: cover;
    border: 1px solid var(--res-border);
}

.res-split h2 {
    margin-bottom: 16px;
}

.res-split-intro {
    color: var(--res-text-muted);
    font-size: 1.14rem;
    line-height: 1.62;
    margin: 0 0 20px;
}

.res-split-note {
    color: #7f8590;
    font-size: 1.03rem;
    line-height: 1.62;
    font-style: italic;
    margin: 0 0 16px;
}

.res-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.res-check-list li {
    position: relative;
    padding: 7px 0 7px 30px;
    color: #3f4550;
    font-size: 1.08rem;
}

.res-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--res-green);
    font-weight: 700;
}

.res-action-btn {
    min-width: 290px;
}
@media (max-width: 768px) {
    .res-split,
    .res-split-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

/* ===== Solution Cards ===== */
.res-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1000px) {
    .res-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA Banner ===== */
.res-cta-panel,
.res-cta-banner {
    background: #e2e7eb;
    border-radius: 18px;
    color: var(--res-text);
    text-align: center;
    padding: clamp(40px, 7vw, 72px) clamp(20px, 5vw, 64px);
}
.res-cta-panel h2,
.res-cta-banner h2 {
    color: var(--res-text);
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.12;
}

.res-cta-panel p,
.res-cta-banner p {
    color: var(--res-text-muted);
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 1.12rem;
}
.res-cta-btn {
    background: var(--res-white) !important;
    color: var(--res-green) !important;
    border: none !important;
    border-radius: var(--res-radius) !important;
    height: 44px !important;
    padding: 0 32px !important;
    font-family: var(--res-font);
    font-weight: 600;
    font-size: 1rem;
}
.res-cta-btn:hover {
    background: var(--res-bg-soft) !important;
}

.res-cta-main-btn {
    min-width: 310px;
    height: 48px !important;
    margin-bottom: 16px;
}

.res-cta-note {
    color: #7a8089 !important;
    margin-top: 10px !important;
    font-size: 1rem !important;
}

/* ===== Page Containers ===== */
.res-page {
    max-width: var(--res-max-width);
    margin: 0 auto;
    padding: 32px clamp(16px, 4vw, 48px);
}

/* ===== AntDesign Overrides ===== */
.ant-layout {
    background: var(--res-bg) !important;
}
.ant-layout-header {
    background: var(--res-bg) !important;
    height: auto !important;
    line-height: normal !important;
    padding: 0 !important;
}
.ant-layout-content {
    background: var(--res-bg) !important;
}
.ant-layout-footer {
    padding: 0 !important;
}
.ant-card {
    border-radius: var(--res-radius);
    border-color: var(--res-border);
    font-family: var(--res-font);
}
.ant-card-head-title {
    font-family: var(--res-font);
}
.ant-input {
    font-family: var(--res-font);
}
.ant-btn {
    font-family: var(--res-font);
}
.ant-drawer-title {
    font-family: var(--res-font);
}

/* ===== Validation ===== */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

/* ===== Blazor Error UI ===== */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }
