﻿/* #region Featured Image*/
    /* Mobile - 360px */
    @media only screen and (min-width: 0rem) {
        
        
        .banner-1535 {
            padding: var(--sectionPadding);
            /* 190px - 268px */
            padding-top: clamp(11.875rem, 25vw, 16.75rem);
            /* 100px - 150px */
            padding-bottom: clamp(6.25rem, 12vw, 9.375rem);
            /* clips the line from causing overflow issues for going off screen */
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .banner-1535-noimage {
            background: #13284D;
            background: linear-gradient( 90deg, rgba(19, 40, 77, 1) 65%, rgba(46, 74, 125, 1) 100% );
            padding-top: 13rem;
            padding-bottom: 7rem;
        }

        .banner-1535 .cs-container {
            text-align: center;
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-direction: column;
            /* 8px - 12px */
            gap: clamp(0.5rem, 1vw, 0.75rem);
        }

        .banner-1535 .cs-int-title {
            /* 39px - 61px */
            font-family: var(--sansFont);
            font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
            font-weight: 700;
            line-height: 1.2em;
            text-align: inherit;
            margin: 0;
            color: var(--headerColor);
            color: var(--bodyTextColorWhite);
            position: relative;
        }

        .banner-1535 .cs-breadcrumbs {
            display: flex;
            justify-content: center;
            align-items: center;            
        }

        .banner-1535 .cs-link {
            font-size: 1rem;
            line-height: 1.2em;
            text-decoration: none;
            color: var(--secondary);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .banner-1535 .cs-link:hover {
                color: var(--secondaryLight)
            }

        .banner-1535 .cs-link.cs-active {
            color: var(--secondaryLight);
            display:none;
        }

        .banner-1535 .cs-link:after {
            font-family: "Font Awesome 6 Free";
            font-weight: 600;
            content: "\f054"; /* fa-chevron-right */
            margin-left: .5rem;
            margin-right: .75rem;
            display: inline-block;
            font-size: .75rem;
            line-height: 0.6;
            margin-bottom: -1px;
            color: var(--secondaryLight) !important
        }
        .banner-1535 .cs-active:last-of-type::after, i.cs-link::after {
            display: none !important;
        }
        .banner-1535 i {
            padding-bottom: 2px;
            padding-right: 4px;
            color: var(--secondaryLight) !important;
        }
        .banner-1535 i:hover {
            color: var(--secondaryLight) !important;
        }

        .banner-1535 .cs-background {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .banner-1535 .cs-background:before {
            /* gradient overlay */
            content: '';
            width: 100%;
            height: 100%;
            background: #FFF3EC;
            opacity: .8;
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .banner-1535 .cs-background img {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            /* Makes img tag act as a background image */
            object-fit: cover;
        }

        .banner-1535 .cs-mask {
            --maskBG: #ffffff;
            width: 100%;
            height: auto;
            display: block;
            position: absolute;
            bottom: -3rem;
            left: 0;
            z-index: 100;
        }
}
    /* Tablet - 768px */
    @media only screen and (min-width: 48rem) {
        .banner-1535 .cs-background:before {
            width: 100%;
            height: 100%;
            background: var(--primary);
            background: linear-gradient(90deg, rgba(247,247,247, .9) 50%, rgba(59, 162, 246, 0.28) 80%);
            background: linear-gradient(90deg, rgba(27, 69, 125, .96) 50%, rgba(59, 162, 246, 0.28) 80%);
            opacity: 1;
        }
}


    .footer-wave-top {
        top: -20px !important;
        position: relative;
    }
/*#endregion*/

/*#region side bar nav*/
.nav-wrap {
    position: relative;
    height: 100%;
    padding: 1rem;
    /* FONT & TEXT */
    font-family: var(--sansFont);
    font-size: 1rem; /* good base size */
    font-weight: 500; /* recommended for nav clarity */
    line-height: 1.4; /* improves readability */
    /* CASE */
    text-transform: none;
    letter-spacing: 0.02em;
    /* ACCESSIBILITY */
    color: var(--navTextColor, #333); /* ensure good contrast */
}

.subpage-nav {
    list-style: none;
    padding-left: 0;
}

.nav-wrap .subpage-nav:first-child {
    margin-left: 0 !important;
}

.subpage-nav li {
    padding: .35rem 0;
    border-bottom: 1px solid #ccc;
}

    .subpage-nav li a {
        color: var(--navTextColor);
    }

        .subpage-nav li a:hover {
            color: var(--primary);
        }

.subpage-nav-active {
    color: var(--primary) !important;
}

    .subpage-nav-active:hover {
        color: var(--headerColor);
    }

.subpage-nav .subpage-nav li:last-child, .subpage-nav .subpage-nav .subpage-nav li:last-child {
    border-bottom: none;
}

/* --- mobile collapse behavior --- */
@media (max-width: 634px) {
    /* space for the toggle button */
    #secContent {
        padding: 2rem 1rem !important;
    }
    #contentNav {       
        padding: 0 !important;
    }
    
    #nav-wrap .nav-wrap {
        padding-top: 3rem; /* adjust if you want */
    }

    /* the injected toggle button */
    #nav-wrap .nav-toggle {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid #ccc;
        background: #fff;
        color: var(--navTextColor, #333);
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        font: inherit;
        cursor: pointer;
    }

        #nav-wrap .nav-toggle:focus-visible {
            outline: 2px solid currentColor;
            outline-offset: 2px;
        }

    /* collapse container */
    #nav-wrap .subpage-nav {
        overflow: hidden;
        max-height: 0;
        transition: max-height 250ms ease;
    }

    /* expanded state */
    #nav-wrap.is-open .subpage-nav {
        max-height: var(--nav-max-h, 500px); /* JS sets this */
    }
}

/* optional: hide button on desktop just in case */
@media (min-width: 635px) {
    #nav-wrap .nav-toggle {
        display: none !important;
    }
}



/*#endregion*/

/*#region content*/
#secContent {
    padding: 4rem 2rem;
}
#contentContainer {    
    max-width:80em;
    margin:auto;
}
#contentNav {
    background: #f7f7f7;
    padding: 2rem 1rem;
    /*border: 1px solid var(--primaryLight);*/
    border-radius: var(--borderRadiusLarge);   
    overflow: hidden;
}
#contentMain {
    padding:0 1rem
}
/*#endregion*/

/*#region wysiwyg*/
    #contentMain .wysiwyg-title {
        font-size: var(--headerFontSize) !important;
        font-family: var(--serifFont);
        font-weight: 600;
        line-height: 1.4em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }

    #contentMain h2,
    #contentMain h3,
    #contentMain h4,
    #contentMain h5,
    #contentMain h6 {
        font-weight: 500;
        font-family: var(--sansFont);
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }

    #contentMain h2 {
        font-size: clamp(1.75rem, 1.25rem + 1vw, 2.25rem);
    }

    #contentMain h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }

    #contentMain h4,
    #contentMain h5,
    #contentMain h6 {
        font-size: 1.25rem;
    }

    #contentMain .wysiwyg {
        width: 100%;
        max-width: 46.125rem;
        margin: 0 auto;
        display: block;
        text-align: left;
        line-height: 1.6;
        margin-block: 3rem;
    }

    #contentMain .wysiwyg p {
        margin-bottom: 1rem;
    }

    #contentMain .wysiwyg ul,
    #contentMain .wysiwyg ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    #contentMain .wysiwyg a {
        color: var(--primary);
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color .2s ease, text-decoration-color .2s ease;
    }

    #contentMain .wysiwyg a:hover,
    #contentMain .wysiwyg a:focus {
        color: var(--secondary); /* slightly darker version of your primary */
        text-decoration-color: var(--secondary);
    }

#contentMain .wysiwyg img {
    max-width: 100%;
    height: auto;
}
/*#endregion*/

/* #region accordion*/
.accordion {
    box-sizing: border-box;
    overflow: hidden;
    background: var(--bodyTextColorWhite);
    border-radius: var(--borderRadius);
    border: 1px solid var(--colorBorder);
}
    .accordion a {
        text-decoration: none !important;
    }
    .accordion-section-title,
    .accordion-section-title2 {
        width: 100%;
        display: inline-block;
        margin: 0 0 0.1em 0;
        padding: 0.25em 0.5em;
        background: var(--primary) !important;
        color: var(--bodyTextColorWhite) !important;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
        font-family: var(--sansFont);
        font-size: clamp(1rem, 2vw, 1.2rem);
        font-weight: 500;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        transition: all 0.15s linear;
    }

    /* Active / Hover / Focus States */
    .accordion-section-title.active,
    .accordion-section-title:hover,
    .accordion-section-title2.active,
    .accordion-section-title2:hover,
    .accordion-section-title2:focus {
        background: var(--primaryLight) !important;
        color: var(--bodyTextColorWhite) !important;
        border-bottom: none !important;
    }

.accordion-section-content {
    display: none;
    padding: 1rem;
}

/* Remove border on last item */
.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

/* Lists inside accordion */
.accordion ul,
.accordion ol {
    margin-left: 2rem;
}

.accordion-icon {
    padding-right: .5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .accordion-icon.rotate {
        transform: rotate(90deg);
    }
/*#endregion*/

/*#region agenda*/
    .agendaContainer {
        border: 1px solid var(--colorBorder);
        border-radius: var(--borderRadius);
        overflow: hidden;
    }

    .agendaOuter {    
        margin-bottom: 0;
    }
    .agendaRow {
        display: flex;
        width: 100%;
        border-bottom: 1px solid var(--colorBorder);
        position: relative;
    }
    .agendaRow:last-of-type {
    border-bottom:none;
    }
   
    .agendaTitle {
        width: 25%;
        padding: 1rem;
        text-align: center;
        background: var(--primary);
        color: var(--bodyTextColorWhite);
        font-weight: 500;
    }

    .agendaContent {
        width: 75%;
        padding: 1rem;
    }
/*#endregion*/

/*#region retailers*/
    .filter-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 2rem;
        Padding: 2rem;
        align-items: center;
        background: var(--colorLightAccent);
        border-radius: var(--borderRadius);
    }

    /* Matching form control styling */
    .filter-input {
        width: 100%;
        max-width: 300px;
        padding: 0.5rem 0.75rem;
        border-radius: 4px;
        border: 1px solid #ccc;
        font-size: 1rem;
        background: #fff;
        color: var(--navTextColor);
    }
    .filter-input::placeholder {
        color: var(--navTextColor);
        opacity: 1; /* required for Firefox */
    }

    /* Clear button */
    .filter-clear {
        padding: 0.5rem 1rem;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
    }

    .filter-clear:hover,
    .filter-clear:focus {
        background: var(--secondary);
        outline: 0 solid var(--secondary);
    }

/* Responsive layout */
@media (max-width: 600px) {
    .filter-input, .filter-clear {
        max-width: 100%;
    }
}

.retailer-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;    
}

.retailer-header {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    font-size:1.15rem;
    color: var(--colorHeaderGray);
}

.col-name {
    flex: 2;
}

.col-location {
    flex: 1;
    text-align: right;
}

.retailer-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}



.retailer-name {
    flex: 2;
    font-weight: 400;
    text-decoration: none;
    color: var(--primary);
}
.retailer-name:hover {
    text-decoration: none !important;
}

.retailer-location {
    flex: 1;
    text-align: right;
    color: var(--navTextColor);
}

@media (max-width: 600px) {
    .retailer-header {
        display: none;
    }

    .retailer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .retailer-location {
        text-align: left;
        margin-top: 0.25rem;
    }
}

/*#endregion*/

/*#region companies*/
.company-filter-bar {
    display: flex;
    flex-direction: column; /* stack rows vertically */
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    Padding: 2rem;   
    background: var(--colorLightAccent);
    border-radius: var(--borderRadius);
}
.company-filter-bar p {
    padding-top:1.5rem;
}
.company-filter-bar img:last-child {
    padding-left: 3rem;
}

.filter-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Row 1: search + category */
.filter-row-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Row 2: checkboxes forced onto their own line */
.filter-row-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 0.25rem;
}

/* Checkbox style */
    .filter-check {
        display: flex;
        align-items: center;
        gap: .35rem;
        font-size: .95rem;
        white-space: nowrap;
    }
    .filter-check input[type="checkbox"] {
        margin: 0;
        position: relative;
        top: 0.5px; /* adjust between 0.5px–1px depending on your font */
    }

    .category-section h2 {
        margin-top: 4rem !important;
        padding-bottom: .3rem;
    }

.company-card {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--secondary);
   
}

    

    .company-info {
        flex: 1;
    }

    .company-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
    }

    .company-name:hover {
        text-decoration: underline;
    }

    .company-blurb {
        margin-top: .3rem;
        color: var(--navTextColor);
        line-height: 1.4;
        min-height:150px;
    }

    .company-categories {
        margin-top: .5rem;
    }

.cat-tag {
    display: inline-block;
    color: var(--primary);
    padding-right: .5rem;
    margin: 0 0.25rem 0.25rem 0;
    font-size: .85rem;
    font-weight: 500;
    border-right: 1px solid var(--colorBorder)
}
    .cat-tag:last-child {
        border-right: 0 solid var(--colorBorder)
    }

.company-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.25rem;
}

.company-flags {
    margin: .5rem 0;
}

.theIcon {
    width:20px;
}

@media (max-width: 600px) {
    .company-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-logo {
        margin-bottom: .5rem;
    }
}

/* -------  company page --------- */
.company-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;    
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.company-logo {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.company-logo-page {
    width: 150px;
    height: 150px;
}

.company-logo {       
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-logo img {
    width: 100%; /* fill the container */
    height: 100%; /* fill the container */
    object-fit: cover; /* crop, no distortion */
    display: block;
}

.company-name {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 0.3rem;
}

.contact-name {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.id-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--badge-bg);
    color: var(--badge-text);
    border: 1px solid #e0e7ff;
    text-transform: uppercase;
    font-weight: 600;
}

.badge-danger {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fee2e2;
}

.badge-muted {
    background: #f3f4f6;
    color: #4b5563;
    border-color: #e5e7eb;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.75rem;
}

.company-section {
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1.3rem;
}

.company-section-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom:.5rem;
}

.company-field {
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
}

.company-field-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top:1rem;
}
.company-chip-container {
    display: block; /* or inline-block */
}
.company-chip-panel {
    display: inline-block; /* ← REQUIRED */
}
.company-chip {
    background: #e5f0ff;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    color: #1d4ed8;
    display:inline-block;
    margin-right:.5rem;
}
.company-category-list {
    display: inline; /* or block, doesn’t matter */
}

    /* Insert separator BEFORE every link except the first */
    .company-category-list a + a::before {
        content: "|";
        padding: 0 .35rem;
        color: #666;
        pointer-events: none; /* NEVER clickable */
    }

@media(max-width:768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    body {
        padding: 0;
    }

    .card {
        padding: 1.4rem 1.2rem;
    }
}
.product-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.product-logo-wrapper {
    flex-shrink: 0;
}

.product-logo {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background: #f3f4f6;
    padding: 0;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .3rem;
    color: #1f2937;
}

.product-description {
    font-size: .9rem;
    color: #4b5563;
    white-space: pre-line;
}
/*#endregion*/

/*#region membership*/
/* Container spacing */
#memberContainer .card {
    margin-bottom: 1.75rem;
    border-radius: var(--borderRadius);
}

#memberContainer .card-divider h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    margin: 0;
}
/* Inputs */
.input-field {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Vertical radio/checkbox lists */
.vertical-list label,
.vertical-list span {
    display: inline-block;
    margin-bottom: 0.35rem;
}

/* Checkbox grid (retailers) */
    .checkbox-grid td {
        padding-right: 1rem;
        padding-bottom: 0.35rem;
        vertical-align: top;
    }

    #memberProfileContainer i {
        padding-right:.5rem;
    }
    #memberProfileContainer .cs-button-white {
        color:#FFF !important;
        text-decoration:none !important;
    }

    /* Base menu container */
#memberProfileContainer .menu {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 2rem 0 1rem 0;
    border-bottom: 1px solid var(--colorBorder);
    font-family: inherit;
}

    /* Remove ASP.NET default table structure */
    #memberProfileContainer .menu ul,
    #memberProfileContainer .menu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Root menu items displayed as tabs */
    #memberProfileContainer .menu .level1 {
        display: flex;
        flex-direction: row;
    }

    /* Individual tab */
    #memberProfileContainer .menu .level1 li {
        margin: 0;
    }

    /* Tab link styling */
        #memberProfileContainer .menu .level1 li a {
            display: block;
            padding: 0.75rem 1.25rem;
            border: 1px solid var(--colorBorder);
            border-bottom: none;
            background: #f8f8f8;
            text-decoration: none;
            color: #333;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 6px 6px 0 0;
            transition: all 0.2s ease;
        }

    /* Hover effect */
    #memberProfileContainer .menu .level1 li a:hover {
        background: #ececec;
        color: #000;
    }

    /* Selected tab */
    #memberProfileContainer .menu .level1 li a.selected,
    #memberProfileContainer .menu .level1 li a:focus,
    #memberProfileContainer .menu .level1 li a:active {
        background: #ffffff;
        border-color: #ccc;
        color: #000;
        font-weight: 600;
        position: relative;
        top: 1px;
    }

    /* Fixes odd ASP.NET rendering of selected state */
    #memberProfileContainer .menu .level1 li.selected > a {
        background: #fff;
        border-color: #ccc;
        color: #000;
        font-weight: 600;
    }
/*#endregion*/
/*#region payments*/
#memberPayment {
    border-radius: var(--borderRadius);
}
#memberPayment .card-divider h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    margin: 0;
}

    #memberPayment .text-right, .oldLabel {
        padding-right: .5rem;
        font-weight: 500;
    }

.payment-card {
    padding: 1rem;
    border-left: 4px solid #ccc;
}

.payment-card:hover {
    background: #f9f9f9;
}

.payment-details-card h5 {
    margin-bottom: .5rem;
    font-weight: 600;
}

.payment-info div {
    margin-bottom: .25rem;
}

.payment-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/*#endregion*/

/*#region section bus cats*/
    .count {
        display: inline-block;
        width: 3ch; /* enough space for up to 6 digits, adjust as needed */
        text-align: right; /* optional: aligns numbers to the right */
    }

    #secCats {
        background: var(--colorLightAccent);
        padding: 2rem 1rem 0 1rem;
    }

    .secSubHead {
        padding-bottom: 1.5rem;
    }

    #secCats ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center; /* Center the inline-block items */
    }

    #secCats ul li {
        display: inline-block;
        width: 140px;
        text-align: center;
        vertical-align: top;
        margin: 0 5px; /* Optional spacing between items */
    }

    #secCats ul li a {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    #secCats ul li a .icon {
        display: block;
        width: 100%;
        height: auto; /* Or fixed height if needed */
        font-size: 130px; /* Adjust as needed if using icon fonts */
        text-align: center;
    }

    #secCats ul li a .icon:before {
        color: var(--primary);
    }

    #secCats ul li a .icon:hover::before {
        color: var(--secondary);
    }

#compSpotlight {
    margin-top: 6rem;
    background: var(--primary);
    border-radius: var(--borderRadiusLarge) var(--borderRadiusLarge) 0 0;
    color: var(--bodyTextColorWhite);
    padding: 1rem;
}

.slanted-left-border {
    position: relative;
    z-index: 0;
}

    .slanted-left-border::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px; /* 4px x 2 (for double border) */
        height: 100%;
        background: var(--secondary);
        transform: skewY(-20deg);
        transform-origin: left top;
        z-index: -1;
    }
/*#endregion*/

/*#region updated layoutTable*/
/* Modern Foundation-style data table */
.layoutTable {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

    /* Header row */
    .layoutTable tr:first-child td.copyTLbold {
        background: #f1f1f1;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem;
        border-bottom: 2px solid #e0e0e0;
    }

    /* Column headers */
    .layoutTable .copyTL {
        background: #fafafa;
        font-weight: 600;
        padding: 0.75rem;
        border-bottom: 1px solid #eaeaea;
        text-align: left;
        font-size: .95rem;
    }

    /* Data cells */
    .layoutTable .copyT {
        padding: 0.75rem;
        border-bottom: 1px solid #eee;
        font-size: .95rem;
    }

    /* Centered columns */
    .layoutTable td[style*="text-align:center"] {
        text-align: center !important;
    }

    /* Striping effect */
    .layoutTable tr:nth-child(even) .copyT {
        background: #fcfcfc;
    }

    /* Hover row highlight */
    .layoutTable tr:hover .copyT {
        background: #f6f6f6;
    }

    /* Button styling inside table */
    .layoutTable .button {
        padding: 0.4rem 0.8rem;
        font-size: .75rem;
        border-radius: 4px;
        color: #FFF !important;
        text-decoration:none !important;
    }

    /* Improve spacing above/below each table */
    .layoutTable + br,
    .layoutTable + br + br {
        display: none;
    }

/*#endregion*/