






/* Hide print header on screen */
.print-header {
    display: none;
}

/* Print Styles */
@media print {
    @page {
        margin: 0.25in 0.5in 0.5in 0.5in;
        size: letter portrait;
    }

    #kt_app_header,
    #kt_app_footer {
        display: none !important;
    }

    /* Print Header */
    .print-header {
        display: block !important;
        text-align: center;
        padding: 5px 0 10px 0;
        margin-bottom: 10px;
    }

        .print-header img {
            display: block;
            height: 40px;
            margin: 0 auto 5px auto;
        }

        .print-header h1 {
            display: block;
            margin: 0;
            font-size: 16pt;
            color: #0c395b;
            padding-bottom: 0px;
        }

    body {
        margin: 0;
        padding: 0;
        color: #000 !important;
    }

    .app-wrapper {
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .app-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Remove all card margins/padding/borders */
    .card {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        page-break-before: avoid !important;
    }

    .card-body {
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* Ensure first card starts at top of page */
    .card:first-of-type {
        page-break-before: avoid !important;
        margin-top: 0 !important;
    }

    .d-flex.flex-column {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Adjust banner for print */
    .container-fluid {
        min-height: 80px !important;
        padding: 5px !important;
        margin: 0 !important;
    }

        .container-fluid .w-100 {
            -webkit-print-color-adjust: exact !important;
            print-color-adjust: exact !important;
            color-adjust: exact !important;
        }

    /* Remove margins on container - make text wider */
    .container {
        margin: 0 !important;
        padding: 0 0px !important;
        max-width: 100% !important;
    }

    section {
        margin: 0 !important;
        padding: 10px 0 !important;
    }

        section:first-child {
            margin-top: 0 !important;
            padding-top: 5px !important;
        }

    /* Tighten up headings */
    h1, h2, h3, h4 {
        margin-top: 10px !important;
        margin-bottom: 8px !important;
    }

    p, ul {
        margin-bottom: 8px !important;
    }

    /* Hide menu for print */
    .menu {
        display: none !important;
    }

    /* Highcharts Print Fixes */
    .card:has([id^="figure"]) {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        margin: 10px 0 !important;
        padding: 0 !important;
    }

        .card:has([id^="figure"]) .card-body {
            padding: 10px 15px 10px 0 !important;
        }

    [id^="figure"] {
        overflow: visible !important;
        page-break-inside: avoid !important;
        width: 100% !important;
    }
}
/* User Guide Accordion Styling */
#areasOfExplorationAccordion .accordion-button {
    background-color: #F9F9F9 !important;
    color: #222;
    font-weight: 700;
    /*border-left: 4px solid #006EAE;*/
    /*padding-left: 1.25rem;*/
}

    #areasOfExplorationAccordion .accordion-button:not(.collapsed) {
        background-color: #F9F9F9 !important;
        color: #222;
    }

    #areasOfExplorationAccordion .accordion-button:hover {
        background-color: #EFEFEF !important;
    }

    #areasOfExplorationAccordion .accordion-button:focus {
        box-shadow: none;
        border-color: #EFEFEF;
    }
.tip-box {
    background: #E3F2FD;
    border-left: 4px solid #006EAE;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

    .tip-box .tip-icon {
        color: #006EAE;
        font-weight: bold;
        margin-right: 0.5rem;
    }

.step-card {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: center;
}

.step-number {
    background: #006EAE;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-text {
    margin-bottom: 1rem;
}

.two-column-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}
@media (max-width: 768px) {
    .two-column-step {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .feature-card h3 {
        color: #006EAE;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
/* Mobile Accordion Fix */
@media (max-width: 991px) {
    /* Always reserve space for border/margin */
    .menu-item.menu-lg-down-accordion .menu-sub {
        position: relative !important;
        box-shadow: none;
        border: none;
        border-left: 2px solid transparent; /* Transparent when closed */
        margin-left: 10px;
        padding-left: 10px;
    }
    /* Show blue border when open */
    .menu-item.menu-lg-down-accordion.show .menu-sub {
        display: block !important;
        border-left-color: #006EAE; /* Just change color, not layout */
    }
}




.bg-primary {
    background-color: #006eae !important
}

.btn.btn-primary {
    background-color: #006eae !important
}

    .btn.btn-primary.active {
        background-color: #006eae !important
    }