:root {
    --navy: #15233a;
    --ink: #1e293b;
    --muted: #64748b;
    --paper: #f5f7fb;
    --accent: #d7a84f;
    --teal: #1f8a8a;
    --aqua: #e7f4f1;
    --sky: #eaf2fb;
    --sage: #eef5ea;
    --lavender: #f1eef8;
    --warm: #fbf7ee;
    --line: #d9e2ec;
}

body {
    background:
        linear-gradient(180deg, #f6f8fc 0%, #f2f6f8 48%, #f7f8fb 100%);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bg-navy { background: var(--navy); }
.brand-logo {
    width: auto;
    max-width: 360px;
    height: 86px;
    object-fit: contain;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.navbar-brand {
    gap: .35rem !important;
    align-items: center !important;
}

.navbar-brand span {
    font-size: clamp(1.75rem, 2vw, 2.35rem);
    font-weight: 800;
    line-height: .95;
    transform: translateY(2px);
}

.conference-nav .nav-link {
    color: rgba(255,255,255,.82) !important;
    font-size: clamp(.88rem, .75vw, 1rem);
    font-weight: 650;
    letter-spacing: .01em;
    padding-left: .3rem !important;
    padding-right: .3rem !important;
    white-space: nowrap;
}

.conference-nav .nav-link:hover,
.conference-nav .nav-link:focus {
    color: #f1c66d !important;
}

.conference-nav .btn {
    white-space: nowrap;
}

.conference-nav .nav-item:last-child {
    margin-right: .65rem;
}

@media (max-width: 1199px) {
    .conference-nav .nav-link {
        font-size: .9rem;
        padding-left: .36rem !important;
        padding-right: .36rem !important;
    }
    .navbar-brand span {
        font-size: 1.85rem;
    }
}
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #172033;
}
.btn-accent:hover { background: #c99a42; border-color: #c99a42; color: #172033; }

.hero {
    min-height: 560px;
    background:
        linear-gradient(105deg, rgba(18,31,52,.97), rgba(15,84,88,.78) 56%, rgba(82,57,92,.66)),
        url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-conference-name {
    color: var(--accent);
    font-size: clamp(1.08rem, 1.2vw + .75rem, 1.55rem);
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.25;
    max-width: 920px;
    text-transform: uppercase;
}

.section-pad { padding: 72px 0; }

.subthemes-section {
    background:
        linear-gradient(135deg, rgba(231, 244, 241, .92), rgba(234, 242, 251, .82)),
        linear-gradient(180deg, #f8fafc, #eef6f5);
}

.dates-section {
    background: linear-gradient(180deg, #eef6f5 0%, #f4f7fb 100%);
}

.speakers-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 50%, #faf7f1 100%);
}

.practical-section {
    background: linear-gradient(180deg, #f7fbff 0%, #f2f7f3 100%);
}
.eyebrow {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.soft-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.institution-panel {
    align-items: stretch;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
}

.institution-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid #c6dce0;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(20, 32, 51, .09);
    min-height: 104px;
    padding: 18px;
}

.institution-host {
    align-items: center;
    border-left: 6px solid var(--accent);
    display: flex;
    gap: 16px;
}

.institution-card img {
    background: transparent;
    border: 0;
    border-radius: 0;
    height: 72px;
    object-fit: contain;
    padding: 0;
    width: auto;
    max-width: 180px;
}

.institution-card span {
    color: #0f766e;
    display: block;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.institution-card strong {
    color: #142033;
    display: block;
    font-size: 1.02rem;
    line-height: 1.28;
}

.institution-cohosts {
    border-left: 6px solid #4f86b8;
    display: grid;
    gap: 12px;
}

.institution-cohost-list {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.institution-cohost-item {
    align-items: center;
    background: linear-gradient(135deg, #f8fbff 0%, #f1f8f5 100%);
    border: 1px solid #d5e3ee;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    min-height: 62px;
    padding: 10px;
}

.institution-cohost-item img {
    height: 52px;
    width: auto;
    max-width: 130px;
}

.institution-cohost-item strong {
    font-size: .92rem;
}

.subtheme-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #b9cfe8;
    border-left: 5px solid var(--teal);
    box-shadow: 0 18px 36px rgba(21, 35, 58, .12);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.subtheme-card:hover {
    border-color: #7fb4d8;
    box-shadow: 0 22px 42px rgba(21, 35, 58, .18);
    transform: translateY(-2px);
}
.subtheme-compact-list {
    background: #fff;
    border: 1px solid #b9cfe8;
    border-radius: 8px;
    overflow: hidden;
}
.subtheme-compact-item {
    border-top: 1px solid #d8e3eb;
}
.subtheme-compact-item:first-child {
    border-top: 0;
}
.subtheme-compact-item summary {
    align-items: center;
    color: #142033;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 14px;
    justify-content: space-between;
    list-style: none;
    padding: 13px 18px;
}
.subtheme-compact-item summary::-webkit-details-marker {
    display: none;
}
.subtheme-compact-item summary::after {
    background: #0b7872;
    border-radius: 5px;
    color: #fff;
    content: "View details  +";
    font-size: .78rem;
    font-weight: 700;
    flex: 0 0 auto;
    line-height: 1;
    padding: 8px 11px;
    white-space: nowrap;
}
.subtheme-compact-item summary:hover {
    background: #f0f7f6;
}
.subtheme-compact-item summary:hover::after {
    background: #075f5a;
}
.subtheme-compact-item[open] summary {
    background: #eaf5f3;
}
.subtheme-compact-item[open] summary::after {
    content: "Hide details  \2212";
}
.subtheme-compact-description {
    color: #46576b;
    font-size: .92rem;
    padding: 2px 18px 14px;
}
.subtheme-compact-description > :last-child {
    margin-bottom: 0;
}

.dates-panel {
    background: linear-gradient(135deg, #ffffff 0%, var(--sky) 100%);
    border-color: #b8d5e8;
}

.date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid #d5e3ee;
    border-radius: 8px;
}

.date-item span {
    color: #26364d;
    font-weight: 650;
}

.date-item strong {
    color: #142033;
    white-space: nowrap;
}

.countdown-panel {
    align-items: center;
    background: linear-gradient(135deg, #fff8e6 0%, #eef8f6 100%);
    border: 1px solid #d8c58d;
    border-left: 6px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .08);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(220px, .85fr) minmax(420px, 1.15fr);
    padding: 18px 20px;
}

.countdown-label {
    color: #0f766e;
    display: block;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.countdown-panel > div:first-child strong {
    color: var(--navy);
    display: block;
    font-size: 1.12rem;
    line-height: 1.3;
}

.countdown-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.countdown-grid div {
    background: rgba(255, 255, 255, .86);
    border: 1px solid #d5e3ee;
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
}

.countdown-grid strong {
    color: #0f5f5a;
    display: block;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    line-height: 1;
}

.countdown-grid span {
    color: #64748b;
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    margin-top: 7px;
    text-transform: uppercase;
}

.publication-band {
    background: linear-gradient(135deg, var(--aqua), #f6f2fb);
    border-top: 1px solid #cfe3e1;
    border-bottom: 1px solid #cfe3e1;
}

.publication-panel {
    border-color: #9bc9c4;
    box-shadow: 0 18px 34px rgba(31, 138, 138, .12);
}

.publication-outlets {
    border-top: 1px solid #d6e7e4;
    padding-top: 22px;
}

.publication-outlets-heading {
    align-items: end;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.publication-outlets-heading h3 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0;
}

.publication-outlets-heading span {
    color: #64748b;
    font-size: .9rem;
    font-weight: 700;
}

.publication-outlet-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.publication-outlet-table {
    border: 1px solid #c9d9e6;
    font-size: .92rem;
}
.publication-outlet-table thead th {
    background: #eaf2f6;
    color: #263a4f;
    font-size: .78rem;
    letter-spacing: 0;
    padding: 10px 14px;
    text-transform: uppercase;
    white-space: nowrap;
}
.publication-outlet-table td {
    border-color: #d8e3eb;
    padding: 11px 14px;
}
.publication-outlet-table tbody tr:nth-child(even) {
    background: #f8fbfc;
}
.publication-outlet-table .publication-apc {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    white-space: nowrap;
}

.publication-outlet-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid #c8dbe8;
    border-left: 5px solid #0f766e;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    min-height: 150px;
    padding: 16px;
}

.publication-outlet-top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.publication-outlet-top strong {
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.25;
}

.publication-outlet-top span,
.publication-outlet-meta span {
    background: #eef6f6;
    border: 1px solid #c9e2e0;
    border-radius: 999px;
    color: #0f5f5a;
    font-size: .72rem;
    font-weight: 900;
    padding: 4px 8px;
    white-space: nowrap;
}

.publication-outlet-card p {
    color: #475569;
    font-size: .9rem;
    line-height: 1.45;
    margin: 0;
}

.publication-outlet-ranking {
    align-self: start;
    background: #eef8ff;
    border: 1px solid #b9d8ee;
    border-radius: 7px;
    color: #0f4f5f;
    display: inline-flex;
    font-size: .86rem;
    font-weight: 900;
    padding: 6px 9px;
}

.publication-outlet-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.publication-outlet-meta span {
    background: #fff7df;
    border-color: #eed48d;
    color: #7a4f00;
}

.submission-pathway-card {
    background: linear-gradient(135deg, #ffffff 0%, #fbf7ee 100%);
    border-color: #ead7a5;
    align-content: center;
    display: grid;
    gap: 14px;
}

.submission-pathway-card p {
    font-size: 1rem;
    line-height: 1.65;
}

.submission-pathway-card .btn {
    justify-self: start;
}

.guidelines-page-header {
    border-bottom: 1px solid #dbe4ee;
    margin-bottom: 28px;
    padding-bottom: 22px;
}

.guidelines-page-content {
    display: grid;
    gap: 22px;
}

.guidelines-page-content section {
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    padding: 22px;
}

.guidelines-page-content h2 {
    color: var(--navy);
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.guidelines-page-content h3 {
    color: #126161;
    font-size: 1rem;
    font-weight: 800;
    margin-top: 16px;
}

.guidelines-page-content p,
.guidelines-page-content li {
    color: #475569;
    line-height: 1.62;
}

.guidelines-page-content ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.guidelines-outlet-list {
    display: grid;
    gap: 10px;
    margin: 14px 0 18px;
}

.guidelines-outlet-item {
    background: #fff;
    border: 1px solid #d5e0eb;
    border-left: 4px solid #0f766e;
    border-radius: 8px;
    padding: 14px 16px;
}

.guidelines-outlet-item > div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 6px;
}

.guidelines-outlet-item strong {
    color: var(--navy);
}

.guidelines-outlet-item span {
    background: #eef6f6;
    border: 1px solid #c9e2e0;
    border-radius: 999px;
    color: #0f5f5a;
    font-size: .78rem;
    font-weight: 900;
    padding: 4px 9px;
}

.guide-language-switch {
    display: flex;
    gap: 8px;
}

.guidelines-outlet-table {
    margin: 16px 0 22px;
    border: 1px solid #cbdbe4;
    border-radius: 8px;
}

.guidelines-outlet-table thead th {
    padding: 11px 14px;
    color: #314157;
    background: #edf3f7;
    font-size: .8rem;
    text-transform: uppercase;
}

.guidelines-outlet-table td {
    padding: 11px 14px;
    border-color: #d8e3e9;
    font-size: .9rem;
}

.guidelines-outlet-table td small {
    display: block;
    margin-top: 2px;
    color: #64748b;
}

.venue-panel {
    align-items: stretch;
    background: linear-gradient(135deg, #ffffff 0%, var(--sage) 100%);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, .75fr) minmax(360px, 1.25fr);
}

.venue-copy {
    align-content: center;
    display: grid;
    gap: 10px;
}

.venue-copy h3 {
    color: #126161;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0;
}

.venue-copy p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.venue-map {
    border: 1px solid #cbd8e6;
    border-radius: 8px;
    min-height: 320px;
    overflow: hidden;
}

.venue-map iframe {
    border: 0;
    display: block;
    height: 100%;
    min-height: 320px;
    width: 100%;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 20px;
    justify-content: center;
}

.speaker-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    overflow: hidden;
    border: 1px solid #bfd3e6;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .10);
}

.speaker-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #e6f3fb 0%, #e8f6ef 100%);
}

.speaker-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #126161;
    font-size: 3rem;
    font-weight: 800;
}

.speaker-body {
    padding: 18px;
}

.speaker-body h3 {
    color: #142033;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.speaker-institution {
    color: #126161;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.speaker-topic {
    color: #334155;
    font-size: .84rem;
    line-height: 1.45;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .speaker-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .institution-panel {
        grid-template-columns: 1fr;
    }
    .institution-host {
        align-items: flex-start;
        flex-direction: column;
    }
    .institution-cohost-list {
        grid-template-columns: 1fr;
    }
    .speaker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cohost-admin-row {
        grid-template-columns: 1fr;
    }
    .cohost-admin-logo {
        width: 82px;
    }
}

@media (max-width: 480px) {
    .speaker-grid {
        grid-template-columns: 1fr;
    }
    .date-item {
        align-items: flex-start;
        flex-direction: column;
    }
    .fee-matrix-head,
    .fee-matrix-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .fee-matrix-head strong,
    .fee-matrix-row strong {
        text-align: left;
    }
}

.publication-list ul,
.publication-list ol,
.rich-content ul,
.rich-content ol {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.subtheme-editor-form {
    background: #f8fafc;
    border-color: #c8d6e5 !important;
}

.subtheme-editor-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 92px;
    gap: 10px;
    align-items: center;
}

.compact-rich-toolbar {
    border: 1px solid #b8c7d8;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
    padding: 7px;
}

.compact-rich-editor {
    min-height: 94px;
    border: 1px solid #b8c7d8;
    border-radius: 0 0 7px 7px;
    padding: 12px 14px;
}

@media (max-width: 767px) {
    .subtheme-editor-top {
        grid-template-columns: 1fr;
    }
    .workflow-choice {
        grid-template-columns: 1fr;
    }
    .author-row {
        grid-template-columns: 1fr;
    }
    .payment-summary-grid,
    .payment-input-grid {
        grid-template-columns: 1fr;
    }
    .document-download-item {
        align-items: stretch;
        flex-direction: column;
    }
}

.user-action-panel {
    width: 100%;
    max-width: 460px;
    padding: 8px;
    background: #f9fbfd;
    border: 1px solid #d9e3ee;
    border-radius: 7px;
}

.user-role-form,
.user-password-form {
    display: grid;
    gap: 8px;
    align-items: center;
}

.user-role-form {
    grid-template-columns: minmax(220px, 1fr) 132px;
}

.user-password-form {
    grid-template-columns: minmax(220px, 1fr) 132px;
}

.user-status-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 132px;
    gap: 8px;
}

.user-status-form .btn {
    grid-column: 2;
    width: 100%;
    margin-left: 0;
}

.user-role-form .role-select {
    width: 100%;
    min-width: 0;
}

.user-password-form .password-reset-input {
    width: 100%;
    min-width: 0;
}

.user-role-form .btn,
.user-password-form .btn {
    white-space: nowrap;
    width: 100%;
    font-size: .82rem;
    padding-left: .6rem;
    padding-right: .6rem;
    min-height: 32px;
}

.fee-required-check {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
}

.compact-user-table {
    max-width: 100%;
}

.compact-user-table table {
    font-size: .84rem;
    table-layout: fixed;
    width: 100%;
}

.compact-user-table th:nth-child(1),
.compact-user-table td:nth-child(1) {
    width: 12%;
}

.compact-user-table th:nth-child(2),
.compact-user-table td:nth-child(2) {
    width: 15%;
}

.compact-user-table th:nth-child(3),
.compact-user-table td:nth-child(3) {
    width: 10%;
}

.compact-user-table th:nth-child(4),
.compact-user-table td:nth-child(4) {
    width: 13%;
}

.compact-user-table th:nth-child(5),
.compact-user-table td:nth-child(5) {
    width: 50%;
}

.user-email {
    display: block;
    font-size: .72rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #64748b;
    font-weight: 500;
}

.compact-user-table th,
.compact-user-table td {
    padding: .65rem .75rem;
}

.compact-user-table th {
    white-space: nowrap;
}

.user-fee-cell {
    font-size: .82rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.user-fee-form {
    display: block;
}

.user-fee-form .form-check {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    font-size: .74rem;
}

.user-action-panel .form-select,
.user-action-panel .form-control {
    min-height: 32px;
}

.user-status-form .btn {
    min-height: 32px;
    padding-top: .25rem;
    padding-bottom: .25rem;
}

@media (max-width: 767px) {
    .user-role-form,
    .user-password-form {
        grid-template-columns: 1fr;
    }
    .user-role-form .btn,
    .user-password-form .btn {
        width: 100%;
    }
}

.publication-list li {
    position: relative;
    padding: 10px 0 10px 8px;
    border-bottom: 1px solid #d7e9e7;
}

.publication-list li:last-child {
    border-bottom: 0;
}

.rich-content p:last-child,
.rich-content ul:last-child,
.rich-content ol:last-child {
    margin-bottom: 0;
}

.editor-shell {
    background: #fff;
    border: 1px solid #c9d6e4;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.rich-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: #f1f5f9;
    border-bottom: 1px solid #c9d6e4;
}

.editor-select {
    flex: 0 0 auto;
    width: 170px !important;
    max-width: 170px;
    height: 34px;
    padding: 4px 28px 4px 10px;
    border: 1px solid #b8c7d8;
    border-radius: 6px;
    background-color: #fff;
    color: var(--ink);
    font-size: .9rem;
}

.editor-select-sm {
    width: 118px !important;
    max-width: 118px;
}

.editor-btn {
    flex: 0 0 auto;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #b8c7d8;
    border-radius: 6px;
    background: #fff;
    color: #26364d;
    font-size: .9rem;
}

.editor-btn:hover {
    background: #e8f3ff;
    border-color: #82b5e2;
}

.editor-btn-text {
    min-width: 112px;
}

.toolbar-divider {
    width: 1px;
    height: 26px;
    background: #c9d6e4;
    margin: 0 3px;
}

.rich-editor {
    min-height: 190px;
    padding: 18px 20px;
    background: #fff;
    border: 0;
}

.rich-editor:focus {
    outline: 3px solid rgba(31, 138, 138, .18);
    outline-offset: -3px;
}

.travel-info {
    background: #fff;
    border-color: #b8d5e8;
}

.travel-card {
    background: #f8fbfd;
    border: 1px solid #d5e3ee;
    border-radius: 8px;
}

.travel-card h3 {
    color: #142033;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.travel-accordion {
    border: 1px solid #bfd4df;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.travel-accordion-item + .travel-accordion-item {
    border-top: 1px solid #d5e2e8;
}

.travel-accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    color: #102742;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.travel-accordion-item summary::-webkit-details-marker {
    display: none;
}

.travel-accordion-item summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    color: #fff;
    background: #0b817b;
    font-size: 1.35rem;
    line-height: 1;
}

.travel-accordion-item[open] summary::after {
    content: "-";
}

.travel-accordion-item summary:hover {
    background: #eef7f6;
}

.travel-accordion-content {
    padding: 4px 20px 18px;
}

.accordion-action {
    margin-left: auto;
    color: #0b817b;
    font-size: .82rem;
    font-weight: 700;
}

.publication-outlet-add-form {
    display: grid;
    grid-template-columns: 1.25fr .9fr 1.75fr 1.2fr;
    gap: 10px 12px;
    align-items: end;
}

.publication-outlet-add-form .form-label {
    margin-bottom: 4px;
    font-size: .82rem;
    font-weight: 700;
}

.publication-outlet-add-form .form-control,
.publication-outlet-add-form .form-select {
    min-height: 38px;
    padding: 7px 10px;
    font-size: .88rem;
}

.outlet-add-submit {
    grid-column: span 4;
}

@media (max-width: 991.98px) {
    .publication-outlet-add-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .outlet-add-submit {
        grid-column: span 2;
    }
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.sidebar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    height: max-content;
    position: sticky;
    top: 84px;
}

.sidebar .nav-link {
    color: var(--ink);
    border-radius: 6px;
    padding: 10px 12px;
}
.sidebar .nav-link.active, .sidebar .nav-link:hover {
    background: #edf7f7;
    color: #126161;
}

.table thead th {
    background: #eef3f8;
    color: #334155;
    font-size: .84rem;
    text-transform: uppercase;
}

.badge-soft {
    background: #eef3f8;
    color: #334155;
    border: 1px solid var(--line);
}

.badge-online {
    background: #e8f3ff;
    color: #0b5fa5;
    border: 1px solid #b9dcff;
}

.badge-onsite {
    background: #edf8f0;
    color: #1d6b3a;
    border: 1px solid #bfe7c9;
}

.badge-hybrid {
    background: #fff4dc;
    color: #8a5a0a;
    border: 1px solid #f3d08a;
}

.progress-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.progress-stepper span {
    background: #eef3f8;
    border: 1px solid #d5e0eb;
    border-radius: 999px;
    color: #64748b;
    font-size: .76rem;
    font-weight: 700;
    padding: 5px 10px;
}

.progress-stepper span.done {
    background: #edf8f0;
    border-color: #bfe7c9;
    color: #1d6b3a;
}

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

.pathway-choice {
    gap: 18px;
}

.pathway-card {
    border: 2px solid #d5e0eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 260px;
    padding: 22px;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.pathway-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
    transform: translateY(-1px);
}

.pathway-card-conference {
    background: #fff8e6;
    border-color: #dfb34d;
}

.pathway-card-publication {
    background: #eef8ff;
    border-color: #7fb4d9;
}

.pathway-badge {
    align-self: flex-start;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .02em;
    padding: 5px 10px;
    text-transform: uppercase;
}

.pathway-card-conference .pathway-badge {
    background: #e0ad3f;
    color: #241a06;
}

.pathway-card-publication .pathway-badge {
    background: #0f766e;
    color: #fff;
}

.pathway-card h4 {
    color: var(--navy);
    font-size: 1.12rem;
    margin-bottom: 0;
}

.pathway-points {
    color: #475569;
    font-size: .9rem;
    margin: 0 0 4px;
    padding-left: 1.1rem;
}

.pathway-card .btn {
    margin-top: auto;
    min-height: 44px;
    font-weight: 700;
}

.publication-outlet-preview {
    background: #f8fbff;
    border: 1px solid #b9d8ee;
    border-left: 4px solid #0f766e;
    border-radius: 7px;
    color: #334155;
    line-height: 1.35;
    margin: 2px 0 8px;
    padding: 8px 10px;
}

.publication-outlet-preview strong {
    color: #0f4f5f;
}

.publication-outlet-preview span {
    color: #7a4f00;
    font-weight: 800;
}

.publication-outlet-preview[data-state="empty"] {
    border-left-color: #94a3b8;
    color: #64748b;
}

.abstract-submit-panel {
    background: #fff7df;
    border: 2px solid #d89b1f;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(216, 155, 31, .16);
    padding: 0;
    overflow: hidden;
}

.abstract-submit-panel summary {
    align-items: center;
    background: linear-gradient(135deg, #e0ad3f, #c98d12);
    color: #111827;
    cursor: pointer;
    display: flex;
    font-weight: 800;
    gap: 10px;
    justify-content: space-between;
    padding: 14px 18px;
    transition: background .15s ease;
}

.abstract-submit-panel summary::-webkit-details-marker {
    display: none;
}

.abstract-submit-panel summary::marker {
    content: "";
}

.abstract-submit-panel summary::before {
    align-items: center;
    background: rgba(255, 255, 255, .72);
    border-radius: 999px;
    content: "+";
    display: inline-flex;
    flex: 0 0 24px;
    height: 24px;
    justify-content: center;
    line-height: 1;
    margin-right: 2px;
    width: 24px;
}

.abstract-submit-panel summary::after {
    background: rgba(17, 24, 39, .12);
    border-radius: 999px;
    content: "Click to open";
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .02em;
    padding: 5px 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

.abstract-submit-panel summary:hover {
    background: linear-gradient(135deg, #e7b955, #bd7f0d);
}

.abstract-submit-panel[open] summary {
    border-bottom: 1px solid #dfb34d;
    margin-bottom: 0;
}

.abstract-submit-panel[open] summary::before {
    content: "-";
}

.abstract-submit-panel[open] summary::after {
    content: "Hide form";
}

.abstract-submit-panel > p,
.abstract-submit-panel > form {
    padding-left: 18px;
    padding-right: 18px;
}

.abstract-submit-panel > p {
    margin-top: 14px;
}

.abstract-submit-panel > form {
    padding-bottom: 18px;
}

.rejected-submission-alert {
    background: #fff1f2;
    border: 1px solid #f3b4bd;
    border-left: 5px solid #dc3545;
    border-radius: 8px;
    color: #7f1d1d;
    padding: 12px 14px;
}

.rejected-submission-list {
    display: grid;
    gap: 4px;
    font-size: .9rem;
}

.document-download-list {
    border: 1px solid #d6e1ec;
    border-radius: 8px;
    overflow: hidden;
}

.document-download-item {
    align-items: center;
    background: #fff;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 14px 18px;
}

.document-download-item + .document-download-item {
    border-top: 1px solid #d6e1ec;
}

.document-download-title {
    color: var(--navy);
    font-weight: 800;
    letter-spacing: .01em;
}

.payment-upload-form {
    display: grid;
    gap: 16px;
    max-width: 1040px;
}

.payment-summary-grid {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(180px, 220px);
    gap: 16px;
}

.payment-input-grid {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(260px, 1fr) minmax(300px, 1.2fr);
    gap: 16px;
    align-items: end;
}

.payment-input-grid .form-control,
.payment-input-grid .form-select,
.payment-summary-grid .form-control {
    min-height: 46px;
}

.payment-upload-button {
    min-width: 190px;
}

.billing-table-wrap {
    background: #f8fafc;
    border: 1px solid #d5e0eb;
    border-radius: 8px;
    padding: 12px;
}

.billing-table {
    margin-bottom: 0;
}

.billing-table th {
    background: #eaf1f7;
    color: #334155;
    font-size: .78rem;
    text-transform: uppercase;
}

.billing-upload-form {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-width: 330px;
}

.payment-verify-form {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 126px minmax(150px, 1fr) 76px;
    min-width: 370px;
}

.payment-status-select {
    min-width: 126px;
}

.payment-save-button {
    min-width: 76px;
}

.publication-review-tools {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
    min-width: 260px;
}

.admin-full-paper-reviewer-action {
    grid-template-columns: minmax(170px, 1fr) 74px;
}

.payment-target-panel {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #cbd8e6;
    border-left: 5px solid #1f8a8a;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 14px;
}

.payment-target-title {
    color: #64748b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.payment-target-title::after {
    content: ":";
}

.payment-target-main {
    color: var(--navy);
    font-size: .96rem;
    font-weight: 800;
}

.payment-target-meta {
    color: #475569;
    font-size: .84rem;
}

.payment-target-panel[data-state="submission"] {
    background: #eef7f6;
    border-color: #9fcfca;
}

.review-card {
    background: #fff;
    border: 1px solid #cbd8e6;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
    padding: 20px;
}

.review-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
}

.review-title-block h3 {
    color: var(--navy);
    font-weight: 800;
}

.review-file-button {
    min-width: 170px;
    padding: .65rem 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.review-abstract-box {
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    color: #334155;
    line-height: 1.55;
    margin-top: 14px;
    padding: 14px 16px;
}

.review-form {
    display: grid;
    gap: 18px;
}

.review-score-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr)) minmax(92px, .75fr);
    gap: 12px;
    align-items: end;
}

.review-score-item {
    min-width: 0;
}

.review-score-item .form-label {
    color: #334155;
    font-size: .82rem;
    font-weight: 700;
}

.review-score-item .form-control {
    min-height: 40px;
}

.review-score-total {
    background: #eef7f6;
    border: 1px solid #b8d8d5;
    border-radius: 8px;
    color: #0f766e;
    display: grid;
    gap: 2px;
    min-height: 40px;
    padding: 8px 10px;
}

.review-score-total span {
    color: #64748b;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.review-score-total strong {
    color: #0f3f3d;
    font-size: 1.05rem;
}

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

.review-submit-row {
    display: grid;
    grid-template-columns: minmax(220px, 360px) auto;
    gap: 14px;
    align-items: end;
}

.review-submit-button {
    min-width: 170px;
    min-height: 46px;
    font-weight: 700;
}

.review-deadline-list {
    display: grid;
    gap: 10px;
}

.review-deadline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    padding: 12px 14px;
}

.admin-submission-table table {
    min-width: 1320px;
    font-size: .78rem;
}

.admin-submission-table th,
.admin-submission-table td {
    padding: .6rem .7rem;
    vertical-align: middle;
}

.admin-submission-table .form-select-sm {
    min-width: 128px;
    font-size: .78rem;
}

.admin-submission-table .admin-inline-action {
    display: flex;
    gap: 5px;
    align-items: center;
    min-width: 0;
}

.admin-submission-table .admin-reviewer-action .form-select-sm {
    width: 158px;
    min-width: 158px;
}

.admin-submission-table .admin-decision-action .form-select-sm {
    width: 146px;
    min-width: 146px;
}

.admin-submission-table .admin-document-action .form-select-sm {
    width: 88px;
    min-width: 88px;
}

.admin-submission-table .attendance-confirm-inline {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 7px;
    color: #166534;
    display: inline-flex;
    font-size: .74rem;
    font-weight: 800;
    padding: 6px 8px;
    white-space: nowrap;
}

.admin-submission-table .attendance-confirm-inline .form-check-input {
    margin-top: .12rem;
}

.admin-submission-table .document-rules {
    max-width: 180px;
    line-height: 1.25;
}

.admin-submission-table .reviewer-suggestion-cell {
    min-width: 190px;
    max-width: 240px;
}

.admin-submission-table .reviewer-suggestion-cell summary {
    color: #0f766e;
    cursor: pointer;
    font-weight: 700;
}

.admin-submission-table .reviewer-comment-box {
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 6px;
    color: #334155;
    line-height: 1.35;
    max-height: 160px;
    overflow: auto;
    padding: 8px;
}

.admin-submission-table .admin-stack-action {
    display: grid;
    gap: 6px;
    min-width: 190px;
}

.admin-submission-table .admin-autosave-action {
    display: grid;
    gap: 6px;
    min-width: 190px;
}

.admin-submission-table .btn-sm {
    font-size: .76rem;
    padding-left: .55rem;
    padding-right: .55rem;
    white-space: nowrap;
}

.admin-submission-table .badge {
    font-size: .72rem;
}

.autosave-status {
    color: #64748b;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
}

.autosave-status[data-state="saving"] {
    color: #a16207;
}

.autosave-status[data-state="saved"] {
    color: #047857;
}

.autosave-status[data-state="error"] {
    color: #dc2626;
}

.outlet-bulk-form {
    background: #f8fafc;
    border: 1px solid #d5e0eb;
    border-radius: 8px;
    padding: 14px;
}

.outlet-bulk-scroll {
    overflow-x: auto;
    padding-bottom: 2px;
}

.outlet-grid {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(125px, .75fr) minmax(230px, 1.3fr) minmax(150px, .9fr) 90px 82px 80px 108px;
    gap: 10px;
    align-items: center;
    min-width: 1250px;
}

.outlet-grid-head {
    color: #334155;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 2px 10px 8px;
}

.outlet-grid-row {
    background: #fff;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 10px;
}

.outlet-grid .form-control,
.outlet-grid .form-select {
    min-width: 0;
    width: 100%;
}

.outlet-save-all {
    min-width: 180px;
}

.admin-bulk-list {
    background: #f8fafc;
    border: 1px solid #d5e0eb;
    border-radius: 8px;
    padding: 12px;
}

.admin-bulk-row {
    display: grid;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 10px;
}

.admin-bulk-row-dates {
    grid-template-columns: minmax(220px, 1.4fr) minmax(180px, 1fr) 92px 96px;
}

.admin-bulk-row .form-control,
.admin-bulk-row .form-select {
    min-width: 0;
}

.speaker-bulk-list {
    overflow: hidden;
}

.admin-bulk-row-speakers,
.speaker-add-form {
    align-items: stretch;
    background: #fff;
    border: 1px solid #d5e0eb;
    border-radius: 10px;
    display: grid;
    gap: 16px;
    grid-template-columns: 220px minmax(0, 1fr);
    margin-bottom: 10px;
    padding: 14px;
}

.admin-bulk-row-speakers .form-label,
.speaker-add-form .form-label {
    color: #334155;
    font-size: .72rem;
    margin-bottom: 5px;
}

.admin-bulk-row-speakers .form-control-sm,
.speaker-add-form .form-control-sm {
    font-size: .82rem;
    min-height: 36px;
}

.speaker-photo-column {
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 10px;
}

.speaker-photo-preview {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #eaf1f7;
    border: 1px solid #cbd8e6;
    border-radius: 7px;
    color: #64748b;
    display: flex;
    font-size: .82rem;
    font-weight: 700;
    justify-content: center;
    overflow: hidden;
}

.speaker-photo-preview img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.speaker-remove-photo {
    align-items: center;
    background: #fff1f2;
    border: 1px solid #f3b4bd;
    border-radius: 7px;
    color: #991b1b;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 700;
    gap: 6px;
    padding: 7px 9px;
}

.speaker-identity-column {
    display: grid;
    gap: 12px;
}

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

.speaker-topic-field,
.speaker-identity-grid > input[name="topic"] {
    grid-column: 1 / -1;
}

.speaker-meta-row {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.speaker-order-field,
.speaker-order-input {
    max-width: 96px;
}

.speaker-active-field {
    align-items: center;
    display: inline-flex;
    font-size: .86rem;
    gap: 6px;
    min-width: 86px;
    padding-top: 0;
}

.speaker-add-button {
    min-width: 130px;
}

.admin-save-all {
    min-width: 170px;
}

.speaker-save-all {
    background: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 10px 20px rgba(13, 110, 253, .18);
    color: #fff;
    font-weight: 800;
    min-height: 42px;
    min-width: 220px;
}

.speaker-save-all:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: #fff;
}

.fee-bulk-form {
    background: #f8fafc;
    border: 1px solid #d5e0eb;
    border-radius: 8px;
    padding: 12px;
}

.fee-bulk-row {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(140px, 180px) minmax(90px, 120px) minmax(160px, auto);
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 12px;
}

.fee-bulk-row .form-control {
    min-width: 0;
}

.fee-open-check {
    align-items: center;
    background: #eef7f6;
    border: 1px solid #b8d8d5;
    border-radius: 7px;
    color: #0f766e;
    display: inline-flex;
    font-size: .86rem;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    white-space: nowrap;
}

.fee-readonly-value,
.fee-readonly-label {
    align-items: center;
    border-radius: 7px;
    display: flex;
    min-height: 42px;
    padding: 8px 10px;
}

.fee-readonly-value {
    background: #fff;
    border: 1px solid #dbe4ee;
    color: #142033;
    font-weight: 800;
}

.fee-readonly-label {
    background: #f1f5f9;
    border: 1px solid #dbe4ee;
    color: #64748b;
    font-size: .84rem;
    font-weight: 700;
    justify-content: center;
}

.registration-availability-note {
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 700;
    padding: 10px 12px;
}

.registration-availability-note[data-state="open"] {
    background: #edf8f0;
    border: 1px solid #bfe7c9;
    color: #1d6b3a;
}

.registration-availability-note[data-state="closed"] {
    background: #fff1f2;
    border: 1px solid #f3b4bd;
    color: #991b1b;
}

.author-rows {
    display: grid;
    gap: 12px;
}

.author-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 108px;
    gap: 12px;
    align-items: end;
    padding: 12px;
    border: 1px solid #d5e0eb;
    border-radius: 8px;
    background: #f8fafc;
}
.author-presenter-settings {
    align-items: center;
    display: grid;
    gap: 5px;
    grid-column: 1 / 4;
    grid-template-columns: auto minmax(140px, 180px) minmax(140px, 180px);
}
.author-presenter-settings .form-check {
    margin-right: 10px;
}
.author-presenter-settings.is-inactive .form-select {
    opacity: .48;
}
.financial-document-summary {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
}
.financial-document-summary > div {
    border: 1px solid #d5e0eb;
    padding: 10px 12px;
}
.financial-document-summary span {
    color: #64748b;
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
}
.financial-document-summary strong {
    display: block;
}
.financial-document-table {
    border-collapse: collapse;
    margin: 18px 0 24px;
    width: 100%;
}
.financial-document-table th,
.financial-document-table td {
    border: 1px solid #cbd5e1;
    padding: 9px 11px;
    text-align: left;
}
.financial-document-table th {
    background: #eaf2f6;
}
.invoice-payment-details,
.receipt-confirmation {
    background: #f4f9f8;
    border-left: 5px solid #168b83;
    padding: 14px 18px;
}
.invoice-payment-details p {
    margin-bottom: 5px;
}

.author-row .form-label {
    margin-bottom: 5px;
}

.author-row .btn {
    grid-column: 4;
    grid-row: 1;
    min-height: 46px;
}
.committee-public-table {
    background: #fff;
    border: 1px solid #c9d9e6;
    font-size: .9rem;
}
.committee-public-table thead th {
    background: #eaf2f6;
    color: #263a4f;
    font-size: .78rem;
    padding: 10px 14px;
    text-transform: uppercase;
    white-space: nowrap;
}
.committee-public-table td {
    border-color: #d8e3eb;
    padding: 10px 14px;
    vertical-align: top;
}
.committee-public-table tbody tr:nth-child(even) {
    background: #f8fbfc;
}
.committee-table-rich ul,
.committee-table-rich ol {
    margin: 0;
    padding-left: 1.05rem;
}
.committee-table-rich p {
    margin: 0;
}

.fee-display {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}

.fee-row:last-child {
    border-bottom: 0;
}

.fee-row span {
    font-weight: 650;
}

.fee-row small {
    display: block;
    color: var(--muted);
    font-weight: 500;
}

.fee-row strong {
    white-space: nowrap;
}

.fee-matrix {
    overflow: hidden;
    border: 1px solid #d4e1ec;
    border-radius: 8px;
}

.fee-matrix-head,
.fee-matrix-row {
    display: grid;
    grid-template-columns: minmax(135px, 1.05fr) minmax(125px, .95fr) minmax(145px, 1.05fr);
    gap: 16px;
    align-items: center;
}

.fee-matrix-head {
    background: #eef6f8;
    color: #26364d;
    padding: 11px 14px;
    font-size: .78rem;
    text-transform: uppercase;
}

.fee-matrix-head strong {
    color: #126161;
    text-align: right;
}

.fee-matrix-row {
    padding: 11px 14px;
    border-top: 1px solid #d4e1ec;
}

.fee-matrix-row span {
    color: #142033;
    font-weight: 800;
    line-height: 1.2;
}

.fee-matrix-row small {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 650;
    margin-top: 3px;
}

.fee-matrix-row strong {
    color: #142033;
    font-size: .92rem;
    text-align: right;
    white-space: nowrap;
}

.guidelines-panel h2 {
    font-size: 1.55rem;
}

.guidelines-panel .rich-content {
    font-size: .96rem;
    line-height: 1.55;
}

.guidelines-panel .rich-content ul,
.guidelines-panel .rich-content ol {
    padding-left: 1.05rem;
}

.contact-strip {
    display: grid;
    grid-template-columns: minmax(140px, .4fr) minmax(0, 1.8fr);
    gap: 18px;
    align-items: center;
}

.contact-strip-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    color: #26364d;
    font-weight: 600;
}

.contact-strip h2 {
    font-size: 1.2rem;
}

.contact-strip-items p {
    overflow-wrap: anywhere;
}

#landing-content {
    border: 1px solid #b8c7d8;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .10);
}

.landing-admin-form {
    background: #f8fafc;
    border: 1px solid #d5e0eb;
    border-radius: 8px;
    padding: 18px;
}

.landing-admin-form .form-label {
    color: #334155;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.landing-admin-form .form-control,
.landing-admin-form .form-select {
    min-height: 46px;
    border: 1.5px solid #aebdce;
    border-radius: 7px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, .04);
}

.landing-admin-form .form-control:focus,
.landing-admin-form .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 .2rem rgba(31, 138, 138, .16);
}

.host-logo-admin-list {
    align-items: center;
    background: #eef6f5;
    border: 1px solid #b8d7d4;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.host-logo-admin-list img {
    background: #fff;
    border: 1px solid #d7e2ed;
    border-radius: 7px;
    height: 46px;
    object-fit: contain;
    padding: 5px;
    width: 64px;
}

.cohost-admin-list {
    background: #eef6f5;
    border: 1px solid #b8d7d4;
    border-radius: 8px;
    display: grid;
    gap: 9px;
    overflow: hidden;
    padding: 10px;
}

.host-admin-field .form-label,
.cohost-admin-list .form-label {
    font-size: .86rem;
    margin-bottom: 5px;
}

.host-admin-field .form-control-sm,
.cohost-admin-row .form-control-sm {
    font-size: .86rem;
    min-height: 36px;
}

.host-current-path {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cohost-admin-row {
    align-items: center;
    background: #fff;
    border: 1px solid #d7e2ed;
    border-radius: 7px;
    display: grid;
    gap: 8px;
    grid-template-columns: 64px minmax(190px, 1fr) minmax(150px, .72fr) 84px;
    max-width: 100%;
    padding: 8px;
}

.cohost-admin-row-new {
    background: #fbf7ee;
    border-color: #ead7a5;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr) 220px 96px;
    max-width: 100%;
    width: 100%;
}

.cohost-admin-row-new > * {
    min-width: 0;
}

.cohost-admin-row-new input[type="file"] {
    font-size: .78rem;
    max-width: 220px;
    min-width: 0;
    width: 220px;
}

.cohost-admin-logo {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #d7e2ed;
    border-radius: 7px;
    color: #64748b;
    display: flex;
    font-size: .7rem;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.cohost-admin-logo img {
    height: 100%;
    object-fit: contain;
    padding: 5px;
    width: 100%;
}

.cohost-remove-check {
    align-items: center;
    display: inline-flex;
    font-size: .82rem;
    gap: 5px;
    justify-content: center;
    margin-bottom: 0;
    white-space: nowrap;
}

.cohost-admin-row .btn {
    font-size: .78rem;
    min-height: 36px;
    padding-left: .6rem;
    padding-right: .6rem;
}

.cohost-admin-row-new .btn {
    width: 96px;
}

.cohost-admin-row-new .form-control-sm {
    font-size: .82rem;
}

.cohost-admin-footer {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    max-width: 820px;
    padding-top: 8px;
}

.cohost-admin-footer .btn {
    min-width: 156px;
}

.schedule-session-summary {
    background: #f8fbfd;
    border: 1px solid #cbdceb;
    border-radius: 8px;
    padding: 14px;
}

.schedule-session-list th {
    background: #eaf0f6;
    color: #304056;
    font-size: .8rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.schedule-session-list td {
    border-color: #d8e2ec;
    font-size: .92rem;
}

.text-teal {
    color: #0f766e;
}

.schedule-session-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.schedule-session-card {
    background: #fff;
    border: 1px solid #d7e2ed;
    border-left: 5px solid var(--teal);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    display: grid;
    gap: 6px;
    padding: 12px 14px;
}

.schedule-session-date {
    color: #4f6f89;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.schedule-session-title {
    color: var(--navy);
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.25;
}

.schedule-session-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule-session-meta span:first-child {
    color: #0f766e;
    font-weight: 800;
}

.schedule-session-select {
    font-size: .86rem;
}

.schedule-create-box {
    background: linear-gradient(135deg, #eef4fb 0%, #f8fbfd 100%);
    border: 1px solid #9bb9d8;
    border-left: 5px solid #3f6f9f;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .05);
    padding: 16px 18px;
}

.schedule-create-box .form-label {
    font-size: .9rem;
    font-weight: 650;
}

.schedule-paper-box {
    background: linear-gradient(135deg, #eef6f5 0%, #f6f9fc 100%);
    border: 1px solid #8ec3bd;
    border-left: 5px solid var(--teal);
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .05);
    margin-top: 18px;
    padding: 16px 18px;
}

.schedule-add-grid {
    display: grid;
    gap: 9px;
    grid-template-columns: minmax(210px, 1.65fr) minmax(180px, 1.3fr) minmax(64px, .42fr) minmax(130px, .78fr) minmax(130px, .78fr);
}

.schedule-paper-grid {
    grid-template-columns: minmax(220px, 1.18fr) minmax(180px, .96fr) minmax(64px, .3fr) minmax(112px, .52fr) minmax(112px, .52fr);
}

.schedule-paper-grid .schedule-field-session,
.schedule-paper-grid .schedule-field-abstract {
    min-width: 0;
}

.schedule-paper-grid .schedule-field-time .form-control {
    max-width: none;
}

.schedule-field {
    min-width: 0;
}

.schedule-field .form-label {
    font-size: .86rem;
    font-weight: 650;
    margin-bottom: 5px;
}

.schedule-field .form-control,
.schedule-field .form-select {
    font-size: .86rem;
    min-width: 0;
}

.schedule-field-order .form-control {
    text-align: center;
}

.schedule-field-time .form-control {
    min-width: 0;
}

.schedule-add-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    grid-column: 1 / -1;
}

.schedule-field-presenter {
    grid-column: 1 / 3;
}

.schedule-field-title {
    grid-column: 3 / -1;
}

.financial-summary-panel {
    background: linear-gradient(135deg, #eef6f5 0%, #fbf7ee 100%);
    border: 1px solid #b7d7d1;
    border-left: 5px solid var(--teal);
    border-radius: 8px;
    padding: 16px;
}

.financial-summary-card {
    background: #fff;
    border: 1px solid #d6e2ed;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .05);
    height: 100%;
    padding: 14px;
}

.financial-summary-amount {
    color: #0f766e;
    font-size: 1.55rem;
    font-weight: 850;
    line-height: 1.1;
    margin: 6px 0;
}

.financial-summary-breakdown {
    display: grid;
    gap: 3px;
    margin-top: 10px;
    color: #526173;
    font-size: .82rem;
}

.financial-invoice-table th {
    background: rgba(255,255,255,.72);
    color: #34445a;
    font-size: .78rem;
    text-transform: uppercase;
}

.schedule-featured-box {
    background: linear-gradient(135deg, #fbf7ee 0%, #eef6f5 100%);
    border: 1px solid #d8c08a;
    border-radius: 8px;
    padding: 14px;
}

.schedule-inline-notice {
    border-width: 1.5px;
    font-weight: 700;
}

.schedule-current-rundown {
    background: #f8fbfd;
    border: 1px solid #cbdceb;
    border-radius: 8px;
    padding: 14px;
}

.schedule-current-rundown .table {
    font-size: .82rem;
    line-height: 1.3;
}

.schedule-current-rundown .table th {
    font-size: .72rem;
    padding: .55rem .45rem;
    white-space: normal;
}

.schedule-current-rundown .table td {
    padding: .55rem .45rem;
    vertical-align: top;
}

.schedule-current-rundown .badge {
    font-size: .68rem;
    white-space: normal;
}

.schedule-current-rundown td:nth-child(1) {
    width: 74px;
    min-width: 74px;
}

.schedule-current-rundown td:nth-child(2) {
    min-width: 120px;
}

.schedule-current-rundown td:nth-child(3),
.schedule-current-rundown td:nth-child(4) {
    width: 88px;
    min-width: 88px;
}

.schedule-current-rundown td:nth-child(5),
.schedule-current-rundown td:nth-child(6) {
    min-width: 110px;
}

.schedule-current-rundown td:nth-child(7) {
    width: 52px;
    min-width: 52px;
    text-align: center;
}

.schedule-current-rundown td:nth-child(8) {
    width: 82px;
    min-width: 82px;
}

.schedule-current-rundown td:nth-child(9),
.schedule-current-rundown td:nth-child(10) {
    min-width: 130px;
}

.schedule-actions-cell {
    min-width: 190px;
    vertical-align: top;
}

.schedule-edit-details summary {
    list-style: none;
    width: 100%;
}

.schedule-edit-details summary::-webkit-details-marker {
    display: none;
}

.schedule-inline-edit {
    background: #fff;
    border: 1px solid #b7c9dc;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
    display: grid;
    gap: 7px;
    margin-top: 8px;
    min-width: 280px;
    padding: 10px;
}

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

.schedule-time-input {
    font-size: .86rem;
    font-variant-numeric: tabular-nums;
    min-width: 0;
}

#admin-schedule input[type="time"] {
    min-height: 38px;
    padding-left: 10px;
    padding-right: 8px;
}

.editor-shell {
    background: #fff;
    border: 1.5px solid #9fb3c8;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.rich-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 9px;
    background: #eef3f8;
    border-bottom: 1.5px solid #9fb3c8;
}

.rich-toolbar .editor-select {
    flex: 0 0 auto;
    display: inline-block;
    width: 170px !important;
    max-width: 170px;
    height: 34px;
    min-height: 34px;
    padding: 4px 28px 4px 10px;
    border: 1px solid #8ea6bd;
    border-radius: 6px;
    background-color: #fff;
    color: var(--ink);
    font-size: .9rem;
}

.rich-toolbar .editor-select-sm {
    width: 118px !important;
    max-width: 118px;
}

.rich-toolbar .editor-btn {
    flex: 0 0 auto;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #8ea6bd;
    border-radius: 6px;
    background: #fff;
    color: #26364d;
    font-size: .9rem;
}

.rich-toolbar .editor-btn:hover {
    background: #e8f3ff;
    border-color: #4e8fbd;
}

.rich-toolbar .editor-btn-text {
    min-width: 112px;
}

.toolbar-divider {
    width: 1px;
    height: 26px;
    background: #b8c7d8;
    margin: 0 3px;
}

.rich-editor {
    min-height: 190px;
    padding: 18px 20px;
    background: #fff;
    border: 0;
}

.rich-editor:focus {
    outline: 3px solid rgba(31, 138, 138, .18);
    outline-offset: -3px;
}

.rich-content ul,
.rich-content ol {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.document-page {
    max-width: 860px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #ddd;
    padding: 64px;
    min-height: 1000px;
}

.document-brand-header {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 78px;
    align-items: center;
    gap: 18px;
    margin-bottom: 42px;
    padding: 22px 42px;
    background: var(--navy);
    color: #fff;
}

.document-brand-header img {
    background: transparent;
    border: 0;
    object-fit: contain;
    padding: 0;
}

.document-brand-main-logo {
    width: 220px;
    height: auto;
    justify-self: start;
    margin-left: -34px;
    max-height: 96px;
    max-width: none;
}

.document-brand-copy {
    min-width: 0;
}

.document-brand-ipi-logo {
    justify-self: end;
    width: auto;
    max-width: 74px;
    height: 74px;
}

.document-brand-name {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
}

.document-brand-title {
    color: rgba(255,255,255,.78);
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.document-brand-theme {
    margin-top: 8px;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
    line-height: 1.35;
}

.signature-line {
    width: 220px;
    border-bottom: 1px solid #111;
    margin-top: 72px;
}

.document-signature-block {
    margin: 80px auto 0;
    max-width: 300px;
    text-align: center;
}

.document-number {
    color: #475569;
    font-size: .95rem;
}

.signature-image {
    display: block;
    height: 92px;
    margin: 4px auto 2px;
    max-width: 240px;
    object-fit: contain;
    width: auto;
}

.document-verification-block {
    align-items: center;
    border: 1px solid #d5e1ec;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    margin: 48px auto 0;
    max-width: 520px;
    padding: 12px 16px;
}

.document-verification-block img {
    height: 86px;
    width: 86px;
}

.document-verification-block strong,
.document-verification-block span,
.document-verification-block small {
    display: block;
}

.document-verification-block small {
    color: #64748b;
    word-break: break-all;
}

.footer-band {
    background: #101827;
    color: #cbd5e1;
}

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

.committee-public-card {
    border-left: 5px solid #0f766e;
    background: linear-gradient(180deg, #ffffff, #f7fbfb);
}

.committee-public-card h3 {
    color: #12213a;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
}

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

.committee-public-item {
    border-top: 1px solid #dbe6ef;
    padding-top: 10px;
}

.committee-public-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.committee-public-item strong,
.committee-public-item span,
.committee-public-item small {
    display: block;
}

.committee-public-item strong {
    color: #0f766e;
    font-size: .82rem;
    text-transform: uppercase;
}

.committee-public-item span {
    color: #12213a;
    font-weight: 800;
}

.committee-member-rich ul,
.committee-member-rich ol,
.committee-affiliation-rich ul,
.committee-affiliation-rich ol {
    margin: 4px 0 0 18px;
    padding: 0;
}

.committee-member-rich p,
.committee-affiliation-rich p {
    margin-bottom: 4px;
}

.committee-member-rich li,
.committee-affiliation-rich li {
    margin-bottom: 3px;
}

.committee-public-item small {
    color: #64748b;
    margin-top: 2px;
}

.committee-table-wrap {
    overflow-x: auto;
}

.committee-grid {
    display: grid;
    grid-template-columns: minmax(150px, .9fr) minmax(150px, .9fr) minmax(230px, 1.3fr) minmax(210px, 1.1fr) 76px 92px 88px;
    gap: 8px;
    min-width: 1120px;
}

.committee-grid-head {
    background: #eaf1f7;
    color: #344256;
    font-size: .78rem;
    font-weight: 800;
    padding: 11px 12px;
    text-transform: uppercase;
}

.committee-grid-row {
    align-items: center;
    border-bottom: 1px solid #dbe6ef;
    padding: 10px 12px;
}

.committee-new-row {
    background: #f7fbfb;
    border: 1px solid #bcd7d7;
    border-radius: 8px;
    margin-top: 10px;
}

.committee-check {
    align-items: center;
    display: flex;
    font-size: .88rem;
    gap: 6px;
    white-space: nowrap;
}

.committee-delete {
    color: #dc3545;
}

.committee-rich-mini {
    background: #fff;
    border: 1px solid #cbd8e5;
    border-radius: 7px;
    overflow: hidden;
}

.mini-rich-toolbar {
    align-items: center;
    background: #eef4f8;
    border-bottom: 1px solid #cbd8e5;
    display: flex;
    gap: 4px;
    padding: 5px;
}

.mini-rich-toolbar .editor-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #9fb3c8;
    border-radius: 5px;
    color: #334155;
    display: inline-flex;
    font-size: .78rem;
    height: 26px;
    justify-content: center;
    min-width: 26px;
    padding: 0 7px;
}

.mini-rich-toolbar .editor-btn-text {
    min-width: 62px;
}

.mini-rich-editor {
    border: 0;
    font-size: .9rem;
    line-height: 1.35;
    min-height: 78px;
    outline: 0;
    padding: 9px 10px;
}

.mini-rich-editor:empty::before {
    color: #94a3b8;
    content: attr(data-placeholder);
}

.payment-info-panel {
    background: #f6fbfb;
    border: 1px solid #b7d7d9;
    border-left: 5px solid #0f766e;
    border-radius: 8px;
    padding: 18px;
}

.payment-info-panel h3 {
    color: #12213a;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.payment-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.payment-bank-grid div {
    background: #fff;
    border: 1px solid #d5e4ec;
    border-radius: 7px;
    padding: 10px 12px;
}

.payment-bank-grid span {
    color: #64748b;
    display: block;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-bank-grid strong {
    color: #12213a;
    display: block;
    font-size: .98rem;
    margin-top: 2px;
    word-break: break-word;
}

.payment-instruction-text {
    color: #44546a;
    font-size: .95rem;
}

.dashboard-payment-info {
    background: #fffaf0;
    border-color: #e0b24f;
    border-left-color: #d8a236;
}

@media (max-width: 991px) {
    .dashboard-shell { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .hero { min-height: 500px; }
    .review-card-header,
    .review-comment-grid,
    .review-submit-row {
        grid-template-columns: 1fr;
    }
    .review-file-button,
    .review-submit-button {
        width: 100%;
    }
    .review-score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .venue-panel {
        grid-template-columns: 1fr;
    }
    .admin-bulk-row-dates,
    .admin-bulk-row-speakers,
    .speaker-add-form,
    .fee-bulk-row,
    .schedule-add-grid {
        grid-template-columns: 1fr;
    }
    .schedule-field-presenter,
    .schedule-field-title {
        grid-column: auto;
    }
    .speaker-identity-grid {
        grid-template-columns: 1fr;
    }
    .speaker-meta-row {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .cohost-admin-row {
        grid-template-columns: 64px minmax(0, 1fr);
    }
    .cohost-admin-row-new {
        grid-template-columns: 1fr;
    }
    .cohost-admin-row input[type="file"],
    .cohost-admin-row .cohost-remove-check,
    .cohost-admin-row .btn {
        grid-column: 2;
    }
    .cohost-admin-row-new input[type="file"],
    .cohost-admin-row-new .btn {
        grid-column: auto;
    }
    .cohost-admin-footer {
        align-items: stretch;
        flex-direction: column;
        max-width: none;
    }
    .contact-strip {
        grid-template-columns: 1fr;
    }
    .contact-strip-items {
        grid-template-columns: 1fr;
    }
    .countdown-panel {
        grid-template-columns: 1fr;
    }
    .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .publication-outlet-grid {
        grid-template-columns: 1fr;
    }
    .committee-public-grid,
    .payment-bank-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    nav, .footer-band, .no-print { display: none !important; }
    @page { size: A4; margin: 11mm; }
    html, body {
        background: #fff;
        font-size: 13px;
    }
    .document-page {
        border: 0;
        margin: 0;
        max-width: none;
        min-height: 0;
        padding: 15mm 0 0;
    }
    .document-brand-header {
        -webkit-print-color-adjust: exact;
        grid-template-columns: 178px minmax(0, 1fr) 70px;
        gap: 16px;
        margin-bottom: 30px;
        padding: 18px 34px;
        print-color-adjust: exact;
    }
    .document-brand-main-logo {
        width: 202px;
        height: auto;
        margin-left: -30px;
        max-height: 84px;
        max-width: none;
    }
    .document-brand-ipi-logo {
        height: 68px;
        max-width: 68px;
    }
    .document-brand-title {
        font-size: .92rem;
        line-height: 1.25;
    }
    .document-brand-theme {
        font-size: .86rem;
        margin-top: 6px;
    }
    .document-page h1 {
        font-size: 2.55rem;
        margin-bottom: 0;
    }
    .document-page .mb-5 {
        margin-bottom: 1.8rem !important;
    }
    .document-number {
        font-size: .86rem;
        margin-bottom: 1.3rem !important;
    }
    .document-page p {
        margin-bottom: .7rem;
    }
    .document-page .lead {
        font-size: 1.05rem;
    }
    .document-page .display-6 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem !important;
        margin-top: 1.25rem !important;
    }
    .document-signature-block {
        margin-top: 58px;
        max-width: 280px;
    }
    .signature-image {
        height: 82px;
        margin: 2px auto 0;
        max-width: 220px;
    }
    .document-verification-block {
        break-inside: avoid;
        gap: 12px;
        margin-top: 32px;
        max-width: 500px;
        padding: 10px 14px;
        page-break-inside: avoid;
    }
    .document-verification-block img {
        height: 76px;
        width: 76px;
    }
    .document-verification-block strong {
        font-size: .95rem;
    }
    .document-verification-block span,
    .document-verification-block small {
        font-size: .82rem;
        line-height: 1.25;
    }
}

/* Presenter roster, role preview, and clearer workflow actions */
.additional-presenter-panel {
    background: #f4f9f8;
    border: 1px solid #87c8c1;
    border-left: 5px solid #168b83;
    border-radius: 8px;
    padding: 18px;
}
.current-progress-status {
    align-items: center;
    background: #eaf5f3;
    border: 1px solid #9ccfc9;
    border-left: 5px solid #168b83;
    border-radius: 6px;
    display: flex;
    gap: 12px;
    padding: 10px 14px;
}
.current-progress-status span {
    color: #5a6b7c;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}
.current-progress-status strong {
    color: #0d655f;
}
.additional-presenter-table {
    font-size: .86rem;
}
.additional-presenter-table thead th {
    background: #e5f1f0;
    color: #263a4f;
    white-space: nowrap;
}
.additional-presenter-table .primary-presenter-row {
    background: #fff;
}
.additional-presenter-add {
    border: 1px solid #d6a744;
    border-radius: 6px;
    background: #fffaf0;
    padding: 10px 12px;
}
.additional-presenter-add > summary {
    color: #17304f;
    cursor: pointer;
    font-weight: 700;
}
.additional-presenter-form {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(210px, 1.5fr) minmax(150px, 1fr) minmax(150px, 1fr);
}
.coauthor-quick-list {
    background: #fff;
    border: 1px solid #c9dad8;
    border-radius: 6px;
    padding: 10px;
}
.coauthor-quick-item {
    align-items: center;
    border-top: 1px solid #e1e9e8;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 9px 2px;
}
.coauthor-quick-item:first-of-type {
    border-top: 0;
}
.coauthor-quick-item span {
    color: #647286;
    display: block;
    font-size: .8rem;
}
.coauthor-quick-item > div {
    flex: 1 1 260px;
    min-width: 0;
}
.coauthor-quick-item .form-select {
    flex: 0 0 130px;
    width: 130px;
}
.additional-presenter-form .btn {
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
}
.admin-additional-presenters-row > td {
    background: #f4f9f8;
    padding: 14px 20px !important;
}
.admin-additional-presenters {
    border-left: 4px solid #168b83;
    padding-left: 14px;
}
.role-preview-tools,
.role-preview-banner {
    align-items: center;
    background: #eaf4ff;
    border: 1px solid #8dbce9;
    border-radius: 7px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 12px 16px;
}
.role-preview-tools span {
    color: #334d69;
    font-weight: 700;
    margin-right: auto;
}
.role-preview-banner {
    background: #fff3cd;
    border-color: #e4bb42;
    justify-content: space-between;
}
.role-preview-content {
    opacity: .92;
}
.document-number-label {
    color: #0b6f68;
    font-size: .85rem;
    font-weight: 700;
}
.contact-actions {
    display: flex;
    gap: 8px;
    grid-column: 1 / -1;
    justify-content: flex-end;
    min-width: 0;
}
.contact-actions .btn {
    align-items: center;
    display: inline-flex;
    gap: 7px;
    white-space: nowrap;
}
.contact-strip a:not(.btn) {
    color: #0b6f68;
    font-weight: 600;
}
[data-add-author] {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    font-weight: 700;
}
[data-add-author]:hover {
    background: #0b5ed7;
    border-color: #0a58ca;
    color: #fff;
}
.btn-change-pathway {
    background: #fff3cd;
    border: 2px solid #dc3545;
    color: #a51d2a;
    font-weight: 700;
}
.btn-change-pathway:hover {
    background: #dc3545;
    color: #fff;
}
@media (max-width: 991.98px) {
    .additional-presenter-form {
        grid-template-columns: 1fr;
    }
    .author-row {
        grid-template-columns: 1fr;
    }
    .author-presenter-settings,
    .author-row .btn {
        grid-column: 1;
        grid-row: auto;
    }
    .author-presenter-settings {
        grid-template-columns: 1fr;
    }
    .role-preview-tools,
    .role-preview-banner,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
