:root {
    --vt-primary: #2367a8;
    --vt-primary-dark: #174c7d;
    --vt-accent: #2f80c9;
    --vt-ink: #223247;
    --vt-muted: #66768a;
    --vt-surface: #ffffff;
    --vt-background: #f3f6fa;
    --vt-border: #d8e0e9;
    --vt-radius: 10px;
    --vt-shadow: 0 10px 28px rgba(34, 50, 71, .09);
    --vt-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    -webkit-text-size-adjust: 100%;
}

body,
body *,
input,
textarea,
select,
button,
table,
.gridData,
.gridHeader,
.contentHeader {
    font-family: var(--vt-font) !important;
}

body {
    background: var(--vt-background);
    color: var(--vt-ink);
}

.vt-form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

a {
    color: var(--vt-primary);
}

.vt-consent-box {
    clear: both;
    display: grid;
    gap: 9px;
    width: 90%;
    margin: 12px auto 0;
    padding: 12px;
    border: 1px solid #b8c9dc;
    border-radius: 8px;
    background: #f8fbff;
    color: var(--vt-ink);
    font-size: 12px;
    line-height: 1.45;
}

.vt-consent-box-survey {
    width: auto;
    margin: 8px;
}

.vt-consent-box label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
}

.vt-consent-box input[type="checkbox"] {
    flex: 0 0 auto;
    margin-top: 3px;
}

.vt-legal-page {
    margin: 0;
    background: var(--vt-background);
}

.vt-legal-document {
    width: min(920px, calc(100% - 28px));
    margin: 28px auto 60px;
    padding: clamp(20px, 4vw, 36px);
    border: 1px solid var(--vt-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--vt-shadow);
    line-height: 1.65;
}

.vt-legal-document h1 {
    margin: 12px 0 16px;
    color: var(--vt-primary-dark);
}

.vt-legal-document h2 {
    margin: 22px 0 8px;
    color: var(--vt-primary-dark);
    font-size: 18px;
}

:focus-visible {
    outline: 3px solid rgba(47, 128, 201, .38) !important;
    outline-offset: 2px;
}

input,
textarea,
select {
    max-width: 100%;
    border: 1px solid #aebac8;
    border-radius: 6px;
    background: #fff;
    color: var(--vt-ink);
}

input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
    border-color: var(--vt-accent);
    box-shadow: 0 0 0 3px rgba(47, 128, 201, .14);
}

button,
.buttonContainer,
.event-button-container,
.new-homepage-button,
.dropbtn,
.mb-button {
    border-radius: 7px;
    transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

button:active,
.buttonContainer:active,
.event-button-container:active,
.new-homepage-button:active,
.mb-button:active {
    transform: translateY(1px);
}

.event-button-container.vt-disabled-action {
    opacity: .62;
    cursor: not-allowed;
}

.event-button-container.vt-disabled-action:hover {
    background-color: #2C6396;
}

.vt-inline-warning {
    margin: 6px 5px;
    padding: 10px 12px;
    border: 1px solid #ead28a;
    border-radius: 6px;
    background: #fff8df;
    color: #6d4a00;
    line-height: 1.45;
}

.header,
.header-homepage {
    background: linear-gradient(115deg, var(--vt-primary-dark), var(--vt-accent));
    box-shadow: 0 3px 14px rgba(23, 76, 125, .2);
}

.pageContainer {
    padding: 18px;
    background: var(--vt-background);
}

.contentContainer,
.homepage-header {
    width: min(1024px, 100%);
}

.contentRow {
    max-width: 100%;
}

.contentHeader {
    color: var(--vt-primary);
    border-bottom-color: var(--vt-border);
    font-weight: 650;
}

.panelX {
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius);
    box-shadow: var(--vt-shadow);
    overflow: hidden;
}

.vt-entry-sequence-cell {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.vt-entry-sequence {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 22px;
    padding: 2px 6px;
    border: 1px solid #b9c9d8;
    border-radius: 4px;
    background: #edf3f8;
    color: var(--vt-primary-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.vt-table-toolbar {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--vt-border);
    gap: 10px;
    background: #f8fafc;
}

.vt-table-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 320px;
    max-width: 440px;
}

.vt-table-search-icon {
    position: absolute;
    z-index: 1;
    left: 10px;
    width: 18px;
    height: 18px;
    background-image: url('../image/grid/magnify-black.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    opacity: .64;
    pointer-events: none;
}

.vt-table-search input {
    width: 100%;
    height: 38px;
    padding: 7px 34px;
    border-color: #b8c5d1;
    background: #fff;
    font-size: 13px;
}

.vt-table-result-count {
    margin-left: auto;
    color: var(--vt-muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    font-weight: 650;
    white-space: nowrap;
}

.vt-table-reset {
    min-height: 36px;
    padding: 6px 11px;
    border: 1px solid #b8c5d1;
    border-radius: 6px;
    background: #fff;
    color: var(--vt-primary-dark);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.vt-table-reset:hover {
    border-color: var(--vt-primary);
    background: #edf4fa;
}

.vt-table-search-submit {
    min-height: 36px;
    padding: 6px 14px;
    border: 1px solid var(--vt-primary);
    border-radius: 6px;
    background: var(--vt-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.vt-table-search-submit:hover,
.vt-table-search-submit:focus-visible {
    border-color: var(--vt-primary-dark);
    background: var(--vt-primary-dark);
}

.vt-table-scroll {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

.vt-data-table {
    width: 100%;
    min-width: 880px;
    border: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.vt-table-caption {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vt-data-table thead th {
    height: 42px;
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, .18);
    background: #376f9f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

.vt-data-table thead th:last-child {
    border-right: 0;
}

.vt-table-header-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: stretch;
    min-height: 42px;
}

.vt-table-sort,
.vt-table-filter {
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 7px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.vt-table-sort {
    overflow: hidden;
    font-size: 12px;
    font-weight: 750;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-table-sort:hover,
.vt-table-sort:focus-visible,
.vt-table-filter:hover,
.vt-table-filter:focus-visible {
    background: rgba(255, 255, 255, .14);
}

.vt-sort-indicator {
    display: inline-block;
    min-width: 13px;
    margin-left: 3px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    text-align: center;
}

.vt-table-filter {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.vt-table-filter::before {
    position: absolute;
    inset: 0;
    width: 18px;
    height: 18px;
    margin: auto;
    background-image: url('../image/filter.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    filter: brightness(0) invert(1);
    content: "";
}

.vt-table-filter.is-active {
    background: #f1c75b;
}

.vt-table-filter.is-active::before {
    filter: brightness(.25);
}

.vt-table-action-heading {
    padding-inline: 6px !important;
    text-align: center !important;
}

.vt-data-row {
    height: 42px;
    border-bottom: 1px solid var(--vt-border);
    background: #fff;
}

.vt-data-row.is-alternate {
    background: #eef4f8;
}

.vt-data-row[hidden] {
    display: none;
}

.vt-table-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid var(--vt-border);
    background: #f8fafc;
}

.vt-table-page-button {
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid #b8c5d1;
    border-radius: 6px;
    background: #fff;
    color: var(--vt-primary-dark);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.vt-table-page-button:hover:not(:disabled),
.vt-table-page-button:focus-visible:not(:disabled) {
    border-color: var(--vt-primary);
    background: #edf4fa;
}

.vt-table-page-button:disabled {
    cursor: not-allowed;
    opacity: .46;
}

.vt-table-page-status {
    min-width: 190px;
    color: var(--vt-muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    text-align: center;
}

.vt-data-row td {
    padding: 6px 8px;
    overflow: hidden;
    color: var(--vt-ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-data-row td:nth-last-child(-n + 2) {
    padding: 0;
    text-align: center;
}

.vt-review-table-panel {
    overflow: visible !important;
}

.vt-review-data-table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
}

.vt-review-data-table thead th[data-column] {
    min-width: 170px;
}

.vt-review-data-table thead th[data-column="sequence"] {
    min-width: 105px;
}

.vt-review-data-table .vt-table-action-heading {
    width: 62px;
    min-width: 62px;
}

.vt-review-data-table .vt-review-repeat-heading,
.vt-review-data-table .vt-review-repeat-cell {
    width: 180px;
    min-width: 180px;
}

.vt-review-data-table .vt-data-row {
    height: auto;
    min-height: 42px;
}

.vt-review-data-table .vt-data-row td,
.vt-review-data-table .vt-data-row td:nth-last-child(-n + 2) {
    min-width: 154px;
    padding: 7px 9px;
    border-right: 1px solid var(--vt-border);
    text-align: center;
}

.vt-review-data-table .vt-data-row td[data-column="sequence"] {
    min-width: 88px;
    color: #b32e2e;
    font-weight: 750;
}

.vt-review-data-table .vt-review-action-cell,
.vt-review-data-table .vt-review-action-cell:nth-last-child(-n + 2) {
    min-width: 44px;
    padding: 4px;
}

.vt-review-action-cell .reviewdata-button,
.vt-review-action-cell .reviewdata-delete-button {
    display: inline-block;
    float: none;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.vt-review-repeat-cell button {
    display: block;
    width: 100%;
    margin: 2px 0;
    padding: 5px 7px;
    border: 1px solid #b8c5d1;
    border-radius: 4px;
    background: #fff;
    color: var(--vt-primary-dark);
    font-size: 11px;
    cursor: pointer;
}

.vt-review-repeat-cell button:hover {
    border-color: var(--vt-primary);
    background: #edf4fa;
}

.vt-review-picture-cell img {
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.vt-review-empty-row td {
    min-width: 420px;
    padding: 28px 16px;
    color: var(--vt-muted);
    text-align: center;
}

.vt-column-filter[hidden] {
    display: none;
}

.vt-column-filter {
    position: fixed;
    z-index: 1800;
    overflow: hidden;
    border: 1px solid #aebdca;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(19, 44, 67, .25);
    color: var(--vt-ink);
}

.vt-column-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 8px 10px 8px 14px;
    border-bottom: 1px solid var(--vt-border);
    background: var(--vt-primary-dark);
    color: #fff;
}

.vt-column-filter-header strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-column-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
}

.vt-column-filter form {
    display: grid;
    gap: 13px;
    padding: 14px;
}

.vt-column-condition {
    display: grid;
    grid-template-columns: minmax(130px, .9fr) minmax(130px, 1.1fr);
    gap: 7px;
}

.vt-column-condition label,
.vt-column-filter-logic label {
    grid-column: 1 / -1;
    color: var(--vt-muted);
    font-size: 11px;
    font-weight: 750;
}

.vt-column-condition select,
.vt-column-condition input,
.vt-column-filter-logic select {
    width: 100%;
    height: 38px;
    padding: 6px 8px;
    border: 1px solid #b3c1ce;
    border-radius: 6px;
    background: #fff;
    color: var(--vt-ink);
    font-size: 12px;
}

.vt-column-condition input:disabled {
    background: #edf1f4;
    color: #8a969f;
}

.vt-column-filter-logic {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: end;
    gap: 8px;
}

.vt-column-filter-logic label {
    grid-column: auto;
    align-self: center;
}

.vt-column-filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 3px;
}

.vt-column-filter-actions button {
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid #b3c1ce;
    border-radius: 6px;
    background: #fff;
    color: var(--vt-primary-dark);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.vt-column-filter-actions .vt-column-filter-apply {
    border-color: var(--vt-primary);
    background: var(--vt-primary);
    color: #fff;
}

.vt-column-filter-actions button:hover {
    border-color: var(--vt-primary-dark);
}

@media (max-width: 760px) {
    .vt-table-toolbar {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .vt-table-search {
        flex-basis: 100%;
        max-width: none;
    }

    .vt-table-result-count {
        margin-left: 0;
        padding: 8px 0;
    }

    .vt-table-reset {
        margin-left: auto;
    }

    .vt-column-filter {
        right: 12px !important;
        left: 12px !important;
        width: auto !important;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }
}

@media (max-width: 430px) {
    .vt-column-condition {
        grid-template-columns: 1fr;
    }

    .vt-column-condition label {
        grid-column: 1;
    }
}

.metro-button-container {
    border-radius: var(--vt-radius);
    overflow: hidden;
    background: var(--vt-primary-dark);
    box-shadow: 0 5px 16px rgba(23, 76, 125, .18);
}

.metro-button-description,
.gridHeader {
    background: var(--vt-primary) !important;
}

.gridRowContainer,
.gridRowContainerAlternate {
    border-bottom: 1px solid var(--vt-border);
}

.gridRowContainerAlternate {
    background: #edf4fa;
}

table {
    border-color: var(--vt-border);
    background: var(--vt-surface);
}

.mp-content,
.new-user-container,
.forgot-password-container,
.ui-dialog {
    max-width: calc(100vw - 2rem) !important;
}

/* The active templates only need this small subset of W3CSS. */
.w3-container {
    padding: .01em 16px;
}

.w3-center {
    text-align: center !important;
}

.w3-animate-opacity {
    animation: vt-opacity .45s;
}

@keyframes vt-opacity {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 760px) {
    .header,
    .header-homepage {
        min-width: 0;
    }

    .header-homepage {
        position: relative;
        height: auto;
        min-height: 75px;
    }

    .homepage-header {
        height: auto;
        min-height: 75px;
        padding-inline: 12px;
    }

    .homepage-header::after,
    .contentContainer::after {
        display: table;
        clear: both;
        content: "";
    }

    .homepage-header > div {
        width: 100% !important;
        max-width: 100%;
    }

    .pageContainer {
        padding: 10px;
        overflow-x: hidden;
    }

    .contentContainer,
    .contentRow,
    .panelX,
    .contentContainer > div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .metro-button-container {
        width: calc(50% - 4px);
        margin: 2px !important;
    }

    .metro-button-top,
    .metro-button-description {
        width: 100%;
    }

    .metro-button-image {
        width: 40%;
    }

    .metro-button-text {
        width: 60%;
        font-size: 2rem;
    }

    .gridDataContainer,
    table {
        overflow-x: auto;
    }

    .join-now {
        font-size: .95rem;
    }
}

@media (max-width: 430px) {
    .metro-button-container {
        width: 100%;
        margin: 3px 0 !important;
    }

    .headerUserContainer {
        max-width: calc(100vw - 110px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.vt-version-badge {
    position: fixed;
    z-index: 1200;
    top: 7px;
    left: 7px;
    min-width: 58px;
    min-height: 25px;
    margin: 0;
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    background: rgba(17, 48, 78, .88);
    box-shadow: 0 4px 12px rgba(10, 32, 55, .2);
    color: #fff;
    font: 700 11px/1 var(--vt-font);
    letter-spacing: .035em;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.vt-version-badge:hover {
    background: #fff;
    color: var(--vt-primary-dark);
}

.vt-version-overlay[hidden] {
    display: none;
}

.vt-version-overlay {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(13, 31, 50, .68);
    backdrop-filter: blur(3px);
}

.vt-version-dialog {
    display: flex;
    flex-direction: column;
    width: min(680px, 100%);
    max-height: min(82vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 16px;
    background: var(--vt-surface);
    box-shadow: 0 28px 80px rgba(7, 24, 42, .35);
}

.vt-version-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    padding: 20px 22px;
    background: linear-gradient(115deg, var(--vt-primary-dark), var(--vt-accent));
    color: #fff;
}

.vt-version-eyebrow {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.vt-version-dialog h2 {
    margin: 0;
    color: #fff;
    font-size: 1.45rem;
}

.vt-version-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0 0 3px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font: 300 28px/1 var(--vt-font);
    cursor: pointer;
}

.vt-version-close:hover {
    background: #fff;
    color: var(--vt-primary-dark);
}

.vt-version-history {
    overflow-y: auto;
    padding: 4px 22px 22px;
}

.vt-version-release {
    position: relative;
    margin-left: 9px;
    padding: 22px 0 4px 27px;
    border-left: 2px solid var(--vt-border);
}

.vt-version-release::before {
    position: absolute;
    top: 28px;
    left: -7px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #92a2b4;
    box-shadow: 0 0 0 2px #92a2b4;
    content: "";
}

.vt-version-release.is-current::before {
    background: var(--vt-accent);
    box-shadow: 0 0 0 2px var(--vt-accent);
}

.vt-version-release-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vt-version-release-meta strong {
    padding: 3px 8px;
    border-radius: 999px;
    background: #e9f3fc;
    color: var(--vt-primary-dark);
    font-size: .78rem;
}

.vt-version-release-meta time {
    color: var(--vt-muted);
    font-size: .78rem;
}

.vt-version-release h3 {
    margin: 9px 0 7px;
    color: var(--vt-ink);
    font-size: 1rem;
}

.vt-version-release ul {
    margin: 0;
    padding-left: 19px;
    color: var(--vt-muted);
}

.vt-version-release li + li {
    margin-top: 5px;
}

.vt-version-modal-open {
    overflow: hidden;
}

@media (max-width: 520px) {
    .vt-version-overlay {
        padding: 9px;
    }

    .vt-version-dialog {
        max-height: 90vh;
        border-radius: 12px;
    }

    .vt-version-dialog-header,
    .vt-version-history {
        padding-right: 16px;
        padding-left: 16px;
    }
}

.vt-form-chains {
    display: grid;
    gap: 12px;
    padding: 8px;
}

.vt-form-chain {
    padding: 10px 12px 12px;
    border: 1px solid #d7e0ea;
    border-radius: 10px;
    background: #f8fafc;
}

.vt-form-chain-row {
    display: flex;
    align-items: center;
    min-height: 34px;
    gap: 8px;
}

.vt-form-chain-row.is-child {
    margin-left: 18px;
}

.vt-form-chain-node {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border: 2px solid #2c6396;
    border-radius: 50%;
    background: #fff;
}

.vt-form-chain-row.is-master .vt-form-chain-node {
    background: #2c6396;
}

.vt-form-chain-link {
    flex: 1 1 auto;
    padding: 3px 0;
    border: 0;
    background: transparent;
    color: #183153;
    font: inherit;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}

.vt-form-chain-link:hover,
.vt-form-chain-link:focus-visible {
    color: #1769e0;
    text-decoration: underline;
}

.vt-form-chain-badge {
    flex: 0 0 auto;
    padding: 2px 7px;
    border-radius: 999px;
    background: #e8eef5;
    color: #53657a;
    font-size: 10px;
    white-space: nowrap;
}

.vt-form-import-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 7px 0 2px 18px;
    padding: 7px 8px;
    border: 1px solid #ead4a4;
    border-radius: 7px;
    gap: 8px;
    background: #fff9e9;
}

.vt-form-import-badge {
    color: #7a5410;
    font-size: 10px;
    font-weight: 750;
}

.vt-form-import-remove-form {
    flex: 0 0 auto;
    margin: 0;
}

.vt-form-import-remove {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 4px 8px;
    border: 1px solid #b43a43;
    border-radius: 5px;
    background: #fff;
    color: #9b202a;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
}

.vt-form-import-remove:hover,
.vt-form-import-remove:focus-visible {
    background: #9b202a;
    color: #fff;
}

.vt-form-import-remove:disabled {
    cursor: wait;
    opacity: .55;
}

.vt-form-chain-connector {
    width: 2px;
    height: 12px;
    margin-left: 33px;
    background: #afc2d5;
}

.vt-form-chain-add {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: 20px;
    border: 0;
    border-radius: 50%;
    background: #2c6396;
    color: #fff;
    font: 700 20px/1 Arial, sans-serif;
    cursor: pointer;
    vertical-align: middle;
}

.vt-form-chain-add:hover,
.vt-form-chain-add:focus-visible {
    background: #1769e0;
    box-shadow: 0 0 0 3px rgba(23, 105, 224, .2);
}

.vt-form-chain-add-label {
    margin-left: 6px;
    color: #607386;
    font-size: 11px;
    vertical-align: middle;
}

.vt-profile-page {
    padding-block: 28px;
}

.vt-profile-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.vt-profile-heading h1 {
    margin: 3px 0 5px;
    color: var(--vt-ink);
    font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.vt-profile-heading p,
.vt-profile-card > p {
    margin: 0;
    color: var(--vt-muted);
}

.vt-profile-eyebrow {
    color: var(--vt-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.vt-profile-form {
    display: grid;
    gap: 16px;
}

.vt-profile-card {
    padding: clamp(18px, 4vw, 26px);
    border: 1px solid var(--vt-border);
    border-radius: 14px;
    background: var(--vt-surface);
    box-shadow: var(--vt-shadow);
}

.vt-profile-card h2 {
    margin: 0 0 15px;
    color: var(--vt-primary-dark);
    font-size: 1.15rem;
}

.vt-profile-card > p {
    margin: -7px 0 17px;
}

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

.vt-profile-grid label {
    display: grid;
    gap: 6px;
    color: var(--vt-ink);
    font-size: .86rem;
    font-weight: 700;
}

.vt-profile-grid label.is-wide {
    grid-column: 1 / -1;
}

.vt-profile-grid input,
.vt-profile-grid select {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    font-size: .95rem;
    font-weight: 400;
}

.vt-profile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.vt-profile-actions a {
    color: var(--vt-muted);
    font-weight: 700;
    text-decoration: none;
}

.vt-profile-actions button {
    margin: 0;
    padding: 11px 17px;
    border: 0;
    background: var(--vt-primary);
    color: #fff;
    font-weight: 750;
    cursor: pointer;
}

.vt-profile-notice {
    margin-bottom: 16px;
    padding: 12px 15px;
    border: 1px solid;
    border-radius: 9px;
}

.vt-profile-notice.is-success {
    border-color: #9acdb2;
    background: #edf9f2;
    color: #12643e;
}

.vt-profile-notice.is-error {
    border-color: #e5aaa5;
    background: #fff1f0;
    color: #97251f;
}

.vt-reset-message {
    width: 100%;
    min-height: 56px;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid rgba(34, 50, 71, .14);
    border-radius: 8px;
    overflow: hidden;
}

.vt-reset-message-icon {
    float: left;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
}

.vt-reset-message-text {
    min-height: 40px;
    margin-left: 40px;
    padding: 9px 8px;
    line-height: 22px;
    font-size: .92rem;
}

@media (max-width: 650px) {
    .vt-profile-grid {
        grid-template-columns: 1fr;
    }

    .vt-profile-grid label.is-wide {
        grid-column: auto;
    }
}

.query-condition-list {
    display: grid;
    gap: 8px;
    padding: 10px;
    background: #f7f9fc;
}

.query-condition-row {
    display: grid;
    grid-template-columns: 72px minmax(180px, 2fr) minmax(140px, 1fr) minmax(160px, 1fr) 34px;
    gap: 8px;
    align-items: center;
}

.query-condition-group {
    color: var(--vt-primary-dark);
    font-size: .8rem;
    font-weight: 700;
}

.query-condition-row select,
.query-condition-row input,
.review-query-select {
    min-height: 34px;
    padding: 5px 7px;
}

.query-condition-remove {
    width: 34px;
    height: 34px;
    border: 1px solid #d4a19d;
    background: #fff;
    color: #a42d27;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.query-migration-warning {
    width: 100%;
    padding: 12px;
    border: 1px solid #d5a23a;
    background: #fff8df;
    color: #6d4a00;
}

.review-query-select {
    float: left;
    width: 190px;
    margin: 3px 6px 3px 0;
}

@media (max-width: 760px) {
    .survey-page .pageContainer {
        width: 100%;
        min-width: 0;
    }

    .survey-page .panelX form,
    .survey-page .panelX form > div,
    .survey-page .panelX form > div > div,
    .survey-page .gridHeader,
    .survey-page .gridRowContainer,
    .survey-page .gridRowContainerAlternate {
        width: 100% !important;
        max-width: 100% !important;
    }

    .survey-page .gridHeader > div:first-child,
    .survey-page .panelX form [style*="width:1000px"],
    .survey-page .panelX form [style*="width: 1000px"],
    .survey-page .panelX form [style*="width:1014px"],
    .survey-page .panelX form [style*="width: 1014px"] {
        width: calc(100% - 38px) !important;
        max-width: calc(100% - 38px) !important;
    }

    .survey-page .panelX form table {
        display: block;
        width: 100% !important;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .survey-page .panelX form input[type="text"],
    .survey-page .panelX form input:not([type]),
    .survey-page .panelX form textarea {
        max-width: calc(100vw - 42px);
    }

    .survey-page .event-button-container,
    .survey-page .sendButtonContainer {
        max-width: calc(50% - 8px);
    }

    .query-condition-row {
        grid-template-columns: 64px minmax(0, 1fr) 34px;
    }

    .query-condition-operator,
    .query-condition-value {
        grid-column: 2;
    }

    .query-condition-remove {
        grid-column: 3;
        grid-row: 1;
    }

    .review-query-select {
        float: none;
        width: calc(100% - 8px);
        margin: 4px;
    }
}

.vt-resume-panel {
    box-sizing: border-box;
    display: flex;
    gap: 24px;
    width: min(1024px, calc(100% - 24px));
    margin: 12px auto;
    padding: 20px;
    border: 1px solid #a9bed6;
    border-radius: 12px;
    background: #f4f8fc;
    color: #243b53;
    box-shadow: 0 5px 18px rgba(28, 55, 82, 0.1);
}

.vt-resume-copy { flex: 1; min-width: 0; }
.vt-resume-copy h2 { margin: 0 0 8px; font-size: 20px; }
.vt-resume-copy p { line-height: 1.5; }
.vt-resume-warning { font-weight: 600; color: #8a3b12; }
.vt-resume-actions, .vt-resume-email-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px; }
.vt-resume-panel button { min-height: 38px; padding: 7px 12px; border: 0; border-radius: 6px; background: #355f8a; color: #fff; cursor: pointer; }
.vt-resume-panel input[type="email"] { min-height: 36px; width: min(280px, 100%); box-sizing: border-box; padding: 6px 9px; border: 1px solid #9aacbf; border-radius: 5px; }
.vt-resume-qr { flex: 0 0 225px; align-self: center; padding: 8px; background: #fff; border-radius: 8px; }
.vt-resume-qr img { display: block; width: 225px; height: 225px; image-rendering: pixelated; }
.vt-resume-file-note { margin-bottom: 0; font-size: 12px; color: #52677c; }
.vt-resume-panel .is-error { color: #a32020; font-weight: 600; }
.vt-resume-message { max-width: 680px; margin: 80px auto; padding: 28px; border: 1px solid #ccd6e0; border-radius: 10px; background: #fff; text-align: center; }

@media (max-width: 720px) {
    .vt-resume-panel { flex-direction: column; }
    .vt-resume-qr { order: -1; flex-basis: auto; }
}

.vt-donation-heading td,
.vt-donation-heading {
    padding: 9px !important;
    background: #3d7462;
    color: #fff;
    font-weight: 700;
}

.vt-donation-cell { padding: 12px !important; background: #f1f8f5; }
.vt-donation-option { display: flex; align-items: flex-start; gap: 10px; margin: 8px 0; padding: 10px; border: 1px solid #bdd5cb; border-radius: 7px; background: #fff; line-height: 1.45; }
.vt-donation-option input, .vt-donation-confirm input { flex: 0 0 auto; margin-top: 3px; }
.vt-donation-confirm { display: flex; align-items: flex-start; gap: 9px; margin: 8px 12px; color: #633b14; font-weight: 600; line-height: 1.45; }
.vt-donation-help { margin: 6px 12px; color: #53657a; font-size: 12px; line-height: 1.5; }
.vt-donation-warning { padding: 10px; border: 1px solid #d5a23a; background: #fff8df; color: #6d4a00; }

.vt-spss-import { box-sizing: border-box; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr); gap: 24px; width: 100%; margin-top: 12px; padding: 20px; background: linear-gradient(135deg, #f2f8fd 0%, #fff 60%); border-top: 4px solid #2c6396; }
.vt-spss-import-copy h2 { margin: 5px 0 9px; color: var(--vt-primary-dark); font-size: 20px; }
.vt-spss-import-copy p { margin: 0 0 9px; color: #44566a; font-size: 13px; line-height: 1.55; }
.vt-spss-import-kicker { color: #2c6396; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vt-spss-import-boundary { padding: 9px 11px; border-left: 3px solid #b77722; border-radius: 4px; background: #fff8e8; color: #684817 !important; }
.vt-spss-import-form { display: grid; align-content: start; gap: 7px; padding: 14px; border: 1px solid #cbd9e6; border-radius: 9px; background: #fff; }
.vt-spss-import-form label { color: #263e55; font-size: 12px; font-weight: 750; }
.vt-spss-import-form label small { font-weight: 400; }
.vt-spss-import-form input[type="text"], .vt-spss-import-form input[type="file"] { box-sizing: border-box; width: 100%; padding: 9px; border: 1px solid #aebdcb; border-radius: 6px; background: #fff; color: #243746; }
.vt-spss-import-form input[type="file"] { padding: 7px; }
.vt-spss-import-data-option { display: flex; align-items: flex-start; gap: 9px; margin: 4px 0; padding: 10px; border: 1px solid #b8ccdc; border-radius: 6px; background: #f3f8fc; cursor: pointer; }
.vt-spss-import-data-option input { flex: 0 0 auto; margin: 3px 0 0; }
.vt-spss-import-data-option span, .vt-spss-import-data-option strong, .vt-spss-import-data-option small { display: block; }
.vt-spss-import-data-option strong { color: #204f78; font-size: 12px; }
.vt-spss-import-data-option small { margin-top: 2px; color: #637487; font-size: 10px; font-weight: 400; line-height: 1.4; }
.vt-spss-import-form > small { color: #637487; font-size: 11px; line-height: 1.4; }
.vt-spss-import-form button { justify-self: start; margin-top: 4px; padding: 10px 14px; border: 0; border-radius: 6px; background: #2367a8; color: #fff; font-weight: 750; cursor: pointer; }
.vt-spss-import-form button:hover { background: #174f84; }

.vt-donated-forms { width: 100%; margin-top: 12px; padding: 14px; background: #fff; }
.vt-donated-forms-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--vt-border); }
.vt-donated-forms-header h2 { margin: 0 0 4px; font-size: 18px; color: var(--vt-primary-dark); }
.vt-donated-forms-header p { margin: 0; color: var(--vt-muted); font-size: 13px; }
.vt-donated-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 12px; margin-top: 12px; }
.vt-donated-form-card { display: flex; flex-direction: column; gap: 8px; padding: 13px; border: 1px solid var(--vt-border); border-radius: 8px; background: #f8fafc; }
.vt-donated-form-card h3, .vt-donated-form-card p { margin: 0; }
.vt-donated-form-card p { color: var(--vt-muted); font-size: 12px; line-height: 1.45; }
.vt-donated-form-card small { color: #53657a; line-height: 1.4; }
.vt-donated-form-card button { align-self: flex-start; margin-top: auto; padding: 8px 11px; border: 0; border-radius: 6px; background: #3d7462; color: #fff; cursor: pointer; }
.vt-donated-form-meta { display: flex; justify-content: space-between; gap: 8px; color: #486b5f; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.vt-donated-empty { padding: 14px 4px; color: var(--vt-muted); }

.vt-open-data-page { min-height: 100vh; margin: 0; background: #f3f6fa; }
.vt-open-data-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px max(20px, calc((100% - 1120px) / 2)); background: #173b55; color: #fff; }
.vt-open-data-header nav { display: flex; gap: 16px; }
.vt-open-data-header a { color: #fff; text-decoration: none; }
.vt-open-data-brand { display: inline-flex; align-items: center; gap: 9px; font-size: 20px; font-weight: 750; }
.vt-open-data-main { width: min(1120px, calc(100% - 28px)); margin: 34px auto 60px; }
.vt-open-data-intro { max-width: 820px; }
.vt-open-data-intro h1 { margin: 6px 0 12px; font-size: clamp(30px, 5vw, 48px); color: #173b55; }
.vt-open-data-intro > p { color: var(--vt-muted); font-size: 17px; }
.vt-open-data-notice { margin-top: 18px; padding: 14px 16px; border-left: 4px solid #b77722; border-radius: 6px; background: #fff7e7; color: #694618; line-height: 1.55; }
.vt-open-data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 18px; margin-top: 28px; }
.vt-open-data-card { display: flex; flex-direction: column; min-height: 250px; padding: 20px; border: 1px solid var(--vt-border); border-radius: 12px; background: #fff; box-shadow: var(--vt-shadow); }
.vt-open-data-card h2 { margin: 14px 0 9px; color: var(--vt-primary-dark); }
.vt-open-data-card > p { color: var(--vt-muted); line-height: 1.5; }
.vt-open-data-card-meta { display: flex; justify-content: space-between; gap: 10px; color: #3d7462; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.vt-open-data-donor { margin-top: auto; font-size: 12px; }
.vt-open-data-download { align-self: flex-start; margin-top: 10px; padding: 9px 13px; border-radius: 6px; background: #2367a8; color: #fff; text-decoration: none; font-weight: 700; }
.vt-open-data-empty { margin-top: 28px; padding: 30px; border: 1px dashed #aebac8; border-radius: 10px; background: #fff; text-align: center; }

@media (max-width: 620px) {
    .vt-open-data-header { align-items: flex-start; flex-direction: column; }
    .vt-donated-forms-header { flex-direction: column; }
    .vt-spss-import { grid-template-columns: 1fr; }
}

.vt-participant-target-heading td { padding: 10px 8px; background: #5b6f91; color: #fff; font-weight: 700; }
.vt-participant-target-cell { padding: 14px !important; background: #f5f8fc; border: 1px solid #dbe4ef; }
.vt-participant-target-warning { padding: 12px; border: 1px solid #ead28a; background: #fff3cd; color: #725b16; }
.vt-participant-publish-option { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border: 1px solid #b8d8c5; border-radius: 8px; background: #edf8f1; }
.vt-participant-publish-option input, .vt-participant-target-options input { margin-top: 3px; }
.vt-participant-target-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.vt-participant-target-grid > label, .vt-participant-age-range, .vt-participant-target-description { display: flex; flex-direction: column; gap: 6px; }
.vt-participant-target-grid input, .vt-participant-target-grid textarea, .vt-participant-target-description textarea, .vt-participant-age-range input { box-sizing: border-box; width: 100%; padding: 8px; border: 1px solid #c8d4e2; border-radius: 5px; background: #fff; }
.vt-participant-age-range > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vt-participant-age-range label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; }
.vt-participant-target-cell small, .vt-participant-target-help { color: #607086; font-size: 11px; line-height: 1.5; }
.vt-participant-target-options { margin: 14px 0 0; padding: 10px 12px 12px; border: 1px solid #d5dfeb; border-radius: 7px; background: #fff; }
.vt-participant-target-options legend { padding: 0 6px; font-weight: 700; }
.vt-participant-target-options p { margin: 0 0 8px; color: #607086; font-size: 11px; }
.vt-participant-target-options > div { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.vt-participant-target-options label { display: inline-flex; gap: 6px; align-items: flex-start; }
.vt-participant-target-description { margin-top: 14px; }

@media (max-width: 720px) {
    .vt-participant-target-grid { grid-template-columns: 1fr; }
}

.vt-participant-body { margin: 0; background: #eef3f7; color: #1f3142; }
.vt-participant-shell { box-sizing: border-box; width: min(1120px, calc(100% - 28px)); margin: 28px auto 64px; }
.vt-participant-hero { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 24px; align-items: stretch; padding: 28px; border-radius: 15px; background: linear-gradient(135deg, #173b55, #235f70); color: #fff; box-shadow: 0 15px 34px rgba(23, 59, 85, .18); }
.vt-participant-eyebrow { display: block; margin-bottom: 8px; color: #9dd8c8; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.vt-participant-hero h1, .vt-response-header h1 { margin: 0 0 10px; font-size: clamp(27px, 4vw, 42px); line-height: 1.12; }
.vt-participant-hero p, .vt-response-header p { max-width: 760px; margin: 0; color: #d6e4ea; font-size: 15px; line-height: 1.6; }
.vt-credit-balance { display: flex; flex-direction: column; justify-content: center; padding: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.09); text-align: center; }
.vt-credit-balance span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.vt-credit-balance strong { margin: 4px 0; color: #ffe18a; font-size: 48px; line-height: 1; }
.vt-credit-balance small { color: #c9dde5; }
.vt-participant-notice { margin-top: 18px; padding: 13px 15px; border-radius: 8px; }
.vt-participant-notice.is-success { border: 1px solid #acd6bb; background: #eaf7ee; color: #245f39; }
.vt-participant-notice.is-error { border: 1px solid #e3b4b4; background: #fff0f0; color: #8e2c2c; }
.vt-participant-profile-strip { display: grid; grid-template-columns: 210px minmax(0, 1fr) auto; gap: 20px; align-items: center; margin-top: 20px; padding: 18px 20px; border: 1px solid #d7e1e9; border-radius: 11px; background: #fff; }
.vt-participant-profile-strip span, .vt-participant-section-heading span { color: #547080; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.vt-participant-profile-strip h2 { margin: 4px 0 0; font-size: 18px; }
.vt-participant-profile-strip dl { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 0; }
.vt-participant-profile-strip dl div { min-width: 0; }
.vt-participant-profile-strip dt { color: #738493; font-size: 10px; text-transform: uppercase; }
.vt-participant-profile-strip dd { overflow: hidden; margin: 3px 0 0; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.vt-participant-profile-strip > a, .vt-response-back { color: #2367a8; font-weight: 700; text-decoration: none; }
.vt-participant-section { margin-top: 22px; padding: 22px; border: 1px solid #d7e1e9; border-radius: 12px; background: #fff; }
.vt-participant-section-heading { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 16px; }
.vt-participant-section-heading h2 { margin: 4px 0 0; color: #173b55; font-size: 23px; }
.vt-participant-section-heading > strong { padding: 7px 10px; border-radius: 999px; background: #eef4f7; color: #436073; font-size: 12px; }
.vt-participant-empty { padding: 24px; border: 1px dashed #b8c8d4; border-radius: 9px; background: #f8fafc; text-align: center; }
.vt-participant-empty h3, .vt-participant-empty p { margin: 0; }
.vt-participant-empty p { color: #667986; line-height: 1.5; }
.vt-participant-empty h3 + p { margin-top: 7px; }
.vt-survey-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 15px; }
.vt-survey-card { display: flex; flex-direction: column; min-height: 255px; padding: 18px; border: 1px solid #cfdae4; border-radius: 10px; background: #fbfcfd; }
.vt-survey-card.is-draft { border-color: #e0bd69; background: #fffaf0; }
.vt-survey-card-meta { display: flex; justify-content: space-between; gap: 10px; color: #5d7180; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.vt-survey-card-meta strong { color: #237047; }
.vt-survey-card h3 { margin: 13px 0 8px; color: #173b55; font-size: 20px; }
.vt-survey-card > p { margin: 0 0 10px; color: #617381; line-height: 1.5; }
.vt-survey-card > small { color: #71818c; line-height: 1.45; }
.vt-survey-target-note { margin: 2px 0 10px; padding: 8px 10px; border-left: 3px solid #4b9275; background: #edf7f2; color: #315e4b; font-size: 12px; line-height: 1.45; }
.vt-survey-card footer { display: flex; justify-content: space-between; gap: 12px; align-items: flex-end; margin-top: auto; padding-top: 16px; }
.vt-survey-card footer > span { color: #667986; font-size: 11px; }
.vt-survey-card form { margin: 0; }
.vt-survey-card button { padding: 9px 13px; border: 0; border-radius: 6px; background: #2367a8; color: #fff; font-weight: 750; cursor: pointer; }
.vt-survey-card button:hover, .vt-survey-card button:focus-visible { background: #174f84; }
.vt-participant-table-wrap { overflow-x: auto; }
.vt-participant-table { width: 100%; border-collapse: collapse; }
.vt-participant-table th { padding: 10px; background: #edf3f7; color: #506675; font-size: 11px; text-align: left; text-transform: uppercase; }
.vt-participant-table td { padding: 12px 10px; border-bottom: 1px solid #e5ebef; }
.vt-participant-table a { color: #2367a8; font-weight: 700; text-decoration: none; }
.vt-participant-table td span:not(.vt-participant-status) { color: #7d8c97; font-size: 11px; }
.vt-participant-status { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: 11px; font-weight: 750; }
.vt-participant-status.is-complete { background: #e5f5eb; color: #286544; }
.vt-participant-status.is-draft { background: #fff2cd; color: #785c11; }
.vt-credit-list { display: grid; gap: 8px; }
.vt-credit-list article { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 12px 14px; border: 1px solid #dfe7ed; border-radius: 8px; }
.vt-credit-list article div { display: flex; flex-direction: column; gap: 3px; }
.vt-credit-list article span { color: #72838f; font-size: 11px; }
.vt-credit-list article b { color: #237047; font-size: 20px; }
.vt-response-shell { max-width: 900px; }
.vt-response-back { display: inline-block; margin-bottom: 14px; }
.vt-response-header { display: grid; grid-template-columns: minmax(0, 1fr) 170px; gap: 20px; align-items: center; padding: 25px; border-radius: 13px; background: #173b55; color: #fff; }
.vt-response-credit { padding: 16px; border-radius: 9px; background: rgba(255,255,255,.1); text-align: center; }
.vt-response-credit span { display: block; font-size: 11px; text-transform: uppercase; }
.vt-response-credit strong { display: block; margin-top: 5px; color: #ffe18a; font-size: 32px; }
.vt-response-meta { display: flex; gap: 28px; margin: 16px 0; padding: 14px 18px; border: 1px solid #d8e2e9; border-radius: 9px; background: #fff; }
.vt-response-meta div { display: flex; gap: 8px; }
.vt-response-meta dt { color: #71828e; }
.vt-response-meta dd { margin: 0; font-weight: 750; }
.vt-response-list { display: grid; gap: 10px; }
.vt-response-list > article { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; padding: 18px; border: 1px solid #d8e2e9; border-radius: 10px; background: #fff; }
.vt-response-list > article > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: #e7f0f5; color: #315d74; font-weight: 800; }
.vt-response-list h2 { margin: 2px 0 10px; color: #244557; font-size: 16px; }
.vt-response-list ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.vt-response-list li { padding: 9px 11px; border-radius: 6px; background: #f2f6f8; line-height: 1.5; }
.vt-response-list .is-empty { margin: 0; color: #84919a; font-style: italic; }

@media (max-width: 840px) {
    .vt-participant-hero, .vt-response-header { grid-template-columns: 1fr; }
    .vt-credit-balance { align-items: center; }
    .vt-participant-profile-strip { grid-template-columns: 1fr; }
    .vt-participant-profile-strip dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .vt-participant-shell { width: min(100% - 18px, 1120px); margin-top: 14px; }
    .vt-participant-hero, .vt-participant-section { padding: 17px; }
    .vt-participant-profile-strip dl { grid-template-columns: 1fr; }
    .vt-participant-section-heading, .vt-survey-card footer { align-items: flex-start; flex-direction: column; }
    .vt-response-meta { flex-direction: column; gap: 8px; }
}
