    :root {
        --vcp-bg: linear-gradient(180deg, #f8f5f1 0%, #ede9e3 100%);
        --vcp-card: #ffffff;
        --vcp-border: #e2d9ce;
        --vcp-text: #1a2232;
        --vcp-muted: #667085;
        --vcp-primary: #1766ff;
        --vcp-primary-strong: #0f4fd1;
        --vcp-danger: #e5484d;
        --vcp-success: #1e9b67;
        --vcp-warning: #d38b15;
        --vcp-shadow: 0 16px 38px rgba(19, 35, 72, 0.10);
    }

    #vcp-app {
        position: relative;
        display: grid;
        grid-template-columns: 270px 1fr;
        gap: 24px;
        min-height: 78vh;
        margin-top: 20px;
        width: 100%;
        font-family: 'Manrope', sans-serif;
        color: var(--vcp-text);
    }

    #vcp-app[data-auth="0"] {
        grid-template-columns: 1fr;
    }

    #vcp-app[data-auth="0"] .vcp-sidebar,
    #vcp-app[data-auth="0"] .vcp-topbar,
    #vcp-app[data-auth="0"] .vcp-overlay {
        display: none !important;
    }

    #vcp-app[data-auth="0"] .vcp-main {
        max-width: 760px;
        margin: 0 auto;
        width: 100%;
    }

    #vcp-app[data-ready="0"] .vcp-view {
        display: none !important;
    }

    #vcp-app[data-ready="0"] .vcp-sidebar,
    #vcp-app[data-ready="0"] .vcp-topbar {
        visibility: hidden;
    }

    #vcp-app[data-ready="0"] #vcp-global-loading {
        display: flex !important;
    }

    .vcp-surface {
        background: var(--vcp-bg);
        border: 1px solid var(--vcp-border);
        border-radius: 18px;
        box-shadow: var(--vcp-shadow);
    }

    .vcp-sidebar {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: sticky;
        top: 20px;
        align-self: start;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: #dfe7f2 transparent;
    }
    .vcp-sidebar::-webkit-scrollbar {
        width: 4px;
    }
    .vcp-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }
    .vcp-sidebar::-webkit-scrollbar-thumb {
        background: #dfe7f2;
        border-radius: 999px;
    }
    .vcp-sidebar::-webkit-scrollbar-thumb:hover {
        background: #c4d0e3;
    }

    .vcp-brand {
        appearance: none;
        border: 0;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 20px;
        letter-spacing: -0.02em;
        color: var(--vcp-text);
        cursor: pointer;
        text-align: left;
    }

    .vcp-brand .material-symbols-rounded {
        color: var(--vcp-primary);
        font-size: 28px;
    }

    .vcp-user-box {
        border: 1px solid var(--vcp-border);
        border-radius: 14px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        padding: 16px;
    }

    .vcp-user-box-top {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 14px;
        align-items: center;
    }

    .vcp-user-avatar {
        width: 64px;
        height: 64px;
        border-radius: 999px;
        background: linear-gradient(135deg, #eef4ff 0%, #dfe9ff 100%);
        border: 1px solid #cdd9ef;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4466a5;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .vcp-user-avatar .material-symbols-rounded {
        font-size: 28px;
    }

    .vcp-user-name {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
    }

    .vcp-user-box-copy {
        min-width: 0;
    }

    .vcp-role-pill {
        display: inline-flex;
        margin-top: 8px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 999px;
        letter-spacing: 0.05em;
        background: #e9f0ff;
        color: #1a4fc0;
    }

    .vcp-role-pill[data-role="admin"] {
        background: #1a2232;
        color: #fff;
    }

    .vcp-role-pill[data-role="manager"] {
        background: #e8f8ef;
        color: #156c46;
    }

    .vcp-role-pill[data-role="influencer"] {
        background: #fff3e5;
        color: #9a5b09;
    }

    .vcp-role-pill[data-role="team"] {
        background: #eef2ff;
        color: #3949ab;
    }

    .vcp-menu {
        display: grid;
        gap: 3px;
    }

    .vcp-menu-group-label {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .09em;
        color: #a0adc0;
        padding: 14px 12px 5px;
        margin: 0;
    }
    .vcp-menu-group-label:first-child {
        padding-top: 0;
    }
    .vcp-menu-divider {
        height: 1px;
        background: var(--vcp-border);
        margin: 6px 0;
    }

    .vcp-menu-btn {
        border: 1px solid transparent;
        border-radius: 10px;
        background: transparent;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
        font-size: 13.5px;
        font-weight: 600;
        color: #4a5568;
        padding: 9px 12px;
        cursor: pointer;
        transition: background .15s ease, color .15s ease, border-color .15s ease;
        text-transform: none !important;
        position: relative;
    }

    .vcp-menu-btn .material-symbols-rounded {
        font-size: 19px;
        color: #8a9ab5;
        flex-shrink: 0;
        transition: color .15s;
    }

    .vcp-menu-btn:hover {
        background: rgba(23, 102, 255, 0.06);
        color: #1a2232;
        border-color: transparent;
    }
    .vcp-menu-btn:hover .material-symbols-rounded {
        color: #1766ff;
    }

    .vcp-menu-btn.is-active {
        background: #e8f0ff;
        color: #1240a8;
        border-color: #c8daff;
        font-weight: 700;
    }
    .vcp-menu-btn.is-active .material-symbols-rounded {
        color: #1766ff;
    }
    .vcp-menu-btn.is-active::before {
        content: '';
        position: absolute;
        left: -1px;
        top: 25%;
        height: 50%;
        width: 3px;
        background: #1766ff;
        border-radius: 0 3px 3px 0;
    }

    .vcp-sidebar-footer {
        margin-top: auto;
        display: grid;
        gap: 10px;
    }

    .vcp-main {
        padding: 28px;
    }

    .vcp-topbar {
        display: none;
    }

    .vcp-notice {
        display: none;
        margin-bottom: 14px;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid transparent;
        font-size: 13px;
        font-weight: 600;
    }

    .vcp-notice.is-info {
        display: block;
        background: #edf4ff;
        border-color: #cfe0ff;
        color: #1d4bb3;
    }

    .vcp-notice.is-error {
        display: block;
        background: #ffeef0;
        border-color: #f7c7cd;
        color: #972937;
    }

    .vcp-notice.is-success {
        display: block;
        background: #e9f8ef;
        border-color: #bee6cf;
        color: #1a7249;
    }

    .vcp-auth-notice {
        margin-top: 12px;
    }

    .vcp-view {
        display: none;
    }

    .vcp-view.is-active {
        display: block;
        animation: vcpFadeIn 0.2s ease;
    }

    @keyframes vcpFadeIn {
        from { opacity: 0; transform: translateY(4px); }
        to { opacity: 1; transform: translateY(0); }
    }

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

    .vcp-title {
        margin: 0;
        font-size: 27px;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .vcp-subtitle {
        margin: 4px 0 0;
        font-size: 14px;
        color: var(--vcp-muted);
    }

    .vcp-card {
        border-radius: 16px;
        border: 1px solid var(--vcp-border);
        background: #fff;
        padding: 18px;
    }

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

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

    .vcp-field label {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        font-weight: 700;
        color: #344159;
    }

    .vcp-input,
    .vcp-textarea,
    .vcp-select {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #cfdaea;
        border-radius: 11px;
        background: #fff;
        color: #1d2638;
        font-size: 14px;
        font-family: inherit;
        padding: 11px 12px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .vcp-input:focus,
    .vcp-textarea:focus,
    .vcp-select:focus {
        border-color: #7ca4ff;
        box-shadow: 0 0 0 3px rgba(72, 126, 255, 0.18);
    }

    .vcp-textarea {
        resize: vertical;
        min-height: 150px;
    }

    .vcp-editor {
        border: 1px solid #cfdaea;
        border-radius: 11px;
        overflow: hidden;
        background: #fff;
    }

    .vcp-editor .ql-toolbar.ql-snow {
        border: 0;
        border-bottom: 1px solid #e5edf8;
        background: #f8fbff;
    }

    .vcp-editor .ql-container.ql-snow {
        border: 0;
        min-height: 180px;
        font-family: inherit;
        font-size: 14px;
        color: #1d2638;
    }

    .vcp-input.is-invalid,
    .vcp-textarea.is-invalid,
    .vcp-select.is-invalid,
    .vcp-editor.is-invalid {
        border-color: #e5484d !important;
        box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12);
        background: #fff9f9;
    }

    .vcp-field-error {
        margin-top: 6px;
        font-size: 12px;
        font-weight: 700;
        color: #b4232f;
    }

    .vcp-help {
        margin-top: 6px;
        font-size: 12px;
        color: var(--vcp-muted);
    }

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

    .vcp-section-gap {
        margin-top: 18px;
    }

    .vcp-btn {
        appearance: none;
        border: 1px solid transparent;
        border-radius: 11px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        padding: 11px 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.18s ease;
    }

    .vcp-btn:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

    .vcp-btn-primary {
        background: var(--vcp-primary);
        border-color: var(--vcp-primary);
        color: #fff;
    }

    .vcp-btn-primary:hover {
        background: var(--vcp-primary-strong);
        border-color: var(--vcp-primary-strong);
    }

    .vcp-btn-ghost {
        background: #fff;
        border-color: #ccd8eb;
        color: #31456d;
    }

    .vcp-btn-ghost:hover {
        background: #f5f8ff;
    }

    .vcp-btn-danger {
        background: #fff1f2;
        border-color: #f2ccd0;
        color: #a42a36;
    }

    .vcp-btn-danger:hover {
        background: #ffe6e9;
    }

    .vcp-login {
        max-width: 440px;
        margin: 6vh auto 0;
        padding: 28px;
    }

    .vcp-login h2 {
        margin: 0;
        font-size: 30px;
        letter-spacing: -0.03em;
    }

    .vcp-login p {
        margin: 10px 0 20px;
        color: #60708f;
        font-size: 14px;
    }

    .vcp-auth-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }

    .vcp-auth-tab {
        appearance: none;
        border: 1px solid #cfd9ea;
        border-radius: 10px;
        background: #fff;
        color: #3c4d6c;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        padding: 9px 10px;
        cursor: pointer;
        transition: all 0.18s ease;
    }

    .vcp-auth-tab:hover {
        background: #f7faff;
    }

    .vcp-auth-tab.is-active {
        border-color: #9ab9ff;
        background: #eaf2ff;
        color: #1e4faf;
    }

    .vcp-inline-form.vcp-auth-form {
        display: none;
    }

    .vcp-inline-form.vcp-auth-form.is-active {
        display: grid;
        gap: 12px;
    }

    .vcp-auth-help {
        display: flex;
        justify-content: flex-end;
        margin-top: -4px;
    }

    .vcp-auth-link {
        border: 0;
        background: transparent;
        padding: 0;
        color: #1d4fb7;
        font: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .vcp-auth-inline-panel {
        display: grid;
        gap: 12px;
        margin-top: 12px;
        padding: 14px;
        border: 1px solid #dce5f2;
        border-radius: 14px;
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    }

    .vcp-auth-inline-panel p {
        margin: 0;
        color: #60708f;
        font-size: 13px;
        line-height: 1.6;
    }

    .vcp-password-field {
        position: relative;
    }

    .vcp-password-field .vcp-input {
        padding-right: 48px;
    }

    .vcp-password-toggle {
        position: absolute;
        top: 50%;
        right: 8px;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: #60708f;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.18s ease, color 0.18s ease;
    }

    .vcp-password-toggle:hover {
        background: #eef4ff;
        color: #1d4fb7;
    }

    .vcp-password-strength {
        margin-top: 10px;
        display: grid;
        gap: 8px;
    }

    .vcp-password-strength-bar {
        width: 100%;
        height: 8px;
        border-radius: 999px;
        background: #e8edf5;
        overflow: hidden;
    }

    .vcp-password-strength-bar span {
        display: block;
        width: 0;
        height: 100%;
        border-radius: inherit;
        background: #d44848;
        transition: width 0.2s ease, background 0.2s ease;
    }

    .vcp-password-strength-label {
        margin: 0;
        font-size: 12px;
        color: #60708f;
        font-weight: 600;
    }

    .vcp-password-rules {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vcp-password-rules span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        background: #f3f6fb;
        border: 1px solid #dce5f2;
        color: #5f6f88;
        font-size: 11px;
        font-weight: 700;
    }

    .vcp-password-rules span::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: #c4cfde;
    }

    .vcp-password-rules span.is-valid {
        background: #ebf9f1;
        border-color: #bde6cc;
        color: #176b47;
    }

    .vcp-password-rules span.is-valid::before {
        background: #22a06b;
    }

    .vcp-list {
        display: grid;
        gap: 12px;
    }

    .vcp-candidates {
        display: grid;
        gap: 10px;
    }

    .vcp-candidate {
        border: 1px solid #d9e4f3;
        border-radius: 14px;
        background: #fff;
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .vcp-candidate.is-existing {
        border-color: #ffd2b2;
        background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
    }

    .vcp-candidate-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        background: #fff1e7;
        border: 1px solid #ffd2b2;
        color: #ba5c18;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        justify-self: flex-start;
    }

    .vcp-candidate h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
    }

    .vcp-candidate p {
        margin: 0;
        font-size: 13px;
        color: #5e6d8a;
    }

    .vcp-rest {
        border: 1px solid #d8e1f0;
        border-radius: 14px;
        background: #fff;
        padding: 12px;
        display: grid;
        gap: 12px;
    }

    .vcp-rest-top {
        display: grid;
        grid-template-columns: 112px 1fr;
        gap: 12px;
        align-items: stretch;
    }

    .vcp-rest-cover {
        width: 112px;
        height: 84px;
        border-radius: 10px;
        overflow: hidden;
        background: #edf2fa;
        border: 1px solid #d6e1f2;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7a89a8;
        font-size: 12px;
        font-weight: 700;
    }

    .vcp-rest-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .vcp-rest-body {
        min-width: 0;
    }

    .vcp-rest-row {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .vcp-rest-name {
        margin: 0;
        font-size: 18px;
        font-weight: 800;
        line-height: 1.2;
    }

    .vcp-rest-meta {
        margin: 3px 0 0;
        font-size: 13px;
        color: #667085;
    }

    .vcp-list-toolbar {
        display: flex;
        justify-content: flex-end;
        margin: 0 0 12px;
    }

    .vcp-list-search {
        width: min(420px, 100%);
    }

    .vcp-list-search .vcp-input {
        width: 100%;
    }

    .vcp-status {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 5px 10px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .vcp-status-publish {
        background: #e7f7ef;
        color: #136f46;
    }

    .vcp-status-draft {
        background: #edf0f6;
        color: #4b566b;
    }

    .vcp-status-pending {
        background: #fff5e8;
        color: #9f5c0e;
    }

    .vcp-status-private {
        background: #f1f1f4;
        color: #50545f;
    }

    .vcp-empty {
        border: 1px dashed #bfd0ea;
        border-radius: 14px;
        background: #f9fbff;
        padding: 22px;
        text-align: center;
        color: #51617d;
        font-size: 14px;
    }

    .vcp-dashboard-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
        gap: 18px;
        align-items: stretch;
        margin-bottom: 18px;
    }

    .vcp-dashboard-welcome {
        background:
            radial-gradient(circle at top right, rgba(255, 176, 88, 0.28), transparent 34%),
            linear-gradient(135deg, #fff4ea 0%, #ffffff 60%);
        border: 1px solid #ffd8bb;
    }

    .vcp-dashboard-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding: 6px 12px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #ffd8bb;
        color: #b65a14;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .vcp-dashboard-welcome h2 {
        margin: 0;
        font-family: 'Sora', sans-serif;
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: #111827;
    }

    .vcp-dashboard-welcome p {
        margin: 12px 0 0;
        max-width: 58ch;
        color: #53627b;
        font-size: 14px;
        line-height: 1.6;
    }

    .vcp-dashboard-highlight {
        display: grid;
        gap: 14px;
        align-content: space-between;
        background: linear-gradient(160deg, #1f56d6 0%, #0f44bd 100%);
        color: #fff;
        border: 0;
    }

    .vcp-dashboard-highlight h3,
    .vcp-dashboard-panel h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .vcp-dashboard-highlight p {
        margin: 8px 0 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 14px;
        line-height: 1.55;
    }

    .vcp-dashboard-highlight .vcp-btn {
        justify-self: flex-start;
        background: #fff;
        color: #1547b8;
        border-color: #fff;
    }

    .vcp-dashboard-grid {
        display: grid;
        gap: 18px;
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
    }

    .vcp-dashboard-panel {
        display: grid;
        gap: 14px;
    }

    .vcp-dashboard-stats {
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .vcp-dashboard-stat {
        border: 1px solid #e0d9d0;
        border-radius: 16px;
        background: #ffffff;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .vcp-dashboard-stat-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #f0eee9;
        border: 1px solid #e0d9d0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #7a6a5a;
    }
    .vcp-dashboard-stat-icon .material-symbols-rounded {
        font-size: 20px;
    }

    .vcp-dashboard-stat-body {
        flex: 1;
        min-width: 0;
    }

    .vcp-dashboard-stat-title {
        display: block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #8a9aaa;
        margin-bottom: 2px;
    }

    .vcp-dashboard-stat strong {
        display: block;
        font-size: 22px;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #1a2232;
        line-height: 1.1;
        font-family: 'Sora', sans-serif;
    }

    .vcp-dashboard-stat em {
        display: block;
        margin: 3px 0 0;
        font-style: normal;
        color: #8a9aaa;
        font-size: 12px;
        line-height: 1.4;
    }

    .vcp-dashboard-stat.is-plan-card strong {
        font-size: 17px;
    }

    .vcp-dashboard-stat-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        border: 0;
        background: transparent;
        padding: 0;
        color: #1d4fb7;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        margin-top: 4px;
    }

    .vcp-dashboard-stat-link:hover {
        color: #143f97;
    }

    .vcp-dashboard-profile-status {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
        border: 1px solid #dce5f2;
        border-radius: 14px;
        background: #f9fbff;
        padding: 14px 16px;
    }

    .vcp-dashboard-profile-status.is-alert {
        border-color: #f2d287;
        background:
            linear-gradient(180deg, #fffdf4 0%, #fff8e6 100%);
        box-shadow: inset 0 0 0 1px rgba(239, 189, 58, 0.08);
    }

    .vcp-dashboard-profile-copy {
        display: grid;
        gap: 8px;
    }

    .vcp-dashboard-profile-alert {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        justify-self: flex-start;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 232, 182, 0.72);
        border: 1px solid #f2d287;
        color: #9a6700;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .vcp-dashboard-profile-alert .material-symbols-rounded {
        font-size: 18px;
    }

    .vcp-dashboard-profile-status strong {
        display: block;
        font-size: 15px;
        color: #1f2c42;
    }

    .vcp-dashboard-profile-status p {
        margin: 4px 0 0;
        color: #60708f;
        font-size: 13px;
    }

    .vcp-dashboard-news {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcp-dashboard-news-card {
        border: 1px solid #dce5f2;
        border-radius: 16px;
        background: #fff;
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .vcp-dashboard-news-card span {
        display: inline-flex;
        justify-self: flex-start;
        padding: 5px 10px;
        border-radius: 999px;
        background: #edf4ff;
        color: #1d4fb7;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .vcp-dashboard-news-card h4 {
        margin: 0;
        font-size: 17px;
        line-height: 1.25;
        color: #1a2232;
    }

    .vcp-dashboard-news-card p {
        margin: 0;
        color: #60708f;
        font-size: 13px;
        line-height: 1.55;
    }

    .vcp-admin-news-card {
        border: 1px solid #dce5f2;
        border-radius: 16px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        padding: 18px;
        display: grid;
        gap: 12px;
    }

    .vcp-admin-news-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
    }

    .vcp-admin-news-tag {
        display: inline-flex;
        align-items: center;
        justify-self: flex-start;
        padding: 5px 10px;
        border-radius: 999px;
        background: #edf4ff;
        color: #1d4fb7;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .vcp-admin-news-meta {
        margin: 0;
        color: #60708f;
        font-size: 12px;
        line-height: 1.5;
    }

    .vcp-dashboard-festivals {
        display: grid;
        gap: 12px;
    }

    .vcp-dashboard-festival {
        border: 1px solid #dce5f2;
        border-radius: 14px;
        background: #fff;
        padding: 14px;
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 12px;
        align-items: start;
    }

    .vcp-dashboard-festival strong {
        font-size: 15px;
        color: #1f2c42;
    }

    .vcp-dashboard-festival p {
        margin: 0;
        color: #60708f;
        font-size: 13px;
        line-height: 1.5;
    }

    .vcp-dashboard-festival-info {
        display: grid;
        gap: 8px;
    }

    .vcp-dashboard-festival-meta {
        display: grid;
        gap: 4px;
    }

    .vcp-dashboard-festival-meta-label {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #7a89a3;
    }

    .vcp-dashboard-festival-action {
        justify-self: flex-end;
        margin-top: 2px;
        background: linear-gradient(135deg, #2d74ff 0%, #1552d6 100%);
        border-color: #1552d6;
        color: #fff;
    }

    .vcp-dashboard-festival-action:hover {
        background: linear-gradient(135deg, #2067f0 0%, #0f44bd 100%);
        border-color: #0f44bd;
    }

    .vcp-dashboard-festival-logo {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        border: 1px solid #dce5f2;
        background: linear-gradient(180deg, #fff9f2 0%, #ffffff 100%);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c4791b;
    }

    .vcp-dashboard-festival-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

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

    .vcp-plan-choice {
        border: 1px solid #dce5f2;
        border-radius: 16px;
        background: #fff;
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .vcp-plan-choice.is-current {
        border-color: #ffd3ad;
        background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
    }

    .vcp-plan-choice-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
    }

    .vcp-plan-choice-head h4 {
        margin: 0;
        font-size: 18px;
        line-height: 1.2;
        color: #1a2232;
    }

    .vcp-plan-choice-head span {
        display: inline-flex;
        padding: 5px 10px;
        border-radius: 999px;
        background: #edf4ff;
        color: #1d4fb7;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .vcp-plan-choice-price {
        font-size: 24px;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #1a2232;
    }

    .vcp-plan-choice p {
        margin: 0;
        color: #60708f;
        font-size: 13px;
        line-height: 1.55;
    }

    .vcp-amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .vcp-hours-list {
        display: grid;
        gap: 12px;
    }
    .vcp-hours-row {
        display: grid;
        gap: 14px;
        padding: 16px;
        border: 1px solid var(--vcp-border);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.92) 100%);
    }
    .vcp-hours-head {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .vcp-hours-day {
        font-size: 15px;
        font-weight: 800;
        color: #2b3a57;
    }
    .vcp-hours-slots {
        display: grid;
        gap: 10px;
    }
    .vcp-hours-slot {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
        gap: 10px;
        align-items: end;
        padding: 12px;
        border: 1px solid #e0e7f3;
        border-radius: 14px;
        background: #fff;
    }
    .vcp-hours-empty {
        margin: 0;
        padding: 12px 14px;
        border: 1px dashed #d6deec;
        border-radius: 14px;
        background: #f8fbff;
        color: #60708f;
        font-size: 13px;
        line-height: 1.55;
    }

    .vcp-amenity {
        position: relative;
    }

    .vcp-amenity input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .vcp-amenity span {
        display: inline-flex;
        border: 1px solid #cad8ee;
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 700;
        color: #32425f;
        background: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .vcp-amenity input:checked + span {
        background: #e8f1ff;
        color: #184db6;
        border-color: #a9c2f7;
    }

    /* ── Guide management table ─────────────────────────────── */
    .vcp-guide-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }
    .vcp-guide-table th {
        text-align: left;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #94a3b8;
        padding: 0 10px 8px;
        border-bottom: 1px solid #e9eef6;
    }
    .vcp-guide-table td {
        padding: 10px;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }
    .vcp-guide-table tbody tr:last-child td { border-bottom: none; }
    .vcp-guide-table tbody tr:hover td { background: #f8fafc; }

    /* Icon-only action buttons */
    .vcp-guide-icon-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: #fff;
        color: #475569;
        cursor: pointer;
        transition: all .15s ease;
        padding: 0;
    }
    .vcp-guide-icon-btn:hover { background: #f1f5f9; border-color: #cbd5e1; color: #1e293b; }
    .vcp-guide-icon-btn.is-danger { color: #dc2626; }
    .vcp-guide-icon-btn.is-danger:hover { background: #fef2f2; border-color: #fca5a5; }
    .vcp-guide-icon-btn .material-symbols-rounded { font-size: 16px; }

    /* Type rows */
    .vcp-guide-type-row {
        border: 1px solid #e9eef6;
        border-radius: 12px;
        padding: 14px 16px;
        margin-bottom: 8px;
        background: #fff;
    }
    .vcp-guide-type-row:last-child { margin-bottom: 0; }
    .vcp-guide-type-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
    }
    .vcp-guide-badge {
        display: inline-block;
        background: #e8f1ff;
        color: #184db6;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 999px;
    }

    /* Subtype chips */
    .vcp-guide-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .vcp-guide-chip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        padding: 4px 10px 4px 12px;
        font-size: 12px;
        font-weight: 600;
        color: #334155;
    }
    .vcp-guide-chip-edit,
    .vcp-guide-chip-del {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 999px;
        background: transparent;
        cursor: pointer;
        padding: 0;
        color: #94a3b8;
        transition: all .15s ease;
    }
    .vcp-guide-chip-edit:hover { color: #2563eb; background: #dbeafe; }
    .vcp-guide-chip-del:hover { color: #dc2626; background: #fee2e2; }

    /* Checkbox tradicional — usado onde um toggle pill seria confuso */
    .vcp-check-field {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-top: 10px;
        cursor: pointer;
        user-select: none;
    }

    .vcp-check-field input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin: 0;
        accent-color: #1766ff;
        cursor: pointer;
        flex-shrink: 0;
    }

    .vcp-check-field span {
        font-size: 13px;
        font-weight: 600;
        color: #32425f;
        line-height: 1.3;
    }

    .vcp-consent-check {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding: 14px 16px;
        border: 1px solid #d8e3f2;
        border-radius: 16px;
        background: #fbfdff;
        cursor: pointer;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .vcp-consent-check input {
        flex: 0 0 18px;
        width: 18px;
        height: 18px;
        margin: 2px 0 0;
        accent-color: #1f56d6;
        cursor: pointer;
    }

    .vcp-consent-check span {
        display: block;
        color: #42526d;
        font-size: 13px;
        line-height: 1.65;
        cursor: pointer;
    }

    .vcp-consent-check:has(input:checked) {
        border-color: #9bbcff;
        background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
        box-shadow: 0 10px 24px rgba(31, 86, 214, 0.08);
    }

    .vcp-consent-check:has(input:checked) span {
        color: #1f4faa;
    }

    .vcp-table-wrap {
        border: 1px solid #d8e3f2;
        border-radius: 12px;
        overflow: auto;
    }

    .vcp-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 560px;
        background: #fff;
    }

    .vcp-table th,
    .vcp-table td {
        text-align: left;
        padding: 12px;
        border-bottom: 1px solid #edf2f8;
        font-size: 13px;
    }

    .vcp-table th {
        color: #36445e;
        background: #f8fbff;
        font-weight: 800;
    }

    .vcp-table td {
        color: #2d3850;
        vertical-align: middle;
    }

    .vcp-inline-form {
        display: grid;
        gap: 12px;
    }

    .vcp-social-item {
        border: 1px solid #d9e4f3;
        border-radius: 12px;
        background: #f9fbff;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .vcp-social-item strong {
        display: block;
        font-size: 13px;
        color: #2f3f5d;
    }

    .vcp-social-item a {
        font-size: 13px;
        color: #1d4fb7;
        word-break: break-all;
    }

    .vcp-social-meta {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .vcp-social-avatar {
        width: 52px;
        height: 52px;
        border-radius: 999px;
        object-fit: cover;
        display: block;
        overflow: hidden;
        border: 1px solid #d7e2f4;
        background: #eef3fb;
        flex: 0 0 auto;
    }

    .vcp-social-avatar-ring {
        width: 82px;
        height: 82px;
        border-radius: 999px;
        padding: 3px;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f58529 0%, #feda77 24%, #dd2a7b 58%, #8134af 82%, #515bd4 100%);
        box-shadow: 0 8px 18px rgba(221, 42, 123, 0.16);
        flex: 0 0 auto;
    }

    .vcp-social-avatar-ring .vcp-social-avatar {
        width: 100%;
        height: 100%;
        border-radius: 999px !important;
        clip-path: circle(50%);
        border: 2px solid rgba(255, 255, 255, 0.98);
        background: #fff;
    }

    .vcp-social-avatar-ring.is-tiktok {
        background: linear-gradient(135deg, #09090b 0%, #12131a 42%, #25f4ee 72%, #fe2c55 100%);
        box-shadow: 0 10px 22px rgba(10, 15, 22, 0.22);
    }

    .vcp-social-caption {
        margin-top: 4px;
        font-size: 12px;
        color: #60708f;
    }

    .vcp-social-item.is-instagram {
        padding: 16px;
        position: relative;
        overflow: hidden;
        border-color: rgba(230, 96, 140, 0.28);
        background:
            linear-gradient(135deg, rgba(255, 244, 248, 0.96) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(246, 249, 255, 0.96) 100%);
        box-shadow: 0 18px 34px rgba(226, 76, 133, 0.08);
    }

    .vcp-social-item.is-instagram::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, #f58529 0%, #feda77 18%, #dd2a7b 52%, #8134af 78%, #515bd4 100%);
    }

    .vcp-social-item.is-tiktok {
        padding: 16px;
        position: relative;
        overflow: hidden;
        border-color: rgba(24, 30, 40, 0.14);
        background:
            linear-gradient(135deg, rgba(248, 252, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 38%, rgba(241, 254, 255, 0.98) 100%);
        box-shadow: 0 18px 34px rgba(12, 18, 29, 0.08);
    }

    .vcp-social-item.is-tiktok::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, #111111 0%, #25f4ee 48%, #fe2c55 100%);
    }

    .vcp-social-item.is-instagram .vcp-social-avatar {
        width: 76px;
        height: 76px;
    }

    .vcp-social-main {
        min-width: 0;
    }

    .vcp-social-bio {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.5;
        color: #31415f;
        white-space: pre-line;
    }

    .vcp-social-main .vcp-social-link + .vcp-social-link {
        margin-top: 4px;
    }

    .vcp-social-network-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 8px;
        padding: 4px 10px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #6f2c54;
        background: rgba(253, 224, 232, 0.88);
        border: 1px solid rgba(231, 96, 142, 0.22);
    }

    .vcp-social-network-pill.is-tiktok {
        color: #10131a;
        background: rgba(219, 252, 251, 0.92);
        border-color: rgba(37, 244, 238, 0.28);
        box-shadow: inset 0 0 0 1px rgba(254, 44, 85, 0.08);
    }

    #vcp-author-modal,
    #vcp-social-history-modal,
    #vcp-plan-modal {
        position: fixed;
        inset: 0;
        z-index: 1750;
        background: rgba(13, 22, 44, 0.58);
        overflow: auto;
        padding: 18px;
    }

    .vcp-social-metrics {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .vcp-social-metric {
        border: 1px solid #d7e2f4;
        border-radius: 12px;
        padding: 6px 10px;
        background: #fff;
        font-size: 12px;
        font-weight: 700;
        color: #30415f;
    }

    .vcp-social-item.is-instagram .vcp-social-metric {
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(219, 93, 142, 0.18);
        box-shadow: 0 6px 14px rgba(221, 42, 123, 0.06);
    }

    .vcp-social-history-chart {
        margin-bottom: 16px;
        padding: 16px;
        border: 1px solid #e5ebf5;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .vcp-social-history-chart svg {
        width: 100%;
        height: auto;
        display: block;
    }

    .vcp-social-chart-empty {
        margin: 0 0 14px;
        color: #62718e;
        font-size: 13px;
    }

    .vcp-social-metric strong {
        font-weight: 800;
    }

    .vcp-inline-feedback {
        margin-top: 8px;
        font-size: 12px;
        font-weight: 700;
    }

    .vcp-inline-feedback.is-error {
        color: #a42a36;
    }

    .vcp-inline-feedback.is-success {
        color: #1a7249;
    }

    .vcp-inline-feedback.is-info {
        color: #1d4fb7;
    }

    .vcp-influencer {
        border: 1px dashed #ffd3a4;
        background: #fff8ef;
        border-radius: 14px;
        padding: 22px;
    }

    .vcp-hidden {
        display: none !important;
    }

    .vcp-overlay {
        display: none;
    }

    .vcp-global-loading {
        position: fixed;
        inset: 0;
        z-index: 1600;
        background: rgba(8, 13, 27, 0.56);
        backdrop-filter: blur(2px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .vcp-global-loading.is-open {
        display: flex;
    }

    .vcp-global-loading-card {
        background: #fff;
        border-radius: 14px;
        padding: 18px 20px;
        border: 1px solid #d7e5fa;
        box-shadow: 0 22px 46px rgba(10, 26, 56, 0.26);
        min-width: 260px;
        max-width: 92vw;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .vcp-spinner {
        width: 20px;
        height: 20px;
        border: 2px solid #c5d8fb;
        border-top-color: #1c57cf;
        border-radius: 999px;
        animation: vcp-spin 0.8s linear infinite;
        flex: 0 0 auto;
    }

    .vcp-global-loading-card p {
        margin: 0;
        color: #24334f;
        font-size: 14px;
        font-weight: 700;
    }

    @keyframes vcp-spin {
        to {
            transform: rotate(360deg);
        }
    }

    .vcp-author-link {
        border: 0;
        background: transparent;
        color: #1c57cf;
        font-weight: 700;
        cursor: pointer;
        padding: 0;
        text-decoration: underline;
        font-family: inherit;
        font-size: 13px;
    }

    .vcp-author-rest {
        border: 1px solid #dfebfa;
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 8px;
        background: #f9fbff;
    }

    .vcp-festival-card {
        border: 1px solid #d7e4f7;
        border-radius: 12px;
        background: #fff;
        padding: 14px;
        margin-bottom: 12px;
    }

    .vcp-match-card {
        border: 1px solid #d7e4f7;
        border-radius: 16px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        padding: 18px;
        display: grid;
        gap: 14px;
    }

    .vcp-match-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .vcp-match-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vcp-match-pill {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        background: #eef4ff;
        color: #184bb8;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .vcp-match-pill.is-open {
        background: #ebf9f1;
        color: #146844;
    }

    .vcp-match-pill.is-muted {
        background: #f2f4f7;
        color: #53627b;
    }

    .vcp-match-budget-grid {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcp-match-budget-card,
    .vcp-match-note {
        border: 1px solid #dce5f2;
        border-radius: 14px;
        background: #fff;
        padding: 14px;
    }

    .vcp-match-budget-card strong,
    .vcp-match-note strong {
        display: block;
        font-size: 14px;
        color: #1d2940;
    }

    .vcp-match-budget-card p,
    .vcp-match-note p {
        margin: 6px 0 0;
        font-size: 13px;
        line-height: 1.6;
        color: #60708f;
    }

    .vcp-match-applicant {
        border-top: 1px solid #e7eef9;
        padding-top: 14px;
        display: grid;
        gap: 10px;
    }

    .vcp-match-applicant-head {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 12px;
        align-items: center;
    }

    .vcp-match-applicant-avatar {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: linear-gradient(135deg, #eef4ff 0%, #dfe9ff 100%);
        border: 1px solid #d1ddf1;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #51698e;
    }

    .vcp-match-social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vcp-match-social-links a {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        background: #f3f7ff;
        color: #184bb8;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }

    .vcp-match-message {
        min-height: 112px;
        resize: vertical;
    }

    .vcp-match-instagram-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 18px;
        border: 1px solid #f1d6e4;
        background: linear-gradient(135deg, rgba(245, 133, 41, 0.10) 0%, rgba(221, 42, 123, 0.08) 54%, rgba(81, 91, 212, 0.08) 100%);
        cursor: pointer;
        text-align: left;
        transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .vcp-match-instagram-trigger:hover {
        border-color: #e9a3c1;
        box-shadow: 0 12px 28px rgba(221, 42, 123, 0.10);
        transform: translateY(-1px);
    }

    .vcp-match-instagram-trigger[aria-expanded="true"] {
        border-color: #dd2a7b;
        box-shadow: 0 14px 30px rgba(221, 42, 123, 0.12);
    }

    .vcp-match-instagram-ring {
        width: 58px;
        height: 58px;
        border-radius: 999px;
        padding: 3px;
        overflow: hidden;
        flex: 0 0 58px;
        background: linear-gradient(135deg, #f58529 0%, #feda77 28%, #dd2a7b 62%, #8134af 84%, #515bd4 100%);
        box-shadow: 0 10px 24px rgba(221, 42, 123, 0.20);
    }

    .vcp-match-instagram-avatar {
        width: 100%;
        height: 100%;
        border-radius: 999px;
        clip-path: circle(50%);
        object-fit: cover;
        display: block;
        background: #fff;
        border: 2px solid #fff;
    }

    .vcp-match-instagram-copy {
        min-width: 0;
        display: grid;
        gap: 4px;
    }

    .vcp-match-instagram-copy strong {
        color: #1d2940;
        font-size: 14px;
    }

    .vcp-match-instagram-copy span {
        color: #5d6d88;
        font-size: 12px;
        line-height: 1.5;
    }

    .vcp-match-instagram-panel {
        display: none;
        padding: 14px 14px 0;
        margin-top: -2px;
        border: 1px solid #f1d6e4;
        border-top: 0;
        border-radius: 0 0 18px 18px;
        background: #fffafc;
    }

    .vcp-match-instagram-panel.is-open {
        display: block;
    }

    .vcp-match-instagram-shell {
        display: grid;
        gap: 10px;
    }

    .vcp-match-instagram-note {
        margin: 0;
        font-size: 12px;
        line-height: 1.6;
        color: #64738d;
    }

    .vcp-match-tiktok-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 18px;
        border: 1px solid rgba(22, 27, 39, 0.12);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 254, 255, 0.98) 42%, rgba(255, 239, 244, 0.95) 100%);
        cursor: pointer;
        text-align: left;
        transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .vcp-match-tiktok-trigger:hover {
        border-color: rgba(37, 244, 238, 0.38);
        box-shadow: 0 12px 28px rgba(15, 23, 35, 0.10);
        transform: translateY(-1px);
    }

    .vcp-match-tiktok-trigger[aria-expanded="true"] {
        border-color: rgba(254, 44, 85, 0.30);
        box-shadow: 0 14px 30px rgba(15, 23, 35, 0.12);
    }

    .vcp-match-tiktok-ring {
        width: 58px;
        height: 58px;
        border-radius: 999px;
        padding: 3px;
        overflow: hidden;
        flex: 0 0 58px;
        background: linear-gradient(135deg, #09090b 0%, #111111 36%, #25f4ee 68%, #fe2c55 100%);
        box-shadow: 0 10px 24px rgba(15, 23, 35, 0.18);
    }

    .vcp-match-tiktok-avatar {
        width: 100%;
        height: 100%;
        border-radius: 999px;
        clip-path: circle(50%);
        object-fit: cover;
        display: block;
        background: #fff;
        border: 2px solid #fff;
    }

    .vcp-match-tiktok-panel {
        display: none;
        padding: 14px 14px 0;
        margin-top: -2px;
        border: 1px solid rgba(22, 27, 39, 0.12);
        border-top: 0;
        border-radius: 0 0 18px 18px;
        background: linear-gradient(180deg, #fbfdff 0%, #f5feff 100%);
    }

    .vcp-match-tiktok-panel.is-open {
        display: block;
    }

    .vcp-match-note.is-accent {
        border-color: #d9e7ff;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.04));
    }

    .vcp-avatar-preview {
        width: 108px;
        height: 108px;
        border-radius: 999px;
        overflow: hidden;
        border: 3px solid #fff;
        box-shadow: 0 12px 30px rgba(34, 57, 91, 0.12);
        background: linear-gradient(135deg, #eef4ff 0%, #dfe9ff 100%);
    }

    .vcp-avatar-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 999px;
    }

    .vcp-avatar-preview-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 999px;
    }

    .vcp-festival-head {
        display: grid;
        grid-template-columns: 88px 1fr;
        gap: 12px;
        align-items: start;
    }

    .vcp-festival-image {
        width: 88px;
        height: 88px;
        border-radius: 10px;
        object-fit: cover;
        border: 1px solid #d8e2f3;
        background: #eef3fb;
        flex-shrink: 0;
    }

    #vcp-rest-featured-preview {
        width: 100%;
        height: 180px;
        margin-top: 8px;
        overflow: hidden;
    }
    #vcp-rest-featured-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        border: 1px solid #d8e2f3;
        background: #eef3fb;
    }

    .vcp-festival-meta {
        margin: 4px 0 0;
        color: #5c6b88;
        font-size: 13px;
    }

    .vcp-festival-file {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border: 1px solid #d8e3f5;
        border-radius: 12px;
        background: #f7faff;
        color: #1c4fba;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }

    .vcp-sponsor-list {
        display: grid;
        gap: 10px;
    }

    .vcp-sponsor-card {
        border: 1px solid #dce5f2;
        border-radius: 14px;
        background: #fff;
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .vcp-sponsor-card strong {
        color: #1d2940;
        font-size: 15px;
    }

    .vcp-sponsor-card p {
        margin: 0;
        color: #60708f;
        font-size: 13px;
        line-height: 1.6;
    }

    .vcp-sponsor-flags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vcp-sponsor-flag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        background: #eef4ff;
        color: #184bb8;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .vcp-sponsor-flag.is-required {
        background: #fff1e7;
        color: #ba5c18;
    }

    .vcp-pricing-box {
        border: 1px solid #dce5f2;
        border-radius: 14px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        padding: 14px;
        display: grid;
        gap: 8px;
    }

    .vcp-pricing-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: 13px;
        color: #60708f;
    }

    .vcp-pricing-row strong {
        color: #1b2940;
        font-size: 16px;
    }

    #vcp-festival-description-editor .ql-editor {
        min-height: 140px;
    }

    #vcp-author-modal {
        position: fixed;
        inset: 0;
        background: rgba(13, 22, 44, 0.5);
        z-index: 1300;
        overflow: auto;
        padding: 18px;
    }

    #vcp-author-modal.is-open {
        display: block !important;
    }

    #vcp-social-history-modal.is-open,
    #vcp-plan-modal.is-open {
        display: block !important;
    }

    @media (max-width: 1024px) {
        #vcp-app {
            grid-template-columns: 1fr;
            gap: 14px;
        }

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

        .vcp-topbar h1 {
            margin: 0;
            font-size: 18px;
            letter-spacing: -0.02em;
        }

        .vcp-sidebar {
            position: fixed;
            left: -100%;
            top: 0;
            width: min(84vw, 310px);
            height: 100vh;
            border-radius: 0 18px 18px 0;
            z-index: 1001;
            transition: left 0.24s ease;
            max-height: none;
        }

        .vcp-sidebar.is-open {
            left: 0;
        }

        .vcp-overlay {
            position: fixed;
            inset: 0;
            background: rgba(11, 18, 38, 0.45);
            z-index: 1000;
        }

        .vcp-overlay.is-open {
            display: block;
        }

        .vcp-main {
            padding: 18px;
        }

        .vcp-grid-2,
        .vcp-grid-3,
        .vcp-match-budget-grid {
            grid-template-columns: 1fr;
        }

        .vcp-dashboard-hero,
        .vcp-dashboard-grid,
        .vcp-dashboard-stats,
        .vcp-dashboard-news,
        .vcp-plan-grid {
            grid-template-columns: 1fr;
        }

        .vcp-dashboard-stat {
            grid-template-columns: 1fr;
        }

        .vcp-dashboard-stat strong {
            text-align: left;
        }

        .vcp-rest-top {
            grid-template-columns: 1fr;
        }
        .vcp-hours-head {
            flex-direction: column;
            align-items: stretch;
        }
        .vcp-hours-slot {
            grid-template-columns: 1fr;
        }
        .vcp-hours-head .vcp-btn,
        .vcp-hours-slot .vcp-btn {
            width: 100%;
        }

        .vcp-rest-cover {
            width: 100%;
            height: 168px;
        }

        .vcp-list-toolbar {
            justify-content: stretch;
        }

        .vcp-list-search {
            width: 100%;
        }
    }

/* ── OTP Verify Modal ─────────────────────────────────── */
#vcp-ig-verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 38, 0.55);
    backdrop-filter: blur(2px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.vcp-ig-verify-card {
    position: relative;
    max-width: 480px;
    margin: 10vh auto;
    background: #fff;
    padding: 36px 32px 32px;
    text-align: center;
    display: grid;
    gap: 16px;
}

.vcp-ig-verify-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--vcp-muted);
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 8px;
    transition: background .15s;
}
.vcp-ig-verify-close:hover { background: #f3f0ec; }

.vcp-ig-verify-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--vcp-primary);
    font-size: 32px;
}
.vcp-ig-verify-icon.is-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: var(--vcp-success);
}

.vcp-ig-verify-card h3 {
    margin: 0;
    font-size: 20px;
    color: var(--vcp-text);
}
.vcp-ig-verify-card p {
    margin: 0;
    color: var(--vcp-muted);
    font-size: 14px;
    line-height: 1.5;
}

.vcp-ig-verify-steps {
    display: grid;
    gap: 10px;
    text-align: left;
    background: #f8f5f1;
    border-radius: 14px;
    padding: 16px;
}
.vcp-ig-verify-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--vcp-text);
}
.vcp-ig-verify-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--vcp-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vcp-ig-verify-account {
    font-weight: 700;
    font-size: 13px;
    color: var(--vcp-primary);
}
.vcp-ig-verify-btn-send {
    width: 100%;
    min-height: 48px;
}

/* OTP digit boxes */
.vcp-otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 8px 0;
}
.vcp-otp-box {
    width: 52px;
    height: 62px;
    border: 2px solid var(--vcp-border);
    border-radius: 14px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--vcp-text);
    background: #fafafa;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -moz-appearance: textfield;
}
.vcp-otp-box::-webkit-outer-spin-button,
.vcp-otp-box::-webkit-inner-spin-button { -webkit-appearance: none; }
.vcp-otp-box:focus {
    border-color: var(--vcp-primary);
    box-shadow: 0 0 0 3px rgba(23, 102, 255, .15);
    background: #fff;
}
.vcp-otp-box.is-filled {
    border-color: var(--vcp-success);
    background: #f0fdf4;
}

.vcp-ig-verify-resend { margin: 0; }
.vcp-ig-verify-resend-btn {
    font-size: 13px;
    gap: 6px;
}

/* Verified badge on social card */
.vcp-social-title-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.vcp-social-verified-badge {
    display: inline-flex;
    align-items: center;
    color: #0095f6;
    line-height: 1;
    cursor: default;
}

.vcp-social-verified-badge .material-symbols-rounded {
    font-size: 18px;
    font-variation-settings: 'FILL' 1;
}

/* ── Social card — mobile ─────────────────────────────────── */
@media (max-width: 600px) {
    .vcp-social-item {
        flex-direction: column;
        align-items: stretch;
    }

    .vcp-social-meta {
        width: 100%;
    }

    .vcp-social-item .vcp-actions {
        margin-left: 0 !important;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    .vcp-social-item .vcp-actions .vcp-btn {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }
}

/* ── Festival add-establishment search ───────────────────── */
.vcp-festival-add-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d5dce8;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(20,40,80,.12);
    z-index: 500;
    overflow: hidden;
    max-height: 260px;
    overflow-y: auto;
}

.vcp-festival-add-result-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    background: none;
    border: none;
    border-bottom: 1px solid #f0f3f9;
    cursor: pointer;
    transition: background .12s;
}

.vcp-festival-add-result-item:last-child {
    border-bottom: none;
}

.vcp-festival-add-result-item:hover {
    background: #f0f5ff;
}

.vcp-festival-add-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #6b7fa3;
}

/* ── Festival participants table ─────────────────────────── */
.vcp-participants-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #20304c;
}

.vcp-participants-table thead th {
    text-align: left;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b7fa3;
    border-bottom: 2px solid #e5eaf3;
    white-space: nowrap;
}

.vcp-participants-table tbody .vcp-participant-row td {
    padding: 10px 10px;
    border-bottom: 1px solid #f0f3f9;
    vertical-align: middle;
}

.vcp-participants-table tbody .vcp-participant-row:last-of-type td {
    border-bottom: none;
}

.vcp-participants-table tbody .vcp-participant-row:hover td {
    background: #f7f9fd;
}

/* Payment badge */
.vcp-pay-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
    white-space: nowrap;
}

.vcp-pay-badge.is-paid {
    background: #dcfce7;
    color: #16a34a;
}

.vcp-pay-badge.is-open {
    background: #fef9c3;
    color: #b45309;
}

.vcp-pay-badge.is-overdue {
    background: #fee2e2;
    color: #dc2626;
}

.vcp-pay-badge.is-partial {
    background: #eff6ff;
    color: #2563eb;
}

.vcp-pay-badge.is-free {
    background: #f0fdf4;
    color: #15803d;
}

/* Small button */
.vcp-btn-sm {
    padding: 4px 10px !important;
    font-size: 12px !important;
    gap: 4px !important;
}

.vcp-btn-sm .material-symbols-rounded {
    font-size: 16px !important;
}

/* Success-toned button */
.vcp-btn-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.vcp-btn-success:hover {
    background: #bbf7d0;
}

/* Installment card paid state */
.vcp-installment-card.is-paid {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

/* Icon-only button */
.vcp-btn-icon {
    padding: 6px 8px !important;
    min-width: 0 !important;
}

.vcp-btn-icon span:not(.material-symbols-rounded) {
    display: none;
}

/* Expandable detail row */
.vcp-participant-detail {
    background: #f7f9fd;
}

.vcp-participant-detail.vcp-hidden {
    display: none;
}

.vcp-participant-detail-inner {
    padding: 16px 12px 20px;
    border-bottom: 2px solid #e5eaf3;
}

/* ── Festival detail tabs ────────────────────────────────── */
.vcp-festival-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 8px 14px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #60708f;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
}

.vcp-festival-tab .material-symbols-rounded {
    font-size: 18px;
}

.vcp-festival-tab:hover {
    color: #20304c;
}

.vcp-festival-tab.is-active {
    color: #1766ff;
    border-bottom-color: #1766ff;
}

/* ── Voucher summary badges ──────────────────────────────── */
.vcp-voucher-summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* Voucher detail row */
.vcp-voucher-detail-row td {
    background: #f7f9fd;
    padding: 0 4px 8px;
}

/* Voucher validator modal overlay */
#vcp-voucher-validator-modal.vcp-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 18, 38, 0.55);
    backdrop-filter: blur(2px);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#vcp-voucher-validator-modal.vcp-hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   Mobile Voucher Management View (.vcp-mobile-vouchers-view)
   Mobile-first design — max 520px centered column
   ═══════════════════════════════════════════════════════════ */

.vcp-mobile-vouchers-view {
    padding: 0 !important;
    background: #f0f4fa !important;
    min-height: 100vh;
}

.vcpm-wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
}

/* Header */
.vcpm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 10px;
    background: #1766ff;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.vcpm-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.vcpm-title .material-symbols-rounded { font-size: 22px; }

.vcpm-reload-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}
.vcpm-reload-btn:hover { background: rgba(255,255,255,0.25); }

/* Tabs */
.vcpm-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #1251cc;
    position: sticky;
    top: 57px;
    z-index: 9;
}

.vcpm-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.vcpm-tab-btn .material-symbols-rounded { font-size: 20px; }
.vcpm-tab-btn.is-active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Body */
.vcpm-body {
    padding: 14px 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Festival group label */
.vcpm-festival-group { display: flex; flex-direction: column; gap: 8px; }
.vcpm-group-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #3d5280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    padding: 0 2px;
}
.vcpm-group-label .material-symbols-rounded { font-size: 16px; color: #1766ff; }
.vcpm-count-pill {
    background: #1766ff;
    color: #fff;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    margin-left: 2px;
}

/* Voucher card */
.vcpm-voucher-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(19,35,72,0.07);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vcpm-voucher-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vcpm-code {
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1766ff;
    background: #eef2ff;
    padding: 3px 8px;
    border-radius: 6px;
}
.vcpm-code-sm { font-size: 11px; padding: 2px 6px; }

.vcpm-badge {
    background: #e7f1ff;
    color: #1251cc;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}
.vcpm-badge-sm { font-size: 10px; padding: 2px 6px; }

.vcpm-voucher-restaurant {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 13px;
    color: #3d5280;
}
.vcpm-voucher-restaurant .material-symbols-rounded { font-size: 15px; color: #60708f; margin-top: 1px; flex-shrink: 0; }

.vcpm-voucher-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Assign form inline */
.vcpm-assign-form { display: flex; flex-direction: column; gap: 8px; }
.vcpm-assign-actions { display: flex; gap: 8px; }

/* Buttons */
.vcpm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 10px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
}
.vcpm-btn:active { transform: scale(0.97); }
.vcpm-btn .material-symbols-rounded { font-size: 17px; }

.vcpm-btn-primary {
    background: #1766ff;
    color: #fff;
    flex: 1;
    justify-content: center;
}
.vcpm-btn-primary:hover { background: #1251cc; }

.vcpm-btn-confirm {
    background: #1e9b67;
    color: #fff;
    flex: 1;
    justify-content: center;
}
.vcpm-btn-cancel {
    background: #f0f4fa;
    color: #3d5280;
    padding: 9px 12px;
}

/* Input */
.vcpm-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1.5px solid #d1dbe8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1a2232;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}
.vcpm-input:focus { border-color: #1766ff; }

/* Search bar */
.vcpm-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 4px 12px;
    box-shadow: 0 2px 6px rgba(19,35,72,0.07);
    margin-bottom: 4px;
}
.vcpm-search-wrap .material-symbols-rounded { color: #60708f; font-size: 20px; flex-shrink: 0; }
.vcpm-search-input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: #1a2232;
    width: 100%;
    padding: 8px 0;
    background: transparent;
}

/* Influencer card */
.vcpm-inf-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(19,35,72,0.07);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vcpm-inf-name {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1a2232;
}
.vcpm-inf-name .material-symbols-rounded { font-size: 22px; color: #1766ff; margin-top: 1px; flex-shrink: 0; }
.vcpm-inf-ig { font-size: 12px; color: #e1306c; font-weight: 600; margin-top: 2px; }

.vcpm-inf-vouchers { display: flex; flex-direction: column; gap: 8px; padding-left: 32px; }
.vcpm-inf-voucher-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f7f9fd;
    border-left: 3px solid #c4cee0;
    font-size: 12px;
}
.vcpm-inf-voucher-row.is-accepted { border-left-color: #2e8e53; background: rgba(46,142,83,.05); }
.vcpm-inf-voucher-row.is-used     { border-left-color: #8a98ae; background: rgba(138,152,174,.06); opacity: .85; }
.vcpm-inf-voucher-line1 { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vcpm-inf-voucher-line2 { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vcpm-inf-voucher-rest  { color: #60708f; font-size: 11px; flex: 1; min-width: 100px; }

.vcpm-inf-total {
    margin-left: auto;
    font-size: 11px;
    color: #60708f;
    font-weight: 600;
}

.vcpm-inf-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 32px;
}

.vcpm-status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 3px 8px;
    border-radius: 6px;
}
.vcpm-status-badge.is-pending  { background: rgba(217,119,6,.12);  color: #b25b00; }
.vcpm-status-badge.is-accepted { background: rgba(46,142,83,.14);  color: #1e6e3a; }
.vcpm-status-badge.is-used     { background: rgba(138,152,174,.2); color: #4a576f; }

.vcpm-btn-icon {
    background: none;
    border: 1px solid #e5eaf3;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: background .15s, border-color .15s;
}
.vcpm-btn-icon .material-symbols-rounded { font-size: 16px; }
.vcpm-btn-icon-danger { color: #c0392b; border-color: rgba(220,38,38,.25); }
.vcpm-btn-icon-danger:hover { background: rgba(220,38,38,.08); border-color: rgba(220,38,38,.45); }

.vcpm-visit-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}
.vcpm-visit-pill .material-symbols-rounded { font-size: 14px; }
.vcpm-visit-pill.is-future { background: rgba(46,142,83,.08);   color: #1e6e3a; }
.vcpm-visit-pill.is-today  { background: rgba(59,109,214,.1);   color: #1d4ba8; }
.vcpm-visit-pill.is-late   { background: rgba(220,38,38,.08);   color: #c0392b; }
.vcpm-visit-pill.is-used   { background: rgba(138,152,174,.15); color: #4a576f; }

/* Unregistered */
.vcpm-unreg-form {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(19,35,72,0.07);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vcpm-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #3d5280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 2px;
}
.vcpm-section-title .material-symbols-rounded { font-size: 17px; color: #1766ff; }
.vcpm-field-row { display: flex; flex-direction: column; }

.vcpm-unreg-vouchers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Empty state */
.vcpm-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 20px;
    color: #60708f;
    text-align: center;
}
.vcpm-empty .material-symbols-rounded { font-size: 40px; opacity: 0.4; }
.vcpm-empty p { margin: 0; font-size: 14px; }

/* Full-width override when on mobile voucher view — hide sidebar gutter */
@media (max-width: 600px) {
    .vcp-mobile-vouchers-view .vcpm-wrap { max-width: 100%; }
}

/* ── Mobile Voucher v2: sub-tabs, restaurant cards, assigned views ── */

.vcpm-subtabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0e3fa8;
    gap: 1px;
}

.vcpm-subtab-btn {
    padding: 8px 12px;
    background: #0e3fa8;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.vcpm-subtab-btn.is-active {
    color: #fff;
    border-bottom-color: #7eb3ff;
    background: #0b3090;
}

/* Restaurant accordion card */
.vcpm-rest-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(19,35,72,0.07);
    overflow: hidden;
}
.vcpm-rest-card.is-open { box-shadow: 0 4px 16px rgba(19,35,72,0.12); }

.vcpm-rest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
}
.vcpm-rest-header:hover { background: #f7f9fd; }

.vcpm-rest-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.vcpm-rest-info .material-symbols-rounded { font-size: 20px; color: #1766ff; margin-top: 2px; flex-shrink: 0; }
.vcpm-rest-info strong { font-size: 14px; color: #1a2232; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.vcpm-rest-fest {
    font-size: 11px;
    color: #60708f;
    display: block;
    margin-top: 1px;
}

.vcpm-rest-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.vcpm-chevron { font-size: 20px; color: #60708f; }

.vcpm-rest-detail {
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #f0f4fa;
    padding-top: 12px;
}

/* Inner voucher card (inside expanded restaurant) */
.vcpm-voucher-card-inner {
    box-shadow: none;
    border: 1.5px solid #e5eaf3;
    border-radius: 10px;
    padding: 10px 12px;
}

/* Count pill variants */
.vcpm-count-assigned {
    background: #7c3aed;
}

/* Assigned rows */
.vcpm-assigned-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    margin: 4px 0;
    border-radius: 8px;
    background: #f7f9fd;
    border-left: 3px solid #c4cee0;
    font-size: 12px;
}
.vcpm-assigned-row.is-accepted { border-left-color: #2e8e53; background: rgba(46,142,83,.05); }
.vcpm-assigned-row.is-used     { border-left-color: #8a98ae; background: rgba(138,152,174,.06); opacity: .85; }
.vcpm-assigned-row-line1 { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vcpm-assigned-row-line2 { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vcpm-assigned-to {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #3d5280;
}
.vcpm-assigned-to .material-symbols-rounded { font-size: 14px; }

/* Influencer selected card (INFLUENCIADORES tab) */
.vcpm-inf-selected-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef5ff;
    border: 1.5px solid #b3d1ff;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 4px;
}
.vcpm-inf-selected-card .material-symbols-rounded { font-size: 24px; color: #1766ff; flex-shrink: 0; }
.vcpm-inf-selected-info { flex: 1; min-width: 0; font-size: 14px; font-weight: 700; color: #1a2232; }

.vcpm-assign-subtitle {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #60708f;
    margin: 8px 0 4px;
    padding: 0;
}

/* Smaller button variant */
.vcpm-btn-sm {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 8px;
    flex: none;
}

/* Non-registered assigned cards */
.vcpm-unreg-assigned-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(19,35,72,0.07);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vcpm-unreg-assigned-top {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.vcpm-unreg-assigned-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vcpm-unreg-assigned-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #3d5280;
}
.vcpm-unreg-assigned-info .material-symbols-rounded { font-size: 15px; color: #60708f; }

/* ── Botões ícone compactos (tabela de usuários) ─────────────────── */
.vcp-btn-icon-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
    color: #60708f;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    flex-shrink: 0;
}
.vcp-btn-icon-sm .material-symbols-rounded {
    font-size: 16px;
    line-height: 1;
}
.vcp-btn-icon-sm:hover {
    background: #f0f4ff;
    border-color: #c5d0e8;
    color: #1766ff;
}
.vcp-btn-icon-sm.vcp-btn-icon-danger {
    color: #b91c1c;
    border-color: #fecaca;
    background: #fff5f5;
}
.vcp-btn-icon-sm.vcp-btn-icon-danger:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* ─── Parceiros ─────────────────────────────────────────────────────────────── */

.vcp-parceiro-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: box-shadow 0.15s;
}
.vcp-parceiro-card:hover {
    box-shadow: 0 4px 16px rgba(23,102,255,0.07);
}
.vcp-parceiro-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
.vcp-parceiro-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fb;
    border: 1px solid #e5eaf3;
    flex-shrink: 0;
}
.vcp-parceiro-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f0f4ff;
    border: 1px solid #dbe5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1766ff;
    flex-shrink: 0;
}
.vcp-parceiro-gestores {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f4ff;
}
.vcp-parceiro-gestores-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #8896b0;
    margin-bottom: 8px;
    font-weight: 600;
}
.vcp-parceiro-gestor-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid #f8f9fb;
}

/* ─── Promoções ─────────────────────────────────────────────────────────────── */

.vcp-promocao-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
    border-left: 4px solid #e5eaf3;
    transition: box-shadow 0.15s;
}
.vcp-promocao-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.vcp-promocao-pending {
    border-left-color: #f59e0b;
    background: #fffbeb;
}
.vcp-promocao-approved {
    border-left-color: #22c55e;
    background: #f0fdf4;
}
.vcp-promocao-rejected {
    border-left-color: #ef4444;
    background: #fff5f5;
}

.vcp-status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.6;
}
.vcp-status-pending  { background: #fef3c7; color: #92400e; }
.vcp-status-approved { background: #dcfce7; color: #166534; }
.vcp-status-rejected { background: #fee2e2; color: #991b1b; }

/* ─── WYSIWYG ────────────────────────────────────────────────────────────────── */

.vcp-wysiwyg {
    border: 1px solid #e5eaf3;
    border-radius: 10px;
    overflow: hidden;
}
.vcp-wysiwyg-toolbar {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    background: #f8f9fb;
    border-bottom: 1px solid #e5eaf3;
}
.vcp-wysiwyg-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #3d4966;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s;
}
.vcp-wysiwyg-btn:hover {
    background: #e8edf8;
}
.vcp-wysiwyg-sep {
    width: 1px;
    height: 18px;
    background: #dde2f0;
    margin: 0 4px;
}
.vcp-wysiwyg-editor {
    min-height: 120px;
    padding: 12px 14px;
    outline: none;
    font-size: 14px;
    line-height: 1.6;
    color: #1a2332;
    background: #fff;
}
.vcp-wysiwyg-editor:focus {
    background: #fafbff;
}

/* ─── Gestor: grid de parcerias ─────────────────────────────────────────────── */

.vcp-parcerias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.vcp-parceria-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.1s;
}
.vcp-parceria-card:hover {
    box-shadow: 0 6px 20px rgba(23,102,255,0.1);
    transform: translateY(-2px);
}
.vcp-parceria-card-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #f0f4ff;
}
.vcp-parceria-card-body {
    padding: 16px;
}
.vcp-parceria-card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #1766ff;
    margin-bottom: 6px;
}
.vcp-parceria-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 8px;
    line-height: 1.3;
}
.vcp-parceria-card-desc {
    font-size: 13px;
    color: #60708f;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vcp-parceria-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vcp-parceria-card-date {
    font-size: 12px;
    color: #8896b0;
}

/* ─── Dashboard parceiro ─────────────────────────────────────────────────────── */

.vcp-parceiro-dashboard-promo {
    padding: 10px 0;
    border-bottom: 1px solid #f0f4ff;
}
.vcp-parceiro-dashboard-promo:last-child {
    border-bottom: none;
}
.vcp-parceiro-dashboard-promo-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

/* ─── Dashboard gestor: widget de parcerias ─────────────────────────────────── */

.vcp-parcerias-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vcp-parceria-widget-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: #f8faff;
    border-radius: 10px;
    border: 1px solid #e8edf8;
}
.vcp-parceria-widget-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.vcp-parceria-widget-body strong {
    display: block;
    font-size: 13px;
    color: #1a2332;
}
.vcp-parceria-widget-body small {
    font-size: 12px;
    color: #8896b0;
}

/* ─── vcp-form-grid-2col ─────────────────────────────────────────────────────── */

.vcp-form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .vcp-form-grid-2col { grid-template-columns: 1fr; }
    .vcp-parcerias-grid { grid-template-columns: 1fr; }
}

/* ─── Influencer: Meus Vouchers ──────────────────────────────────────────────── */

#vcp-my-vouchers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 0 32px;
}

.vcp-influencer-voucher-card {
    background: #fff;
    border: 1.5px solid #e5eaf3;
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 2px 10px rgba(30,48,80,.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: box-shadow .18s;
}

.vcp-influencer-voucher-card:has(.vcp-voucher-accept-btn) {
    border-color: #3b6dd6;
}

.vcp-voucher-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.vcp-voucher-restaurant-name {
    font-size: 20px;
    font-weight: 800;
    color: #0b1226;
    margin: 0;
    line-height: 1.2;
}

.vcp-voucher-festival-name {
    font-size: 13px;
    color: #60708f;
    margin: 0;
}

.vcp-voucher-type {
    font-size: 12px;
    color: #8a98ae;
    margin: 0;
}

.vcp-voucher-value {
    font-size: 16px;
    font-weight: 800;
    color: #2e8e53;
}

.vcp-voucher-countdown-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #d97706;
    background: rgba(251,191,36,.1);
    border: 1px solid rgba(251,191,36,.35);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 6px 0 2px;
}

.vcp-voucher-countdown-wrap .material-symbols-rounded {
    font-size: 18px;
}

.vcp-voucher-visit-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2e8e53;
    margin: 4px 0 0;
    background: rgba(46,142,83,.07);
    border-radius: 8px;
    padding: 8px 12px;
}

.vcp-voucher-visit-date .material-symbols-rounded {
    font-size: 17px;
}

.vcp-voucher-accept-btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 13px 0;
    border-radius: 12px;
    letter-spacing: .01em;
}

.vcp-my-vouchers-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    color: #8a98ae;
    text-align: center;
}

.vcp-my-vouchers-empty .material-symbols-rounded {
    font-size: 48px;
    opacity: .4;
}

/* ─── Dashboard pending voucher callout card ─────────────────────────────────── */

.vcp-voucher-pending-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(59,109,214,.08) 0%, rgba(59,109,214,.04) 100%);
    border: 1.5px solid rgba(59,109,214,.25);
    border-radius: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.vcp-voucher-pending-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #3b6dd6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcp-voucher-pending-icon .material-symbols-rounded {
    font-size: 22px;
    color: #fff;
}

.vcp-voucher-pending-body {
    flex: 1;
    min-width: 0;
}

.vcp-voucher-pending-body strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #20304c;
    line-height: 1.3;
}

.vcp-voucher-pending-body p {
    margin: 3px 0 0;
    font-size: 12px;
    color: #60708f;
}

/* ─── Accept voucher modal ───────────────────────────────────────────────────── */

#vcp-accept-voucher-modal.vcp-overlay,
#vcp-show-voucher-modal.vcp-overlay,
#vcp-influencer-profile-modal.vcp-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11,18,38,.55);
    backdrop-filter: blur(2px);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#vcp-accept-voucher-modal.vcp-hidden,
#vcp-show-voucher-modal.vcp-hidden,
#vcp-influencer-profile-modal.vcp-hidden {
    display: none !important;
}

/* ─── Generic vcp-modal panel (white box inside overlays) ────────────────────── */

.vcp-modal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(11,18,38,.28);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: vcpModalIn .2s ease;
}

@keyframes vcpModalIn {
    from { transform: translateY(10px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.vcp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #eef2f8;
}

.vcp-modal-title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #0b1226;
}

.vcp-modal-close {
    background: none;
    border: none;
    font-size: 26px;
    color: #8a98ae;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color .15s;
}

.vcp-modal-close:hover {
    color: #20304c;
}

.vcp-modal-body {
    padding: 22px;
}

.vcp-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px;
    border-top: 1px solid #eef2f8;
    background: #f7f9fd;
}

@media (max-width: 600px) {
    .vcp-modal-footer { flex-direction: column-reverse; }
    .vcp-modal-footer .vcp-btn { width: 100%; justify-content: center; }
}

/* ─── Accepted voucher visit-date display ────────────────────────────────────── */

.vcp-voucher-visit-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 8px;
}

.vcp-voucher-visit-countdown.is-future {
    background: rgba(46,142,83,.08);
    color: #1e6e3a;
    border: 1px solid rgba(46,142,83,.2);
}

.vcp-voucher-visit-countdown.is-today {
    background: rgba(59,109,214,.1);
    color: #1d4ba8;
    border: 1px solid rgba(59,109,214,.3);
}

.vcp-voucher-visit-countdown.is-late {
    background: rgba(220,38,38,.08);
    color: #c0392b;
    border: 1px solid rgba(220,38,38,.25);
}

.vcp-voucher-visit-countdown .material-symbols-rounded { font-size: 18px; }

/* ─── Show voucher modal (big code display) ─────────────────────────────────── */

.vcp-voucher-display-restaurant {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 800;
    color: #0b1226;
    text-align: center;
    line-height: 1.2;
}

.vcp-voucher-display-festival {
    margin: 0 0 14px;
    font-size: 13px;
    color: #60708f;
    text-align: center;
}

.vcp-voucher-display-qr-wrap {
    display: flex;
    justify-content: center;
    margin: 12px 0 14px;
}

.vcp-voucher-display-qr {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    border: 1px solid #e5eaf3;
    padding: 8px;
    background: #fff;
}

.vcp-voucher-display-code {
    display: block;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0b1226;
    background: #f7f9fd;
    padding: 14px 10px;
    border-radius: 12px;
    border: 2px dashed #c4cee0;
    margin: 4px 0 6px;
    user-select: all;
    word-break: break-all;
}

.vcp-voucher-display-info {
    text-align: center;
    color: #60708f;
    font-size: 13px;
    margin: 6px 0 0;
}

.vcp-voucher-display-rules {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(59,109,214,.06);
    border: 1px solid rgba(59,109,214,.22);
    border-radius: 10px;
}

.vcp-voucher-display-rules strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #1d4ba8;
    margin-bottom: 4px;
}

.vcp-voucher-display-rules p {
    margin: 0;
    font-size: 14px;
    color: #20304c;
    line-height: 1.4;
    white-space: pre-wrap;
}

.vcp-voucher-display-disclaimer {
    margin-top: 14px;
    padding: 10px 12px;
    background: #fff8e6;
    border: 1px solid #f5d36a;
    border-radius: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    color: #6b4a05;
    line-height: 1.4;
}

.vcp-voucher-display-disclaimer .material-symbols-rounded {
    font-size: 18px;
    flex-shrink: 0;
    color: #b07c1f;
}

/* ─── Influencer link (clickable name in manager voucher table) ──────────────── */

/* ─── Festival: Imagens + Sincronização Site Externo ────────────────────────── */

.vcp-images-sync-section {
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    background: #fff;
}
.vcp-images-sync-section > summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 800;
    color: #20304c;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vcp-images-sync-section > summary::-webkit-details-marker { display: none; }
.vcp-images-sync-section > summary .material-symbols-rounded { color: #3b6dd6; }
.vcp-images-sync-section[open] > summary { border-bottom: 1px solid #eef2f8; }
.vcp-images-sync-body { padding: 14px 16px 16px; }

.vcp-images-sync-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5eaf3;
}

.vcp-image-sync-list { display: flex; flex-direction: column; gap: 6px; }

.vcp-image-sync-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    background: #f7f9fd;
    border-radius: 8px;
}

.vcp-image-sync-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #e5eaf3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #d5dce8;
}
.vcp-image-sync-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vcp-image-sync-thumb .material-symbols-rounded { color: #8a98ae; font-size: 26px; }

.vcp-image-sync-info { flex: 1; min-width: 0; }
.vcp-image-sync-info strong { display: block; font-size: 13px; color: #0b1226; }
.vcp-image-sync-info .vcp-festival-meta { font-size: 11px; display: block; margin-top: 1px; }

.vcp-sync-badge {
    display: inline-block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(138,152,174,.2);
    color: #4a576f;
}
.vcp-sync-badge.is-synced { background: rgba(46,142,83,.14); color: #1e6e3a; }

.vcp-image-sync-actions { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }

/* ─── Festival Voting tab ────────────────────────────────────────────────────── */

.vcp-voting-subtabs {
    display: flex;
    gap: 6px;
    padding: 4px;
    background: #f0f4fa;
    border-radius: 10px;
    width: fit-content;
}
.vcp-voting-subtab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #60708f;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .18s;
}
.vcp-voting-subtab:hover { color: #20304c; }
.vcp-voting-subtab.is-active {
    background: #fff;
    color: #1d4ba8;
    box-shadow: 0 1px 3px rgba(11,18,38,.08);
}
.vcp-voting-subtab .material-symbols-rounded { font-size: 17px; }

.vcp-voting-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin: 16px 0;
}
.vcp-voting-summary-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-left: 4px solid #c4cee0;
    border-radius: 10px;
    padding: 12px 14px;
    text-align: left;
}
.vcp-voting-summary-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #0b1226;
    line-height: 1;
}
.vcp-voting-summary-card span {
    display: block;
    font-size: 11px;
    color: #60708f;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-top: 4px;
}
.vcp-voting-summary-card.is-success { border-left-color: #2e8e53; }
.vcp-voting-summary-card.is-warn    { border-left-color: #d97706; }
.vcp-voting-summary-card.is-danger  { border-left-color: #c0392b; background: rgba(220,38,38,.03); }

.vcp-voting-ranking tr.has-redflag { background: rgba(220,38,38,.03); }
.vcp-voting-ranking tr.is-no-votes { opacity: .55; background: #fafbfd; }
.vcp-voting-ranking tr.is-no-votes:hover { opacity: 1; }

.vcp-voting-simple-avg {
    font-size: 10px;
    color: #8a98ae;
    font-weight: 500;
}

.vcp-voting-bayes-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 0;
    padding: 8px 12px;
    background: rgba(59,109,214,.06);
    border-left: 3px solid #3b6dd6;
    border-radius: 6px;
    font-size: 12px;
    color: #1d4ba8;
    line-height: 1.4;
}
.vcp-voting-bayes-info .material-symbols-rounded { font-size: 16px; flex-shrink: 0; }

.vcp-voting-rank {
    display: inline-block;
    min-width: 28px;
    text-align: center;
    color: #1d4ba8;
    font-size: 14px;
}

.vcp-voting-comments-row td {
    padding: 0 8px 8px !important;
    background: #f7f9fd;
}
.vcp-voting-comments-row details {
    padding: 6px 0;
    font-size: 12px;
}
.vcp-voting-comments-row summary {
    cursor: pointer;
    font-weight: 700;
    color: #1d4ba8;
    padding: 4px 0;
}
.vcp-voting-comments-list {
    margin: 6px 0 0;
    padding: 0 0 0 20px;
    list-style: disc;
    color: #42516d;
    line-height: 1.5;
}
.vcp-voting-comments-list li.is-redflag { color: #c0392b; font-weight: 600; }
.vcp-voting-comment-flag { font-size: 13px; }



.vcp-voting-header {
    margin-bottom: 12px;
}

.vcp-voting-prefix-box {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 14px 16px;
    background: #f7f9fd;
    border-radius: 10px;
    border: 1px solid #e5eaf3;
    margin-bottom: 14px;
}

.vcp-voting-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
    cursor: pointer;
}
.vcp-voting-switch input { opacity: 0; width: 0; height: 0; }
.vcp-voting-slider {
    position: absolute;
    inset: 0;
    background: #c4cee0;
    border-radius: 22px;
    transition: background .18s;
}
.vcp-voting-slider::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .18s;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.vcp-voting-switch input:checked + .vcp-voting-slider {
    background: #2e8e53;
}
.vcp-voting-switch input:checked + .vcp-voting-slider::before {
    transform: translateX(16px);
}

.vcp-form-feedback.is-success { color: #1e6e3a; }
.vcp-form-feedback.is-error   { color: #c0392b; }

/* ─── LIA: Leads Cadastrados ────────────────────────────────────────────────── */

.vcp-lia-leads-table tbody tr { transition: background .15s; }
.vcp-lia-leads-table tbody tr:hover { background: #f7f9fd; }

.vcp-lia-lead-date {
    font-size: 12px;
    color: #60708f;
    white-space: nowrap;
}

.vcp-lia-lead-name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1d4ba8;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
}
.vcp-lia-lead-name:hover { color: #25d366; }
.vcp-lia-lead-name .material-symbols-rounded { font-size: 14px; color: #25d366; }

.vcp-lia-lead-phone {
    display: block;
    font-size: 11px;
    color: #8a98ae;
    margin-top: 2px;
    font-family: 'Courier New', monospace;
}

.vcp-lia-flow-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(138,152,174,.18);
    color: #4a576f;
}
.vcp-lia-flow-badge.is-main { background: rgba(59,109,214,.12); color: #1d4ba8; }
.vcp-lia-flow-badge.is-done { background: rgba(46,142,83,.14);  color: #1e6e3a; }

#vcp-lia-send-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11,18,38,.55);
    backdrop-filter: blur(2px);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── LIA: Enviar Mensagens ─────────────────────────────────────────────────── */

.vcp-lia-section { margin-bottom: 14px; }
.vcp-lia-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 800;
    color: #0b1226;
    margin: 0 0 8px;
}
.vcp-lia-section-title .material-symbols-rounded { color: #3b6dd6; font-size: 20px; }

.vcp-lia-checks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.vcp-lia-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f7f9fd;
    border: 1px solid #e5eaf3;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #20304c;
    cursor: pointer;
}
.vcp-lia-check input { accent-color: #3b6dd6; }
.vcp-lia-check:has(input:checked) {
    background: rgba(59,109,214,.1);
    border-color: #3b6dd6;
    color: #1d4ba8;
}

.vcp-lia-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.vcp-lia-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #d5dce8;
    border-radius: 6px;
    font-size: 12px;
    color: #42516d;
    cursor: pointer;
}
.vcp-lia-chip input { display: none; }
.vcp-lia-chip:has(input:checked) {
    background: rgba(46,142,83,.1);
    border-color: #2e8e53;
    color: #1e6e3a;
    font-weight: 700;
}

.vcp-lia-preview-count {
    font-size: 14px;
    color: #1d4ba8;
}
.vcp-lia-preview-count strong { font-size: 20px; }

.vcp-lia-sample {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #e5eaf3;
}
.vcp-lia-sample ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px;
}
.vcp-lia-sample li {
    padding: 6px 10px;
    background: #f7f9fd;
    border-radius: 6px;
    font-size: 12px;
}
.vcp-lia-sample li strong { display: block; color: #0b1226; }
.vcp-lia-sample li span { color: #60708f; font-size: 11px; }

/* ─── Festival Finance Summary modal ───────────────────────────────────────── */

#vcp-festival-finance-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11,18,38,.55);
    backdrop-filter: blur(2px);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcp-fin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 640px) {
    .vcp-fin-grid { grid-template-columns: 1fr; }
}

.vcp-fin-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-left: 4px solid #c4cee0;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.vcp-fin-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0f4fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vcp-fin-card-icon .material-symbols-rounded { font-size: 20px; color: #60708f; }
.vcp-fin-card-body { flex: 1; min-width: 0; }
.vcp-fin-card-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #60708f;
    font-weight: 700;
}
.vcp-fin-card-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #0b1226;
    margin-top: 2px;
    line-height: 1.1;
}
.vcp-fin-card-sub {
    display: block;
    font-size: 11px;
    color: #8a98ae;
    font-style: normal;
    margin-top: 3px;
}

.vcp-fin-card.is-discount  { border-left-color: #d97706; }
.vcp-fin-card.is-discount  .vcp-fin-card-icon { background: rgba(217,119,6,.1); }
.vcp-fin-card.is-discount  .vcp-fin-card-icon .material-symbols-rounded { color: #b25b00; }
.vcp-fin-card.is-net       { border-left-color: #1d4ba8; }
.vcp-fin-card.is-net       .vcp-fin-card-icon { background: rgba(29,75,168,.1); }
.vcp-fin-card.is-net       .vcp-fin-card-icon .material-symbols-rounded { color: #1d4ba8; }
.vcp-fin-card.is-received  { border-left-color: #2e8e53; }
.vcp-fin-card.is-received  .vcp-fin-card-icon { background: rgba(46,142,83,.1); }
.vcp-fin-card.is-received  .vcp-fin-card-icon .material-symbols-rounded { color: #1e6e3a; }
.vcp-fin-card.is-overdue   { border-left-color: #c0392b; background: rgba(220,38,38,.02); }
.vcp-fin-card.is-overdue   .vcp-fin-card-icon { background: rgba(220,38,38,.1); }
.vcp-fin-card.is-overdue   .vcp-fin-card-icon .material-symbols-rounded { color: #c0392b; }
.vcp-fin-card.is-overdue   .vcp-fin-card-value { color: #c0392b; }
.vcp-fin-card.is-pending   { border-left-color: #6b4a05; }
.vcp-fin-card.is-pending   .vcp-fin-card-icon { background: rgba(251,191,36,.15); }
.vcp-fin-card.is-pending   .vcp-fin-card-icon .material-symbols-rounded { color: #b25b00; }

.vcp-fin-progress-wrap {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #e5eaf3;
}
.vcp-fin-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #20304c;
    margin-bottom: 6px;
}
.vcp-fin-progress-bar {
    display: flex;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f4fa;
}
.vcp-fin-seg { height: 100%; transition: width .3s; }
.vcp-fin-seg.is-received { background: #2e8e53; }
.vcp-fin-seg.is-overdue  { background: #c0392b; }
.vcp-fin-seg.is-indate   { background: #fbbf24; }
.vcp-fin-progress-legend {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    font-size: 11px;
    color: #60708f;
}
.vcp-fin-progress-legend span { display: inline-flex; align-items: center; gap: 5px; }
.vcp-fin-progress-legend i {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
}
.vcp-fin-progress-legend i.is-received { background: #2e8e53; }
.vcp-fin-progress-legend i.is-overdue  { background: #c0392b; }
.vcp-fin-progress-legend i.is-indate   { background: #fbbf24; }

/* ─── Voucher summary: botão +1 compacto ──────────────────────────────────── */

.vcp-voucher-summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.vcp-voucher-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0f4fa;
    color: #1d4ba8;
    border: 1px dashed #c4cee0;
    cursor: pointer;
    padding: 0;
    transition: background .15s, border-color .15s;
}
.vcp-voucher-add-btn:hover {
    background: #e0ecff;
    border-color: #3b6dd6;
    border-style: solid;
}
.vcp-voucher-add-btn .material-symbols-rounded { font-size: 14px; }

/* ─── Mobile Vouchers KPI panel ──────────────────────────────────────────────── */

.vcpm-kpi-panel {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #0b1226 0%, #1a2342 100%);
    border-radius: 14px;
    color: #fff;
}
.vcpm-kpi-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #c4cee0;
}
.vcpm-kpi-title .material-symbols-rounded { font-size: 18px; }

.vcpm-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.vcpm-kpi-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.vcpm-kpi-card .material-symbols-rounded { font-size: 18px; color: #8b9bc1; margin-bottom: 2px; }
.vcpm-kpi-card strong { font-size: 20px; font-weight: 800; line-height: 1; color: #fff; }
.vcpm-kpi-card span { font-size: 10px; color: #a3b1cc; text-transform: uppercase; letter-spacing: .3px; }
.vcpm-kpi-card.is-available .material-symbols-rounded { color: #fbbf24; }
.vcpm-kpi-card.is-pending   .material-symbols-rounded { color: #f97316; }
.vcpm-kpi-card.is-accepted  .material-symbols-rounded { color: #34d399; }
.vcpm-kpi-card.is-used      .material-symbols-rounded { color: #60a5fa; }

.vcpm-kpi-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.vcpm-kpi-rates > div { text-align: center; }
.vcpm-kpi-rates strong { display: block; font-size: 22px; font-weight: 800; color: #34d399; }
.vcpm-kpi-rates span { display: block; font-size: 11px; color: #a3b1cc; margin-top: 2px; }
.vcpm-kpi-rates em { color: #6b7896; font-style: normal; }

@media (max-width: 480px) {
    .vcpm-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── LIA numbers list (Configuração) ────────────────────────────────────────── */

.vcp-voting-lia-box {
    margin-top: 18px;
    padding: 14px 16px;
    background: #f7f9fd;
    border: 1px solid #e5eaf3;
    border-radius: 10px;
}
.vcp-voting-lia-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.vcp-lia-list { display: flex; flex-direction: column; gap: 6px; }
.vcp-lia-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 6px 8px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5eaf3;
}
.vcp-lia-row .vcp-input { padding: 6px 10px; font-size: 13px; }
.vcp-lia-row .vcp-lia-phone { font-family: 'Courier New', monospace; letter-spacing: .5px; }

@media (max-width: 600px) {
    .vcp-lia-row { grid-template-columns: 1fr 1fr; }
    .vcp-lia-row > .vcp-voting-switch,
    .vcp-lia-row > button { justify-self: end; }
}

/* ─── QR Codes grid ──────────────────────────────────────────────────────────── */

.vcp-qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.vcp-qr-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.vcp-qr-card-img {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1;
    background: #f7f9fd;
    border-radius: 8px;
    padding: 4px;
}
.vcp-qr-card-code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: #f0f4fa;
    padding: 3px 8px;
    border-radius: 4px;
    color: #0b1226;
}
.vcp-qr-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #0b1226;
    line-height: 1.2;
}
.vcp-qr-card-url {
    font-size: 11px;
    color: #60708f;
    text-decoration: none;
    word-break: break-all;
}
.vcp-qr-card-url:hover { color: #1d4ba8; }

/* ─── Manager voucher table: Visita column ─────────────────────────────────── */

.vcp-visit-cell {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.3;
    white-space: nowrap;
}
.vcp-visit-cell .material-symbols-rounded { font-size: 14px; flex-shrink: 0; }
.vcp-visit-cell small { font-size: 10px; font-weight: 500; opacity: .85; display: block; margin-top: 1px; }

.vcp-visit-cell.is-pending { background: rgba(217,119,6,.1);   color: #b25b00; }
.vcp-visit-cell.is-future  { background: rgba(46,142,83,.08);  color: #1e6e3a; }
.vcp-visit-cell.is-today   { background: rgba(59,109,214,.12); color: #1d4ba8; }
.vcp-visit-cell.is-late    { background: rgba(220,38,38,.08);  color: #c0392b; }
.vcp-visit-cell.is-used    { background: rgba(138,152,174,.15); color: #4a576f; }

.vcp-validator-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid #f0f4fa;
}
.vcp-validator-row:last-child { border-bottom: none; }
.vcp-validator-row > span { color: #60708f; }
.vcp-validator-row > strong { color: #0b1226; text-align: right; }

.vcp-influencer-link {
    background: none;
    border: none;
    padding: 0;
    color: #1d4ba8;
    font-weight: 700;
    cursor: pointer;
    font-size: inherit;
    text-align: left;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: color .15s;
}

.vcp-influencer-link:hover {
    color: #3b6dd6;
    text-decoration-style: solid;
}

/* ─── Influencer profile modal content ───────────────────────────────────────── */

.vcp-inf-profile-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.vcp-inf-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f0f4fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5eaf3;
}

.vcp-inf-avatar img { width: 100%; height: 100%; object-fit: cover; }
.vcp-inf-avatar .material-symbols-rounded { font-size: 36px; color: #8a98ae; }

.vcp-inf-info { flex: 1; min-width: 0; }
.vcp-inf-info h4 { margin: 0 0 6px; font-size: 18px; font-weight: 800; color: #0b1226; }

.vcp-inf-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 3px 0;
    font-size: 13px;
    color: #42516d;
}
.vcp-inf-meta .material-symbols-rounded { font-size: 15px; color: #8a98ae; flex-shrink: 0; }
.vcp-inf-meta a { color: #1d4ba8; text-decoration: none; }
.vcp-inf-meta a:hover { text-decoration: underline; }

.vcp-inf-bio-text {
    background: #f7f9fd;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 0 0 14px;
    font-size: 13px;
    color: #42516d;
    line-height: 1.4;
    white-space: pre-wrap;
}

.vcp-inf-socials h5 {
    margin: 0 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #60708f;
    font-weight: 800;
}

.vcp-inf-no-social {
    text-align: center;
    color: #8a98ae;
    font-size: 13px;
    padding: 14px 0;
    font-style: italic;
}

.vcp-inf-social-card {
    background: #fff;
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
}

.vcp-inf-social-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vcp-inf-social-pic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5eaf3;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcp-inf-social-pic-placeholder {
    background: linear-gradient(135deg, #6a47cc, #f04a8a);
    color: #fff;
}
.vcp-inf-social-pic-placeholder .material-symbols-rounded { font-size: 22px; }

.vcp-inf-social-info { flex: 1; min-width: 0; }
.vcp-inf-social-info strong {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #0b1226;
}

.vcp-inf-verified {
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3b6dd6;
    color: #fff;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.vcp-inf-social-network {
    font-size: 11px;
    color: #60708f;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.vcp-inf-social-open {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f7f9fd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ba8;
    text-decoration: none;
    border: 1px solid #e5eaf3;
    transition: background .15s;
}
.vcp-inf-social-open:hover { background: #e5eaf3; }
.vcp-inf-social-open .material-symbols-rounded { font-size: 18px; }

.vcp-inf-social-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f4fa;
}

.vcp-inf-social-metrics > div {
    text-align: center;
}

.vcp-inf-social-metrics strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0b1226;
}

.vcp-inf-social-metrics span {
    font-size: 10px;
    color: #60708f;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.vcp-inf-social-bio {
    margin: 8px 0 0;
    font-size: 12px;
    color: #60708f;
    line-height: 1.4;
}
