:root {
    --bg: #f3f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --text: #133041;
    --muted: #648093;
    --primary: #0f9d95;
    --secondary: #ff7a45;
    --line: #d8e4ee;
    --danger: #d04047;
    --success: #1f9d55;
    --radius: 16px;
    --shadow: 0 12px 30px rgba(7, 38, 58, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 80% -20%, #d7f4f0 0%, transparent 50%),
                radial-gradient(circle at 10% 120%, #ffe5d9 0%, transparent 45%),
                var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

.app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.app-shell.no-sidebar {
    grid-template-columns: 1fr;
}

.app-shell.login-shell {
    display: block;
}

.app-sidebar {
    background: linear-gradient(180deg, #0d2f3d, #12475a);
    color: #f6fbff;
    padding: 20px 16px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.brand {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.profile {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 18px;
}

.profile small {
    display: block;
    text-transform: uppercase;
    color: #b9e7f2;
    margin-top: 4px;
    letter-spacing: 0.04em;
}

.menu {
    display: grid;
    gap: 8px;
}

.menu a {
    border-radius: 12px;
    padding: 10px 12px;
    color: #c8e8f3;
    font-size: 0.95rem;
}

.menu a.active,
.menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.app-main {
    padding: 24px;
    overflow-x: hidden;
}

.app-main.full {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 24px 18px;
}

.page-header h1 {
    margin: 0;
    font-size: 1.55rem;
}

.page-header p {
    color: var(--muted);
    margin: 8px 0 0;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 16px;
    margin-top: 16px;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-head h2 {
    margin: 0;
    font-size: 1.05rem;
}

.stats-grid {
    margin-top: 16px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    background: linear-gradient(160deg, #f7fcff, #fff);
    border: 1px solid #d2e5f4;
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.stat-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.45rem;
    color: #0b2a3a;
}

.grid-2 {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.campaign-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.campaigns-layout {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.campaign-create-card {
    position: sticky;
    top: 24px;
}

.campaign-create-copy {
    margin: 0 0 14px;
    color: #5f7d90;
    line-height: 1.5;
}

.campaign-form-grid {
    gap: 10px;
}

.campaign-list-card {
    min-width: 0;
}

.campaign-list-summary {
    color: #607c8f;
    font-size: 0.88rem;
}

.campaign-stack {
    display: grid;
    gap: 14px;
}

.campaign-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
    border: 1px solid #dce8f1;
    border-radius: 18px;
    padding: 16px;
    background:
        radial-gradient(circle at top right, rgba(215, 244, 240, 0.9), transparent 32%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.campaign-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.campaign-item-top h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.campaign-item-top p {
    margin: 10px 0 0;
    color: #446477;
    line-height: 1.55;
    max-width: 62ch;
}

.campaign-item-metrics {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
}

.campaign-metric {
    border: 1px solid #d8e6f0;
    border-radius: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
}

.campaign-metric span {
    display: block;
    color: #688496;
    font-size: 0.84rem;
}

.campaign-metric strong {
    display: block;
    margin-top: 7px;
    color: #103143;
    font-size: 1.2rem;
}

.campaign-progress {
    margin-top: 16px;
}

.campaign-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: #36586c;
    font-size: 0.9rem;
}

.campaign-progress-head strong {
    color: #103143;
}

.campaign-progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #e7f1f8;
    overflow: hidden;
}

.campaign-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #0f9d95, #ff7a45);
}

.campaign-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    color: #577286;
    font-size: 0.9rem;
}

.campaign-meta-row strong {
    color: #153649;
}

.campaign-item-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.campaign-status-form {
    display: grid;
    gap: 8px;
    border: 1px solid #dce8f1;
    border-radius: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.88);
}

.campaign-status-form label {
    font-size: 0.88rem;
    color: #5f7d90;
}

.campaign-actions {
    display: grid;
    gap: 8px;
}

.campaign-actions .btn,
.campaign-actions form,
.campaign-status-form .btn {
    width: 100%;
}

.campaign-actions form {
    margin: 0;
}

.campaign-empty {
    border: 1px dashed #cfdfea;
    border-radius: 16px;
    padding: 20px;
    background: #fbfdff;
    color: #4d6d81;
}

.campaign-empty strong {
    display: block;
    color: #143446;
    margin-bottom: 6px;
}

.btn-danger-soft {
    color: #9c2b39;
    border-color: #f1c8cf;
    background: #fff6f7;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.researcher-mobile-list {
    display: none;
}

.researcher-mobile-card {
    border: 1px solid #dbe8f2;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    display: grid;
    gap: 8px;
}

.researcher-mobile-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.researcher-mobile-card p {
    margin: 0;
    color: #4d6c80;
    font-size: 0.88rem;
}

.researcher-mobile-metrics {
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr;
    font-size: 0.86rem;
    color: #45687d;
}

.researcher-mobile-metrics strong {
    color: #133244;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #e3edf4;
    font-size: 0.92rem;
    vertical-align: top;
}

th {
    background: #f4f8fc;
    color: #33566c;
    font-weight: 600;
}

.form-grid,
.filter-grid {
    display: grid;
    gap: 8px;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cddce8;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
    color: #113043;
}

textarea {
    resize: vertical;
}

.btn {
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm {
    padding: 7px 10px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0c8d86);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #ff9656);
    color: #fff;
}

.btn-light {
    background: #eff6fb;
    color: #19445a;
    border: 1px solid #d5e5f1;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.inline-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.inline-checkbox input {
    width: auto;
}

.badge {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-ativa {
    background: #ddf7ec;
    color: #1f8654;
}

.badge-rascunho {
    background: #fff2d6;
    color: #9b6600;
}

.badge-encerrada {
    background: #f7dde0;
    color: #9c2b39;
}

.alert {
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.92rem;
    border: 1px solid transparent;
}

.alert-success {
    background: #e5f9ef;
    color: #197d48;
    border-color: #c4efd9;
}

.alert-error {
    background: #fde8ea;
    color: #ab2a35;
    border-color: #f6c7cd;
}

.detail-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-item {
    border: 1px solid #dce8f1;
    border-radius: 14px;
    padding: 12px;
    background: #fbfdff;
}

.detail-item span {
    display: block;
    color: #648093;
    font-size: 0.86rem;
    margin-bottom: 6px;
}

.detail-item strong {
    color: #123244;
    font-size: 0.98rem;
}

.detail-block {
    margin-top: 16px;
    border-top: 1px solid #e3edf4;
    padding-top: 14px;
}

.detail-block h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.detail-block p {
    margin: 0;
    color: #29485b;
    line-height: 1.55;
}

.detail-answer-list {
    display: grid;
    gap: 10px;
}

.detail-answer-item {
    border: 1px solid #dce8f1;
    border-radius: 14px;
    padding: 12px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.detail-answer-item span {
    display: block;
    color: #214156;
    font-weight: 600;
}

.detail-answer-item small {
    display: block;
    margin-top: 4px;
    color: #6a8393;
}

.detail-answer-item strong {
    display: block;
    margin-top: 8px;
    color: #0b2a3a;
}

.certificate-page {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 18px;
}

.certificate-header {
    border-bottom: 2px solid #dbe8f2;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.certificate-header h1 {
    margin: 0;
    font-size: 1.55rem;
}

.certificate-header p {
    margin: 8px 0 0;
    color: #5f7d90;
}

.certificate-meta {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.certificate-meta div,
.certificate-checklist div {
    border: 1px solid #dce8f1;
    border-radius: 14px;
    padding: 12px;
    background: #fbfdff;
}

.certificate-meta span,
.certificate-checklist span {
    display: block;
    color: #648093;
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.certificate-meta strong,
.certificate-checklist strong {
    color: #113043;
}

.certificate-section {
    margin-top: 20px;
}

.certificate-section h2 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.certificate-section p {
    color: #315268;
    line-height: 1.6;
}

.certificate-checklist {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certificate-footer {
    margin-top: 22px;
    border-top: 1px dashed #cad9e6;
    padding-top: 14px;
    color: #4f6d81;
    line-height: 1.6;
}

.login-screen {
    min-height: calc(100vh - 48px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.app-main.login-main {
    max-width: none;
    padding: 0;
    margin: 0;
}

.phone-frame {
    width: min(1120px, calc(100vw - 64px));
    min-height: 620px;
    display: flex;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(216, 228, 238, 0.92);
    box-shadow: 0 28px 70px rgba(7, 38, 58, 0.16);
}

.login-hero {
    flex: 1 1 58%;
    color: #fff;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 80% 16%, rgba(255, 122, 69, 0.24), transparent 30%),
        linear-gradient(145deg, #0d2f3d, #0f615e 72%, #123f55);
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

.login-kicker {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 7px 12px;
    color: #ccecf8;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.login-hero h1 {
    margin: 24px 0 0;
    font-size: 3.4rem;
    line-height: 1;
    max-width: 8ch;
}

.login-hero p {
    max-width: 520px;
    margin: 18px 0 0;
    color: #ccecf8;
    font-size: 1.08rem;
    line-height: 1.55;
}

.login-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 48px;
}

.login-highlights span {
    min-height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.09);
    color: #d8f1f8;
    line-height: 1.35;
}

.login-highlights strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.login-card {
    flex: 0 0 430px;
    width: 430px;
    min-width: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.login-card-head {
    margin-bottom: 28px;
}

.login-card-head span {
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.login-card-head h2 {
    margin: 8px 0 0;
    font-size: 1.7rem;
    color: #102f40;
}

.login-card label {
    margin: 14px 0 7px;
    color: #36586c;
    font-weight: 700;
}

.login-card input {
    min-height: 46px;
}

.dual-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}

.dual-buttons .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
}

.dual-buttons .btn {
    min-height: 46px;
}

.hint {
    display: block;
    margin-top: 18px;
    color: #5f7d90;
    line-height: 1.4;
}

.map-canvas {
    width: 100%;
    height: min(72vh, 650px);
    border-radius: 14px;
    overflow: hidden;
}

.question-wizard {
    gap: 14px;
}

.wizard-progress {
    background: #f2f8fd;
    border: 1px solid #d9e8f4;
    border-radius: 12px;
    padding: 8px 10px;
    color: #376078;
    font-weight: 600;
}

.wizard-step {
    display: none;
    gap: 8px;
}

.wizard-step.is-active {
    display: grid;
}

.wizard-step h3 {
    margin: 4px 0;
    font-size: 1.02rem;
}

.wizard-actions {
    margin-top: 12px;
}

.candidate-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.candidate-grid.selectable {
    margin-bottom: 6px;
}

.candidate-option-card,
.candidate-admin-card {
    border: 1px solid #d2e3ef;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
}

.candidate-option-card {
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.candidate-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.candidate-option-card.is-selected {
    border-color: #0f9d95;
    box-shadow: 0 0 0 3px rgba(15, 157, 149, 0.16);
}

.candidate-option-card img,
.candidate-admin-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #f8fbfd;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid #dde9f2;
}

.candidate-option-card strong,
.candidate-admin-info strong {
    display: block;
}

.candidate-admin-card {
    display: grid;
    gap: 8px;
    align-content: start;
}

.candidate-admin-card.is-inactive {
    opacity: 0.55;
}

.candidate-admin-info {
    display: grid;
    gap: 2px;
}

.candidate-admin-info small {
    color: var(--muted);
}

.candidate-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    border: 1px dashed #cadbe8;
    background: #f6fbff;
    color: #6d8ca1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.pagination {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.pagination span {
    color: #46677b;
    font-size: 0.9rem;
}

.public-form-wrap {
    max-width: 960px;
}

.public-survey-hero {
    margin: -16px -16px 14px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #d9f2ee, #f9ebe3);
    border-bottom: 1px solid #dce8f1;
}

..public-survey-hero img {
    display: block;
    width: 100%;
    height: clamp(140px, 28vw, 220px);
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    background: #f7fbff;
}

.cookie-card {
    text-align: left;
}

.geo-status {
    color: #34586d;
}

.link-header-cell {
    display: grid;
    gap: 8px;
    min-width: 180px;
}

.link-header-thumb {
    width: 100%;
    max-width: 170px;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #d8e4ee;
    background: #f4f8fc;
}

.compact-form {
    gap: 6px;
}

.muted-text {
    color: #6d8797;
    font-size: 0.9rem;
}

.success-card {
    text-align: center;
}

.success-check {
    width: 86px;
    height: 86px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #60cf9b, #1f9d55);
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popSuccess 0.65s ease both;
    box-shadow: 0 14px 24px rgba(31, 157, 85, 0.25);
}

@keyframes popSuccess {
    0% { transform: scale(0.55); opacity: 0; }
    70% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 980px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: static;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .campaigns-layout {
        grid-template-columns: 1fr;
    }

    .campaign-create-card {
        position: static;
    }

    .campaign-item {
        grid-template-columns: 1fr;
    }

    .campaign-item-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .certificate-meta,
    .certificate-checklist {
        grid-template-columns: 1fr 1fr;
    }

    .candidate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-survey-hero img {
        height: clamp(132px, 32vw, 190px);
        max-height: 190px;
    }

    .login-screen {
        padding: 24px;
    }

    .phone-frame {
        min-height: auto;
        width: min(620px, calc(100vw - 48px));
        flex-direction: column;
    }

    .login-hero {
        padding: 34px;
    }

    .login-hero h1 {
        max-width: none;
        font-size: 2.45rem;
    }

    .login-highlights {
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 28px;
    }

    .login-card {
        width: 100%;
        flex-basis: auto;
        padding: 34px;
    }
}

@media (max-width: 640px) {
    .app-main {
        padding: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .campaign-item-top {
        flex-direction: column;
    }

    .campaign-item-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .campaign-meta-row {
        flex-direction: column;
        gap: 8px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .certificate-meta,
    .certificate-checklist {
        grid-template-columns: 1fr;
    }

    .brand {
        margin-bottom: 12px;
    }

    .menu {
        grid-template-columns: 1fr 1fr;
    }

    .menu a {
        font-size: 0.85rem;
        padding: 9px;
        text-align: center;
    }

    .candidate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .candidate-option-card img,
    .candidate-admin-card img,
    .candidate-placeholder {
        height: 130px;
    }

    .wizard-actions .btn {
        width: 100%;
    }

    .public-survey-hero {
        margin: -16px -16px 12px;
        border-radius: 14px 14px 0 0;
    }

    .public-survey-hero img {
        width: 100%;
        height: clamp(120px, 38vw, 156px);
        max-height: 156px;
        object-fit: contain;
        object-position: center;
        background: #f7fbff;
    }

    .link-header-thumb {
        max-width: 100%;
        height: 76px;
    }

    .login-screen {
        min-height: auto;
        padding: 12px;
    }

    .phone-frame {
        width: 100%;
        border-radius: 20px;
    }

    .login-hero {
        padding: 26px 20px;
    }

    .login-kicker {
        font-size: 0.76rem;
    }

    .login-hero h1 {
        font-size: 2rem;
    }

    .login-hero p {
        font-size: 0.96rem;
    }

    .login-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .login-highlights span {
        min-height: auto;
        padding: 12px;
    }

    .login-card {
        width: 100%;
        padding: 22px 18px;
    }

    .login-card-head h2 {
        font-size: 1.35rem;
    }

    .dual-buttons {
        grid-template-columns: 1fr;
    }
}

@media print {
    .app-sidebar,
    .page-header.print-hidden,
    .print-hidden,
    .alert {
        display: none !important;
    }

    .app-shell,
    .app-main,
    .card.certificate-page {
        display: block;
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
        box-shadow: none;
        border: 0;
        background: #fff;
    }

    body {
        background: #fff;
    }
}

@media (max-width: 760px) {
    .researcher-desktop-table {
        display: none;
    }

    .researcher-mobile-list {
        display: grid;
        gap: 10px;
        margin-top: 6px;
    }

    .researcher-mobile-card .btn {
        width: 100%;
    }
}
