html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 0;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

header .ba-navgrid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem 0.35rem;
    max-width: 100%;
}

header.ba-nav-balance-last-two .ba-navgrid .ba-navlink {
    order: 1;
}

header.ba-nav-balance-last-two .ba-navgrid .ba-navlink:nth-last-child(-n + 2) {
    order: 2;
}

header.ba-nav-compact .ba-navgrid {
    gap: 0.2rem 0.25rem;
}

header.ba-nav-compact .ba-navlink {
    min-height: 27px;
    padding: 0.16rem 0.42rem;
    font-size: 0.76rem;
}

header.ba-nav-compact .ba-navlink-toggle {
    min-height: 27px;
    padding: 0.16rem 0.34rem;
}

header .ba-navlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.2rem 0.54rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    line-height: 1.1;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

header .ba-navlink:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

header .ba-nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

header .ba-nav-item.has-children {
    gap: 0;
}

header .ba-navlink-icon {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

header .ba-navlink-toggle {
    min-height: 30px;
    min-width: 0;
    gap: 0.35rem;
    padding: 0.2rem 0.54rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

header .ba-navlink-toggle:hover,
header .ba-navlink-toggle:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

header .ba-navlink-toggle.dropdown-toggle::after {
    display: none;
}

header .ba-nav-item.has-children.show > .ba-navlink-toggle {
    border-color: rgba(255, 215, 0, 0.46);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.16);
}

header .ba-nav-item.has-children.show > .ba-navlink-toggle .ba-navlink-icon {
    transform: rotate(180deg);
}

header .ba-nav-dropdown.dropdown-menu {
    top: calc(100% + 0.45rem);
    left: 0;
    min-width: 260px;
    max-width: min(360px, calc(100vw - 2rem));
    max-height: min(60vh, 420px);
    z-index: 100;
    margin: 0;
    padding: 0.46rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #8b0000 0%, #5d0d0d 52%, #4b0082 100%);
    box-shadow: 0 14px 34px rgba(8, 15, 30, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    position: absolute;
    overflow-y: auto;
}

header .ba-nav-dropdown.dropdown-menu[data-bs-popper] {
    top: calc(100% + 0.45rem);
    left: 0;
    margin-top: 0;
}

header .ba-nav-dropdown.dropdown-menu::before {
    display: none;
}

header .ba-nav-dropdown.dropdown-menu::-webkit-scrollbar {
    width: 7px;
}

header .ba-nav-dropdown.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.24);
    border-radius: 999px;
}

header .ba-nav-dropdown.dropdown-menu.show {
    display: block;
    animation: ba-nav-dropdown-in 0.14s ease-out;
}

@keyframes ba-nav-dropdown-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header .ba-nav-dropdown .dropdown-item + .dropdown-item {
    margin-top: 0.28rem;
}

header .ba-nav-dropdown-link {
    display: block;
    color: #f3f4f6;
    text-decoration: none;
    background: linear-gradient(135deg, #770000 0%, #5d0d0d 52%, #3f006a 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 0.58rem 0.74rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 2px 6px rgba(8, 15, 30, 0.24);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

header .ba-nav-dropdown-link.dropdown-item {
    color: #f3f4f6;
    background: linear-gradient(135deg, #770000 0%, #5d0d0d 52%, #3f006a 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 0.58rem 0.74rem;
}

header .ba-nav-dropdown-link.dropdown-item:active,
header .ba-nav-dropdown-link.dropdown-item.active {
    color: #fff;
    background: linear-gradient(135deg, #980000 0%, #5d0d0d 52%, #5d1698 100%);
    border-color: rgba(255, 215, 0, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

header .ba-nav-dropdown-link:hover,
header .ba-nav-dropdown-link:focus-visible {
    background: linear-gradient(135deg, #8b0000 0%, #5d0d0d 52%, #4b0082 100%);
    border-color: rgba(255, 215, 0, 0.48);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 14px rgba(8, 15, 30, 0.3);
}

header .ba-nav-dropdown-link:focus-visible {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 0 2px rgba(255, 215, 0, 0.38), 0 6px 14px rgba(8, 15, 30, 0.3);
}

@media (min-width: 1024px) {
    header .ba-navgrid {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
        align-content: center;
    }
}

@media (min-width: 992px) {
    header .ba-mobile-toggle {
        display: none !important;
    }

    header .ba-mobile-menu {
        display: none;
    }

    header.ba-force-hamburger .ba-mobile-toggle {
        display: inline-flex !important;
    }

    header.ba-force-hamburger .ba-mobile-menu {
        display: block;
    }

    header.ba-force-hamburger .ba-desktop-nav {
        display: none !important;
    }

    header.ba-force-hamburger .ba-desktop-nav-shell {
        justify-content: flex-end;
    }
}

.logo-marquee-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-marquee {
    --logo-gap: 1.25rem;
    overflow: hidden;
    position: relative;
    flex: 1 1 auto;
    cursor: grab;
    touch-action: pan-y;
    contain: paint;
}

.logo-marquee.is-dragging {
    cursor: grabbing;
}

.logo-marquee .marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 0.25rem 0;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.logo-marquee.is-running .marquee-track {
    will-change: transform;
}

.logo-marquee .marquee-segment {
    display: flex;
    align-items: center;
    gap: var(--logo-gap);
}

.logo-marquee .marquee-segment + .marquee-segment {
    margin-left: var(--logo-gap);
}

.logo-marquee .logo-item {
    flex: 0 0 auto;
}

.logo-marquee-btn {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.logo-marquee-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.logo-marquee-btn:active {
    transform: translateY(0);
}

.logo-marquee-btn .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
}

.form-input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background-color: rgba(255, 255, 255, 0.98);
    color: #111827;
    padding: 0.55rem 0.75rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input::placeholder {
    color: #6b7280;
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.admin-filter-compact {
    max-width: 170px;
}

.registration-attendance-col {
    width: 150px;
    max-width: 150px;
    white-space: nowrap;
}

.registration-attendance-select {
    width: 100%;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .admin-filter-compact {
        max-width: 100%;
    }
}

.ba-mobile-nav-group {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.2), rgba(42, 17, 56, 0.48) 45%, rgba(28, 23, 62, 0.58));
    box-shadow: 0 8px 18px rgba(6, 4, 16, 0.22);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ba-mobile-nav-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    font-weight: 600;
    color: #f8fafc;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.ba-mobile-nav-summary::-webkit-details-marker {
    display: none;
}

.ba-mobile-nav-summary .material-symbols-outlined {
    transition: transform 0.2s ease, color 0.2s ease;
}

.ba-mobile-nav-group[open] .ba-mobile-nav-summary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ba-mobile-nav-group[open] .ba-mobile-nav-summary .material-symbols-outlined {
    transform: rotate(180deg);
    color: #ffd700;
}

.ba-mobile-nav-children {
    border-top: 1px solid rgba(255, 215, 0, 0.24);
    padding: 0.55rem 0.6rem 0.62rem;
    display: grid;
    gap: 0.35rem;
    background: rgba(9, 7, 20, 0.22);
}

.ba-mobile-nav-children > a {
    display: block;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.38rem 0.5rem;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ba-mobile-nav-children > a:first-child {
    font-weight: 700;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.ba-mobile-nav-children > a:hover,
.ba-mobile-nav-children > a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.participants-search-input {
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.participants-search-input::placeholder {
    color: #ffffff9c;
    opacity: 1;
}

.ba-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(2px);
    padding: 1.25rem;
}

.ba-lightbox[data-open="true"] {
    display: flex;
}

.ba-lightbox-dialog {
    width: min(1100px, 100%);
    max-height: 100%;
    background: rgba(9, 9, 11, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.ba-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ba-lightbox-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.ba-lightbox-close {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 9999px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ba-lightbox-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    max-height: calc(100vh - 220px);
    overflow: hidden;
}

.ba-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 240px);
    object-fit: contain;
}

.ba-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ba-lightbox-nav[disabled] {
    opacity: 0.4;
    pointer-events: none;
}

.ba-lightbox-nav-prev {
    left: 14px;
}

.ba-lightbox-nav-next {
    right: 14px;
}

.ba-lightbox-caption {
    padding: 0.75rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.84);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ba-lightbox-trigger {
    border: 0;
    background: transparent;
    width: 100%;
    padding: 0;
    text-align: inherit;
    cursor: zoom-in;
}

.ba-carousel-control-soft {
    opacity: 0.5;
}

.ba-carousel-control-soft:hover,
.ba-carousel-control-soft:focus-visible {
    opacity: 0.75;
}

.ba-main-hero-slot {
    height: 460px;
    max-height: 460px;
}

@media (min-width: 1024px) {
    .ba-main-top-slot {
        height: 660px !important;
        max-height: 660px !important;
    }

    .ba-main-hero-slot {
        height: 660px;
        max-height: 660px;
    }
}

#heroCarousel {
    height: 100%;
    max-height: 100%;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
    max-height: 100%;
}

#heroCarousel .carousel-inner {
    overflow: hidden;
    contain: paint;
}

#heroCarousel .carousel-item {
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: auto;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 18%, rgba(152, 0, 0, 0.45) 0%, rgba(152, 0, 0, 0) 52%),
        radial-gradient(circle at 82% 82%, rgba(93, 22, 152, 0.35) 0%, rgba(93, 22, 152, 0) 48%),
        linear-gradient(135deg, #7a0000 0%, #5d0d0d 52%, #3f006a 100%);
}

#heroCarousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 5, 25, 0.08) 0%, rgba(8, 5, 25, 0.34) 100%);
    z-index: 0;
    pointer-events: none;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next,
#heroCarousel.carousel-fade .carousel-item-prev {
    will-change: opacity;
}

#heroCarousel .ba-main-hero-image {
    display: block;
    width: 100%;
    height: 100% !important;
    max-height: 100%;
    object-fit: fill;
    object-position: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

@media (min-width: 992px) {
    .logo-marquee-btn {
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 991.98px) {
    #heroCarousel .carousel-item {
        background: linear-gradient(135deg, #6f0202 0%, #4f1010 52%, #440a67 100%);
    }

    #heroCarousel .carousel-item::after {
        background: linear-gradient(180deg, rgba(8, 5, 25, 0.04) 0%, rgba(8, 5, 25, 0.24) 100%);
    }
}

@media (max-width: 640px) {
    .logo-marquee-wrap {
        gap: 0.5rem;
    }

    .logo-marquee-btn {
        width: 36px;
        height: 36px;
    }

    .logo-marquee-btn .material-symbols-outlined {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #heroCarousel.carousel-fade .carousel-item {
        transition-duration: 0.12s;
        transition-timing-function: linear;
    }

    #heroCarousel .carousel-item::after {
        background: linear-gradient(180deg, rgba(8, 5, 25, 0.03) 0%, rgba(8, 5, 25, 0.16) 100%);
    }

    .logo-marquee-btn {
        transition-duration: 0.12s;
    }

    .logo-marquee-btn:hover {
        transform: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.leading-tight {
    line-height: 0.8 !important;
}

p {
    margin-bottom: 3px !important;
}

.congress-card h3 {
    margin-bottom: 2px;
}

.admin-panel .table {
    margin-bottom: 0;
}

.admin-panel .table > tbody > tr:nth-of-type(odd) > * {
    background-color: #f8fafc !important;
    color: #111827 !important;
    border-color: #e2e8f0;
}

.admin-panel .table > tbody > tr:nth-of-type(even) > * {
    background-color: #eef2f7 !important;
    color: #111827 !important;
    border-color: #dbe3ee;
}

.admin-panel .table > tbody > tr > * {
    vertical-align: middle;
    transition: background-color 0.18s ease;
}

.admin-panel .table > tbody > tr:nth-of-type(odd) .text-muted {
    color: #64748b !important;
}

.admin-panel .table > tbody > tr:nth-of-type(even) .text-muted {
    color: #64748b !important;
}

.admin-panel .table > tbody > tr .form-control,
.admin-panel .table > tbody > tr .form-select,
.admin-panel .table > tbody > tr textarea {
    border-radius: 10px;
    font-size: 0.9rem;
}

.admin-panel .table > tbody > tr:nth-of-type(odd) .form-control,
.admin-panel .table > tbody > tr:nth-of-type(odd) .form-select,
.admin-panel .table > tbody > tr:nth-of-type(odd) textarea {
    background-color: #ffffff;
    color: #111827;
    border-color: #cbd5e1;
}

.admin-panel .table > tbody > tr:nth-of-type(even) .form-control,
.admin-panel .table > tbody > tr:nth-of-type(even) .form-select,
.admin-panel .table > tbody > tr:nth-of-type(even) textarea {
    background-color: #ffffff;
    color: #111827;
    border-color: #cbd5e1;
}

.admin-panel .table > tbody > tr .form-control:focus,
.admin-panel .table > tbody > tr .form-select:focus,
.admin-panel .table > tbody > tr textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.18rem rgba(59, 130, 246, 0.22);
}

.admin-panel .table > tbody > tr .form-check-input {
    border-color: #94a3b8;
}

.admin-panel .table > tbody > tr .form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.admin-panel .table > tbody > tr .form-check-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.18rem rgba(37, 99, 235, 0.25);
}

.admin-panel .table > tbody > tr .btn {
    border-radius: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
}

.nav-tree-toolbar .btn {
    min-width: 94px;
}

.nav-tree-parent-row > td {
    font-weight: 600;
}

.nav-tree-parent-row .nav-tree-toggle-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #334155;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.nav-tree-parent-row .nav-tree-toggle-btn:hover,
.nav-tree-parent-row .nav-tree-toggle-btn:focus-visible {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #0f172a;
}

.nav-tree-parent-row .nav-tree-toggle-icon {
    font-size: 18px;
    line-height: 1;
}

.nav-tree-child-row > td {
    background-color: #f9fbff !important;
}

.nav-tree-child-row > td:first-child {
    color: #64748b !important;
    font-size: 0.95rem;
}

.nav-parent-inline-select {
    min-width: 195px;
}

.nav-parent-inline-select:disabled {
    background-color: #f8fafc !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.admin-panel .table a[data-preview-url] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 52px;
    overflow: hidden;
    border-radius: 0.5rem;
}

.admin-panel .table a[data-preview-url] img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center;
    background-color: #f8fafc;
}

.admin-panel #adminLightbox .modal-dialog {
    max-width: min(96vw, 1400px);
}

.admin-panel #adminLightbox .modal-content {
    max-height: calc(100vh - 2rem);
}

.admin-panel #adminLightboxBody {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    max-height: calc(100vh - 8.5rem);
    overflow: hidden;
    padding: 0.75rem;
    background: #0b1220;
}

.admin-panel #adminLightboxBody .admin-lightbox-media {
    max-width: 100%;
    max-height: calc(100vh - 10rem);
    width: auto;
    height: auto;
    border: 0;
}

.admin-panel #adminLightboxBody .admin-lightbox-image,
.admin-panel #adminLightboxBody .admin-lightbox-video {
    object-fit: contain;
    border-radius: 0.75rem;
    background: #020617;
}

.admin-panel #adminLightboxBody .admin-lightbox-pdf {
    width: 100%;
    height: calc(100vh - 10rem);
    background: #fff;
}

@media (max-width: 992px) {
    .admin-panel #adminLightbox .modal-dialog {
        max-width: 96vw;
        margin: 0.75rem auto;
    }

    .admin-panel #adminLightboxBody {
        min-height: 40vh;
        max-height: calc(100vh - 7.5rem);
    }

    .admin-panel #adminLightboxBody .admin-lightbox-media {
        max-height: calc(100vh - 9rem);
    }
}
