@charset "utf-8";

/* ============================================================
   VRCL2 — CORE BRANDING
   ============================================================ */

:root {
    --vrcl-navy: #0A1A4F;
    --vrcl-black: #000000;
    --vrcl-gold: #D4A017;
    --vrcl-grey-dark: #222222;
    --vrcl-grey-mid: #666666;
    --vrcl-grey-light: #F5F5F2;
    --vrcl-white: #FFFFFF;

    --vrcl-radius: 6px;
    --vrcl-spacing: 1.2rem;
    --vrcl-spacing-lg: 1.6rem;
    --vrcl-spacing-sm: 0.6rem;

    --vrcl-font-main: "Segoe UI", Arial, sans-serif;
}

/* ============================================================
   GLOBAL RESET + FULL-WIDTH ROOT
   ============================================================ */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--vrcl-grey-light);
    color: var(--vrcl-grey-dark);
    font-family: var(--vrcl-font-main);
    line-height: 1.6;
}

#page-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* ============================================================
   UNIVERSAL FULL-WIDTH OUTER SECTIONS
   ============================================================ */

#header,
#vrcl-nav,
#footer {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}

/* ============================================================
   SAFE CONTAINER SYSTEM (Hybrid C)
   ============================================================ */

/* Desktop/iPad: boxed content */
.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Mobile: full-width content */
@media (max-width: 600px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 0.8rem !important;
        padding-right: 0.8rem !important;
    }
}

/* ============================================================
   HEADER FIX PATCH — VRCL NAVY + SAFE LOGO SCALING
   ============================================================ */

/* Force header background to show */
#header {
    background: #0A1A4F !important;
    width: 100% !important;
    display: block;
}

/* Ensure inner container never overrides background */
.header-container {
    background: transparent !important;
}

/* Safe, responsive logo sizing */
.header-logo img {
    max-width: 100%;
    height: auto;
    max-height: 140px;   /* desktop cap */
}

/* Mobile logo size */
@media (max-width: 600px) {
    .header-logo img {
        max-height: 90px;
    }
}


/* ============================================================
   VRCL2 NAVIGATION — CLEAN + RESPONSIVE
   ============================================================ */

#vrcl-nav {
    background: var(--vrcl-black);
    padding: 0.5rem 0;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger button */
#nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--vrcl-gold);
    font-size: 2rem;
    cursor: pointer;
}

/* Desktop menu */
#nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

#nav-menu li a {
    color: var(--vrcl-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

#nav-menu li a:hover,
#nav-menu li a.active {
    color: var(--vrcl-gold);
}

/* Mobile nav */
@media (max-width: 1024px) {
    #nav-toggle {
        display: block;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 220px;
        background: var(--vrcl-black);
        padding: 0.5rem 0;
        flex-direction: column;
        gap: 0.2rem;
        border-radius: 0 0 var(--vrcl-radius) var(--vrcl-radius);
        z-index: 999;
    }

    #nav-menu.open {
        display: flex;
    }

    #nav-menu li {
        padding: 0.5rem 1rem;
        width: 100%;
    }

    #nav-menu li a {
        width: 100%;
        display: block;
        text-align: left;
    }
}

/* ============================================================
   HEADER + NAV ALIGNMENT FIX (Corrected)
   ============================================================ */

/* Header alignment */
.header-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
}

/* Keep header text white */
.header-text {
    color: #ffffff !important;
}

/* Nav alignment */
.nav-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important; /* FIXED */
}

/* Menu spacing inside the 900px box */
#nav-menu {
    margin-left: 1.5rem !important; /* FIXED */
}

/* Mobile fixes */
@media (max-width: 600px) {
    .header-container,
    .nav-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }

    #header {
        padding-bottom: 0.3rem !important;
    }

    #vrcl-nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}


/* ============================================================
   MAIN CONTENT WRAPPER
   ============================================================ */

#main {
    padding: var(--vrcl-spacing-lg) 0;
}

/* ============================================================
   VRCL BLOCK (Desktop + Mobile + Tightened Heading Spacing)
   ============================================================ */

.vrcl-block {
    background: var(--vrcl-white);
    padding: var(--vrcl-spacing-lg);
    border-radius: var(--vrcl-radius);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);

    /* NEW: tighten top spacing on desktop */
    padding-top: 1rem !important;
}

/* Tighten heading spacing inside block */
.vrcl-block header h2 {
    margin-top: 0.2rem !important;
    margin-bottom: 0.6rem;
}

/* ============================================================
   MOBILE: prevent overflow + tighter spacing + full width
   ============================================================ */

@media (max-width: 600px) {

    /* Fix parent container pushing content right */
    #main .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* VRCL block mobile layout */
    .vrcl-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;

        padding: 0.8rem 1rem !important; /* balanced, no overflow */
        margin: 0 !important;
        border-radius: 0 !important;

        /* NEW: tighter top spacing on iPhone */
        padding-top: 0.6rem !important;
    }

    /* Heading spacing on mobile */
    .vrcl-block header h2 {
        margin-top: 0 !important;
        margin-bottom: 0.4rem !important;
    }
}

/* ============================================================
   YEAR SELECTOR + MESSAGE
   ============================================================ */

.vrcl-message {
    text-align: center;
    margin: 0.5rem 0 1.5rem 0;
    color: #444;
}

.vrcl-year-selector {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

@media (max-width: 600px) {
    .vrcl-year-selector {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   YEAR CONTENT AREA (Hybrid C)
   ============================================================ */

#yearContent {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

/* Mobile: full-width, no overflow, equal padding */
@media (max-width: 600px) {

    /* Fix parent container pushing content right */
    #main .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Fix yearContent itself */
    #yearContent {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;      /* equal left/right padding */
        border-radius: 0 !important;
        box-sizing: border-box !important;
    }
}

#yearContent img {
    max-width: 100%;
    height: auto;
}

#yearContent iframe {
    width: 100%;
    border: none;
}

/* ============================================================
   HEADER + NAV BOX WIDTH FIX (Hybrid C)
   ============================================================ */

/* Desktop/iPad: keep header + nav content inside 900px box */
.header-container,
.nav-container {
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Mobile: full-width header + nav content */
@media (max-width: 600px) {
    .header-container,
    .nav-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }
}

/* ============================================================
   TABLES
   ============================================================ */

.vrcl-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.vrcl-table th {
    background: var(--vrcl-navy);
    color: var(--vrcl-gold);
    padding: 0.6rem;
    text-align: left;
    font-weight: 600;
}

.vrcl-table td {
    padding: 0.6rem;
    border-bottom: 1px solid #ddd;
}

.vrcl-table tr:nth-child(even) {
    background: #f7f7f7;
}

.vrcl-table tr:hover {
    background: #eee;
}

.vrcl-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
}

.vrcl-table-scroll table {
    min-width: 650px;
}

/* ============================================================
   LIGHTBOX FIXES
   ============================================================ */

.lb-data .lb-caption {
    font-size: 1rem;
}

/* ============================================================
   PDF VIEWER (PC, iPhone, iPad)
   ============================================================ */

.pdf-wrapper {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
}

.vrcl-pdf-frame {
    width: 100%;
    height: 90vh;
    border: none;
    display: block;
}

#vrcl-pdf {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.mobile-only {
    display: none;
}

/* iPhone PDF */
@media (max-width: 767px) {
    .pdf-wrapper {
        height: 90vh;
    }

    embed.pdf-embed-iphone {
        width: 100vw !important;
        height: 90vh !important;
        margin-left: calc(50% - 50vw) !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        display: block !important;
    }
}

/* iPad PDF */
@media (min-width: 768px) and (max-width: 1100px) {
    .pdf-wrapper {
        height: auto !important;
        overflow: visible !important;
    }

    .pdf-embed-ipad {
        width: 100% !important;
        height: auto !important;
        min-height: 100vh !important;
        overflow: visible !important;
        display: block !important;
    }
}

/* ============================================================
   SAFE VRCL TAB CSS — Modern look without breaking jQuery UI
   ============================================================ */

/* Do NOT override .ui-widget, .ui-widget-content, .ui-widget-header */
/* jQuery UI 1.8.x depends on these for layout */

/* TAB WRAPPER */
#tabs {
    padding: 0;
    margin: 0;
}

/* TAB BAR */
#tabs .ui-tabs-nav {
    display: flex;
    gap: 0.4em;
    margin: 0 0 1em 0;
    padding: 0.4em 0;
    background: #ffffff;
    border-bottom: 2px solid #ccc;
    list-style: none;
}

/* TAB ITEMS */
#tabs .ui-tabs-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* INACTIVE TAB */
#tabs .ui-tabs-nav li a {
    display: block;
    padding: 0.55em 1.1em;
    font-size: 1rem;
    font-weight: 600;
    background: #e6e6e6;
    color: #333;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* HOVER */
#tabs .ui-tabs-nav li a:hover {
    background: #dcdcdc;
}

/* ACTIVE TAB */
#tabs .ui-tabs-nav li.ui-tabs-active > a,
#tabs .ui-tabs-nav li.ui-state-active > a {
    background: #ffffff;
    color: #000;
    font-weight: 700;
    border: 1px solid #ccc;
    border-bottom: 4px solid #0A1A4F;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    border-radius: 6px 6px 0 0;
}

/* CONTENT PANELS */
#tabs .ui-tabs-panel {
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 0 6px 6px 6px;
    padding: 1.4em;
    margin-top: -1px;
    line-height: 1.55;
    font-size: 1.05rem;
}

/* ⭐ CRITICAL: Restore jQuery UI panel visibility logic */
#tabs .ui-tabs-panel {
    display: block;
}
#tabs .ui-tabs-hide {
    display: none !important;
}

/* CHAMPION HEADING */
#tabs .championHeading {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
}

/* TIGHTEN H5 */
#tabs h5 {
    margin-top: 0;
    margin-bottom: 0.3em;
    line-height: 1.1;
    font-size: 1.05rem;
}
/* ============================================================
   VRCL LAYOUT FIX — ALIGN TABS WITH HEADER + YEAR SELECTOR
   ============================================================ */

/* Reduce padding inside tab content */
#tabs .ui-tabs-panel {
    padding: 0.8em 1.0em !important;
}

/* Remove extra padding from yearContent wrapper */
#yearContent {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-block;
    background: var(--vrcl-navy);
    color: var(--vrcl-gold);
    padding: 0.6rem 1.2rem;
    border-radius: var(--vrcl-radius);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.button:hover {
    background: var(--vrcl-gold);
    color: var(--vrcl-black);
}



/* ============================================================
   GALLERY OVERLAY
   ============================================================ */

.gallery-launcher {
    position: relative;
    display: block;
}

.tap-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 6px 0;
    font-size: 0.95rem;
    border-radius: 3px;
    width: 70%;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-launcher:hover .tap-overlay {
    opacity: 1;
}

.mobile-gallery-launch {
    display: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

#footer {
    background: var(--vrcl-black);
    color: #E0E0E0;
    padding: var(--vrcl-spacing) 0;
    text-align: center;
    margin-top: var(--vrcl-spacing-lg);
}

#footer a {
    color: var(--vrcl-gold);
    text-decoration: none;
}

#footer ul,
#footer li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================================================
   RESPONSIVE LAYOUT — FINAL MOBILE FIXES (CLEAN VERSION)
   ============================================================ */

@media (max-width: 600px) {

    /* Full-width tabs + panels WITHOUT forced padding */
    #tabs,
    #tabs > div {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        padding-left: 0 !important;   /* removed harmful padding */
        padding-right: 0 !important;  /* removed harmful padding */
    }

    /* Champion heading */
    #tabs .championHeading {
        font-size: 1rem !important;
        margin-top: 0.3em !important;
        margin-bottom: 0.3em !important;
    }

    /* Tighten h5 headings */
    #tabs h5 {
        font-size: 1rem !important;
        margin-bottom: 0.25em !important;
    }

    /* Mobile gallery behaviour */
    .mobile-gallery-launch {
        display: block !important;
    }

    /* Hide jAlbum iframe on mobile */
    iframe[src*="Albums"] {
        display: none !important;
    }

    /* Always show overlay text on mobile */
    .tap-overlay {
        opacity: 1;
    }
}

/* Small iPhones */
@media (max-width: 480px) {
    .header-text h1 {
        font-size: 0.95rem;
    }

    .header-text p {
        font-size: 0.75rem;
    }

    .header-logo img {
        height: 90px;
    }
}
/* ============================================================
   TAB CONTENT WIDTH + OVERFLOW FIX (Hybrid C)
   ============================================================ */

/* Kill all inherited min-widths that cause overflow */
#tabs,
#tabs * {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure tab panels never exceed container width */
#tabs > div,
.ui-tabs-panel {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure images never push the container wider */
#tabs img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}
/* Restore side-by-side behaviour for images with percentage widths */
#tabs img[width*="%"] {
    display: inline-block !important;
    vertical-align: top;
}

/* Ensure any rogue inline-block elements wrap correctly */
#tabs p,
#tabs div,
#tabs section {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

/* Mobile: enforce full-width, no overflow */
@media (max-width: 600px) {
    #tabs,
    #tabs > div,
    .ui-tabs-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }
}

/* ============================================================
   FINAL TAB CONTENT PADDING + ALIGNMENT FIX
   ============================================================ */

/* Desktop/iPad: match dynamic header padding */
#tabs > div,
.ui-tabs-panel {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 0.8rem !important;
    padding-bottom: 1rem !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Tab bar alignment */
#tabs .ui-tabs-nav {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    justify-content: flex-start !important;
}

/* Mobile: tighter padding to prevent right-edge overflow */
@media (max-width: 600px) {

    #tabs > div,
    .ui-tabs-panel {
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }

    #tabs .ui-tabs-nav {
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }
}
/* ============================================================
   FINAL TAB ALIGNMENT + PADDING MATCH FIX
   ============================================================ */

/* Remove all rogue padding from tab panels */
#tabs > div,
.ui-tabs-panel {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Apply the SAME padding as the dynamic header + year selector */
#tabs > div,
.ui-tabs-panel {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Tab bar alignment */
#tabs .ui-tabs-nav {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}

/* Mobile: tighter padding to prevent right-edge overflow */
@media (max-width: 600px) {

    #tabs > div,
    .ui-tabs-panel,
    #tabs .ui-tabs-nav {
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }
}
/* ============================================================
   LIGHTBOX GALLERY LAUNCHER (PC + Mobile)
   ============================================================ */

.vrcl-gallery-launcher {
    width: 100%;
    margin: 1rem 0;
}

.vrcl-gallery-launcher .gallery-cover {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.vrcl-gallery-launcher .gallery-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Hover overlay (PC) */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: rgba(0,0,0,0.55);
    color: #fff;
    text-align: center;

    padding: 10px 0;
    font-size: 1rem;

    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 6px 6px;
}

.gallery-cover:hover .gallery-overlay {
    opacity: 1;
}

/* Mobile: always show overlay text */
@media (max-width: 600px) {
    .gallery-overlay {
        opacity: 1;
        font-size: 0.9rem;
        padding: 8px 0;
    }
}
/* Desktop: tighten header text spacing */
@media (min-width: 601px) {
    .header-text h1 {
        margin: 0 0 0.2rem 0;   /* remove top margin, tighten bottom */
        line-height: 1.1;
    }

    .header-text p {
        margin: 0;              /* remove default top margin */
        padding: 0;
        line-height: 1.25;
    }
}
/* ============================================================
   VRCL HOME FLEX LAYOUT (Desktop + Mobile Safe)
   ============================================================ */

.vrcl-flex {
    display: flex;
    gap: 2em;
    align-items: flex-start;
    margin-top: 1.5em;
}

.vrcl-left {
    flex: 2;
}

.vrcl-right {
    flex: 1;
    text-align: right;
}

.vrcl-right img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.vrcl-caption {
    margin-top: 0.4em;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* ============================================================
   VRCL HOME FLEX LAYOUT (Desktop + Mobile Safe)
   ============================================================ */

.vrcl-flex {
    display: flex;
    gap: 2em;
    align-items: flex-start;
    margin-top: 1.5em;
}

.vrcl-left {
    flex: 2;
}

.vrcl-right {
    flex: 1;
    text-align: right;
}

.vrcl-right img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.vrcl-caption {
    margin-top: 0.4em;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* ============================================================
   VRCL ARCHIVAL PHOTO WRAP (float-right on desktop)
   ============================================================ */

.vrcl-photo-wrap {
    float: right;
    width: 30%;
    margin: 0 0 1rem 1rem;
    text-align: center;
}

.vrcl-photo-wrap img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.vrcl-photo-caption {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.3rem;
}

/* ============================================================
   TABLE-STYLE IMAGES (desktop shrink, mobile full width)
   ============================================================ */

img.vrcl-tableimg {
    width: 70%;
    max-width: 70%;
    display: block;
    margin: 0 0 1rem 0;
}

/* ============================================================
   MOBILE FIX — ALL MOBILE RULES IN ONE PLACE
   ============================================================ */

@media (max-width: 600px) {

    /* VRCL FLEX → stack columns */
    .vrcl-flex {
        flex-direction: column;
        gap: 1.2em;
    }

    .vrcl-right {
        text-align: center;
        width: 100%;
    }

    .vrcl-right img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }

    .vrcl-caption {
        text-align: center;
    }

    /* ARCHIVAL PHOTO WRAP → full width on mobile */
    .vrcl-photo-wrap {
        float: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }

    /* SHRINK-MOBILE-FULL → force full width on mobile */
    img.shrink-mobile-full {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
    }

    /* TABLE-STYLE IMAGES → full width on mobile */
    img.vrcl-tableimg {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1rem 0 !important;
    }
}
@media (max-width: 600px) {
    #tabs .ui-tabs-panel {
        padding-top: 0rem !important; /* or 0 if you want it flush */
    }
}
