
/* stylelint-disable declaration-no-important */

/* TODO: Remove !important declarations as tech debt when possible and use proper CSS specificity */

html,
body {
    margin: 0;
    padding:0;
    font-family: "Source Sans 3", sans-serif;
}

.app-root {
    display: flex;
    flex-direction: column;
}

.empty-content {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

    .empty-content h2 {
        margin-bottom:0;
        font-size: 1.5em;
        font-weight: 680;
        color: var(--text-dark-gray)
    }

    .empty-content p {
        margin-top: 0;
        font-size: 1rem;
        font-weight: 350;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    z-index: 10;
    border: .5px solid var(--primary-black);
}

    .dropdown-content.show {
        display: block;
    }

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: var(--primary-black);
    width: 100%;
}

    .dropdown.active a {
        background-color: var(--white);
        color: var(--primary-black);
        border: 3px solid var(--accent-blue);
        padding: .6rem;
    }

.go-back {
    margin: 1rem 0 0;
    color: var(--primary-blue);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-weight: 550;
    text-decoration: underline;
    gap: 1rem;

    path{
        fill:var(--primary-blue);

    }
}

.go-back-arrow{
        svg{
            margin-right: 0.1875rem;
            position: relative;
            top: 0.0625rem;
        }
     }

.go-back-chevron{
        svg{
            margin-right: 0.1875rem;
            position: relative;
            top: 0.375rem;
        }
     }

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.downloadoverlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    overflow: hidden;
    justify-content:right;
    align-items:start;
}

.share-modal {
    background-color: var(--white);
    padding: 2.75% 4%;
    border-radius: 0.3125rem;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
    z-index: 1001;
    position: relative;
    border: 4px solid var(--accent-blue);
}

.download-modal {
    padding: 0 5rem .2rem 1rem ;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    background-color: var(--white);
    border-radius: 0.25rem;
    box-shadow: 4px 3px 5.8px 0 rgb(0, 0, 0, 0.50);
    z-index: 1001;
    border: 4px solid var(--accent-blue);
}

.download-modal svg{
margin:0 .5rem;
}

.column-div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.change-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;  /* Standardizing button size */
    height: 2rem;
    padding: 0.75rem;
    margin: 0 0.25rem;
    border: 1px solid var(--border-light-gray);
    border-radius: 0.35rem;
    background-color: var(--white);
    color: var(--primary-blue);
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    height: 10vh;           /* Full viewport height */
    gap: 0.5rem;  /* Spacing between elements */
}

    .page-numbers {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;  /* Standardizing button size */
        height: 2rem;
        padding: 0.75rem;
        margin: 0 0.25rem;
        border: 1px solid var(--border-light-gray);
        border-radius: 0.35rem;
        background-color: var(--white);
        color: var(--primary-blue);
        text-decoration: underline;
    }

        .page-numbers.hover {
            border: 1px solid var(--primary-blue);
        }

        .page-numbers:active {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;  /* Standardizing button size */
            height: 2rem;
            padding: 0.75rem;
            margin: 0 0.25rem;
            border: 1px solid var(--border-light-gray);
            border-radius: 0.35rem;
            background-color: var(--primary-black) !important;
            color: var(--primary-blue);
            text-decoration: underline;
        }

        .page-numbers.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .page-numbers.active {
            background-color: var(--error-red-dark);
            color: var(--white);
            border: 1px solid var(--primary-blue);
        }


    .column-div h4 {
        margin-bottom:0;
        gap:.5rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .column-div p {
        margin-top: 0;
        font-size: 0.6875rem;
        font-weight: 400;
    }

.close-button {
    position: absolute;
    top: 1.125rem;
    right: 1.25rem;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight:900;
}

.scroll-controls {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    margin-left: auto;
    cursor: pointer;
    user-select: none;
}

.horizontal-scroll {
    width: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    scroll-behavior: smooth;
    user-select: none;
}

button {
    cursor: pointer;
}

.content-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: .1rem;
}

div.content-title{
    margin: 0 2rem 0 0;
}

.content-info {
    margin-top: 0;
    margin-bottom: .25rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 380;
    align-items: center;
}

    .content-info p {
        align-items: center;
        margin-bottom: .5rem;
        margin-top: .5rem;
        gap: .4rem;
    }

.content-typing {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 1rem;
}

.assigned-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;

    /* margin-left: 3rem; */
    margin-top: 1.5rem;
}

    .assigned-header h1 {
        flex-grow: 1;
        margin: 0;
        font-weight: 650;
        font-size: 2.5rem;
    }

    .assigned-header p {
        font-weight: 300;
        font-size: 1.15rem;
        margin: 0;
    }


.type {
    display: flex;
    width: fit-content;
    padding: 0.0733rem 0.5866rem;
    justify-content: center;
    align-items: center;
    gap: 0.2933rem;
    border-radius: 0.1466rem;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.9531rem;
    font-weight: 400;
    text-transform: uppercase;
}

.content-blooms {
    display: inline-flex;
    padding: 0.0762rem 0.6101rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.1526rem;
    background: var(--intermediate-dark-blue);
    font-size: 0.9915rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    width: fit-content;
}


    .pagination button {
        padding: 0.4rem 0.75rem;
        border: none;
        background: none;
        color: var(--primary-blue);
        cursor: pointer;
        border-radius: 0.25rem;
    }

    .pagination .page-active {
        background: var(--primary-black) !important;
        color: var(--white) !important;
        font-weight: bold;
    }

    .pagination .page-numbers {
        border-radius: 0.25rem;
        border: 1px solid var(--border-light);
    }

div.suggestion-block{
    margin-left:1rem;
}


/* Needed for Blazorise Autocomplete, from BootStrap CSS */
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid var(--gray-border-light-2);
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .form-control:focus {
        color: var(--bs-body-color);
        background-color: var(--bs-body-bg);
        border-color: var(--focus-blue);
        outline: 0;
        box-shadow: 0 0 0 .25rem rgb(13, 110, 253, .25);
    }

.assign-content .form-control {
    border: 1px solid var(--in-progress-content-item);
    border-radius: 0;
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
    position: relative;
}



.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-bg: var(--white);
    --bs-dropdown-border-color: var(--gray-border-light-2);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: var(--white);
    --bs-dropdown-link-active-bg: var(--bootstrap-primary);
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: var(--color-text-muted);
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;

    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: 0;
        margin-top: var(--bs-dropdown-spacer);
    }

.dropdown-menu-start {
    --bs-position: start;
}

    .dropdown-menu-start[data-bs-popper] {
        right: auto;
        left: 0;
    }

.dropdown-menu-end {
    --bs-position: end;
}

    .dropdown-menu-end[data-bs-popper] {
        right: 0;
        left: auto;
    }

    .see-all-link {
        color: var(--today-border-blue);
        text-decoration: underline;
        white-space: nowrap;
        font-size: 1.15rem;
        font-weight: 700;
        margin-top: .2rem;
        margin-left: .9rem;
        flex-shrink: 0;
    }

    @media (width >= 576px) {
        .dropdown-menu-sm-start {
        --bs-position: start;
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (width >= 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

        .dropdown-menu-md-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

        .dropdown-menu-md-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (width >= 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (width >= 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

@media (width >= 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

        .dropdown-menu-xxl-start[data-bs-popper] {
            right: auto;
            left: 0;
        }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

        .dropdown-menu-xxl-end[data-bs-popper] {
            right: 0;
            left: auto;
        }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer);
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer);
}




.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer);
}


.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1;
}

.dropdown-item {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: var(--bs-dropdown-link-hover-color);
        background-color: var(--bs-dropdown-link-hover-bg);
    }

    .dropdown-item.active, .dropdown-item:active {
        color: var(--bs-dropdown-link-active-color);
        text-decoration: none;
        background-color: var(--bs-dropdown-link-active-bg);
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: var(--bs-dropdown-link-disabled-color);
        pointer-events: none;
        background-color: transparent;
    }

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
    --bs-dropdown-color: var(--table-border-gray);
    --bs-dropdown-bg: var(--text-dark-gray);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);

    /* --bs-dropdown-box-shadow: */
    --bs-dropdown-link-color: var(--table-border-gray);
    --bs-dropdown-link-hover-color: var(--white);
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgb(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: var(--white);
    --bs-dropdown-link-active-bg: var(--bootstrap-primary);
    --bs-dropdown-link-disabled-color: var(--muted-gray);
    --bs-dropdown-header-color: var(--muted-gray);
}


.suggested-page-prompts > div {
  flex-wrap:wrap; /* targeting the prompts (.suggested-cards-row) specifically on the Suggestions for you page and not the home page to keep the
  scrolling on the home prompts */
  border: 0 !important;
  padding-left:2rem !important;
  padding-right:2rem !important;
}

.suggested-page-prompts{
    background-color: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;

    h2{
        padding: 0 0 0 1rem;
    }
}

.preview-box{
    border: 1.308px solid var(--primary-black);
    border-radius: 0.25rem;
}

.validation-message {
    color: var(--alert-red) !important;
    font-size: 1rem !important;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-top: .5rem;
}

.error-message {
    color: var(--error-red) !important;
    font-size: 1rem !important;
}


/* Global button fonts */









.new-team-member-btn{
    span{
        display:flex;
        flex-wrap:nowrap;
        white-space: nowrap;
    }
}

.content-line{
    h1{
        margin:.2rem;
    }
}


div.most-searched-tags.analytic-content-box {
    h3{
        margin-bottom: .4rem;
    }
}

.notifications-badge {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Global font size utilities */
.font-size-sm { font-size: 1.25rem !important; }
.font-size-md { font-size: 1.5rem !important; }
.font-size-lg { font-size: 2rem !important; }
.font-size-xl { font-size: 2.25rem !important; }
.font-size-xxl { font-size: 2.5rem !important; }

/* HOME PAGE SPECIFIC STYLES - Using CSS custom properties */

/* White title styling for Home page components */
.home-learning-pathways-wrapper .white-title {
    --section-title-color: var(--white);
    --section-title-text-align: center;
    --section-title-font-weight: 600;
    --section-title-font-size: 2rem;
    --section-title-font-family: "Source Sans 3", sans-serif;
    --section-title-line-height: 100%;
    --section-title-letter-spacing: 0;
}

/* Hide scrollbar for Home page components */
.home-learning-pathways-wrapper .hide-scrollbar {
    --horizontal-section-overflow-x: auto;
    --horizontal-section-overflow-y: hidden;
    --scrollbar-display: none;
}

/* Remove margin-top for transparent horizontal-section-container in right component */
.home-learning-pathways-wrapper .right-component .horizontal-section-container.transparent {
    margin-top: 0;
}

/* Content empty styling for Home page */
.home-learning-pathways-wrapper .content-empty {
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100px;
}

/* global de-scaling class */
.global-de-scaler {
   width: 100%;
   zoom: 0.95;
}

.btn{
    font-family: 'Source Sans 3';
    border:2px solid var(--primary-blue);
}

.cancel-btn {
    font-family: 'Source Sans 3';
    cursor: pointer;
    background: var(--white);
    border-radius: 0.2rem;
    border:2px solid var(--primary-blue);
    display: flex;
    padding: .5rem 1.5rem;
    color: var(--primary-blue);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

div.btn{
    border:none;
}

.info-icon-container svg {
    fill: var(--white);
    color: var(--white);
}

.supporting-skills{
    font-size: 1rem;
}

/* Zoom Levels */

.zoom-90 {
    zoom: 0.90;
}

.zoom-92 {
    zoom: 0.92;
}

.zoom-95 {
    zoom: 0.95;
}



/* global classes for proficiency tags */

.card-skill {
    display: flex;
    font-size: 0.9531rem;
    font-weight: 400;
    justify-content: center;
    align-items: center;
    height: 1.4rem;
    padding: 0.0733rem 0.5866rem;
    width: fit-content;
    gap: 0.3872rem;
    border-radius: 0.17rem;
    color: var(--white);
    text-transform: uppercase;
}

.awareness {
    background: var(--blue-level-one);
}

.basic {
    background: var(--primary-blue);
}

.intermediate {
    background: var(--blue-level-three);
}

.advanced {
    background: var(--blue-level-four);
}

.expert {
    background: var(--navy-blue);
}


/* global go back button */
.back-button {
    font-family: 'Source Sans 3';
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 2.08rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
    background: none;
    border: none;
    font-size: 1rem;
}
