﻿/*LSC*/
:root {
    --lsc-grey-color: #5D5D5D;
    --lsc-amber-color: #EA691A;
    --lsc-blue-color: #2BA8E0;
    --lsc-blue-dark-color: #28225c;
    --lsc-pink-color: #be1555;
    --lsc-purple-color: #8D1F7D;
    --lsc-green-color: #00A09A;
    --lsc-green-light-color: #009E15;
    --lsc-red-color: #E32014;
    --link-color: #be1555;
    --tab-active-border-color: #be1555;
    --tab-border-color: #5D5D5D;
    --tab-text-color: #5D5D5D;
    --checkbox-margin-color: rgba(208, 13, 86, 1);
    --checkbox-fill-color: rgba(190, 21, 85, 0.5);
    --lsc-form-background-color: #e9e9e9;
    --lsc-content-background: #ffffff;
}

.g-1 {
    gap: 5px;
}

.g-2 {
    gap: 10px;
}

.g-3 {
    gap: 15px;
}

.g-4 {
    gap: 25px;
}

.g-5 {
    gap: 58px;
}

.color-inherit {
    color: inherit;
}

.as-divider-t-sm {
    border-top: 2px solid var(--lsc-form-background-color);
}

.as-divider-b-sm {
    border-bottom: 2px solid var(--lsc-form-background-color);
}

.text-right {
    text-align: right;
}

.color-primary {
    color: var(--lsc-pink-color);
}

.color-text-secondary {
    color: #5e636e;
}

.table-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

    .table-buttons.align-centre {
        justify-content: center;
        gap: 1rem;
    }

.condensed-list {
    line-height: 21px;
}

    .condensed-list p {
        margin-bottom: 0px;
    }

.lsc-link {
    color: var(--link-color);
    font-size: 18px;
}

table.lsc-link {
    color: var(--link-color);
    font-size: 14px;
}

    .lsc-link:hover {
        color: var(--link-color);
        filter: brightness(1.3);
    }

.lsc-page-introduction {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    width: 100%;
}


.lsc-page-introduction .text{
    max-width: 700px;
}

.label-container {
    display: flex;
    align-items: center;
}

.lsc-label {
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    color: var(--lsc-content-background);
    font-weight: bold;
    font-size: 13px;
    margin-left: 5px;
    display: inline-block;
    min-width: 35px;
}
    .lsc-label.amber {
        background: var(--lsc-amber-color);
    }

    .lsc-label.green {
        background: var(--lsc-green-color);
    }

    .lsc-label.green-light {
        background: var(--lsc-green-light-color);
    }

    .lsc-label.red {
        background: var(--lsc-red-color);
    }

    .lsc-label.purple {
        background: var(--lsc-purple-color);
    }

    .lsc-label.approved {
        background: var(--lsc-green-color);
    }

    .lsc-label.rejected {
        background: var(--lsc-red-color);
    }

    .lsc-label.submitted {
        background: var(--lsc-amber-color);
    }

    .lsc-label.unsubmitted {
        background: var(--lsc-purple-color);
    }

    .lsc-label.active {
        background: var(--lsc-green-light-color);
    }

    

.lsc-challenges-report-label {
    min-width: 40px;
    max-width: 40px;
}

.level_box {
    text-align: center;
    background: #ea8618;
}

    .level_box.wte1 {
        background: #EA8618;
    }

    .level_box.entry_1 {
        background: #E84E1B;
    }

    .level_box.entry_2 {
        background: #CC1921;
    }

    .level_box.entry_3 {
        background: #C978AF;
    }

    .level_box.level_1 {
        background: #951b81;
    }

    .level_box.level_2 {
        background: #5b2058;
    }

    .level_box.level_3 {
        background: #951b81;
    }

.level_box, .learning_hours_box {
    background-color: #00A09A;
    color: white;
    padding: 5px;
    -moz-border-radius: .2rem;
    -webkit-border-radius: .2rem;
    border-radius: .2rem;
    font-size: 14px;
    font-family: Muli;
    font-weight: bold;
    min-width: 35px;
}

.learning_hours_box {
    background: #28225c;
}

    .learning_hours_box.learning_hours_10 {
        background: #78cadf;
    }

    .learning_hours_box.learning_hours_20 {
        background: #36a9e0;
    }

.mdc-button {
    height: 35px !important;
    min-width: 35px !important;
    max-width: 35px !important;
    width: 35px !important;
    padding: 0px !important;
}

.pagination {
    gap: 5px;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/*LSC CHALLENGE TABLE*/
.mdc-layout-grid__inner {
    overflow: hidden;
}

.learner-box {
    display: inline-block;
    background-color: #00A09A;
    color: white;
    padding: 5px;
    margin-bottom: 3px;
    -moz-border-radius: .2rem;
    -webkit-border-radius: .2rem;
    border-radius: .2rem;
    font-size: 14px;
    font-family: Muli;
    font-weight: normal;
    min-width: 35px;
    white-space: nowrap;
}

.challenge-search-page #selected-learners {
    display: flex;
    justify-content: start;
    gap: 5px;
    flex-wrap: wrap;
}

#assigned-challenges {
    max-height: 250px;
    overflow: auto;
}


/*LSC Wizard form*/
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0;
}

.wizard-step-item {
    list-style-type: none;
    padding: 10px 15px;
    font-weight: bold;
    color: #aaa;
    border-bottom: 2px solid #aaa;
}

    .wizard-step-item.active {
        color: #007bff;
        border-bottom: 2px solid #007bff;
    }

input {
    border-radius: .25rem;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}


.sudo-disabled {
    position: relative;
    pointer-events: none;
}

    .sudo-disabled::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #A2A2A2;
        opacity: 0.3;
        z-index: 1;
        border-radius: 8px;
    }

    /* Allow the Edit button to remain functional */
    .sudo-disabled .actions-container > * {
        position: relative;
        pointer-events: all;
        z-index: 2;
        opacity: 1;
    }

.asdan-label, .asdan-label-value {
    font-size: 18px;
}

.asdan-label {
    font-weight: bold;
}


/*LSC Toggle button*/
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}

.toggle-switch {
    display: none;
}

.tg-slider {
    width: 40px;
    height: 20px;
    background-color: #ccc;
    position: relative;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

    .tg-slider:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background-color: white;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: 0.3s;
    }

.toggle-switch:checked + .slider {
    background-color: #28a745;
}

    .toggle-switch:checked + .slider:before {
        transform: translateX(20px);
    }

/*DataTable selected rows*/
.mdc-data-table__table .mdc-data-table__row.selected {
    background-color: rgb(190, 21, 85, 0.1);
}

#dataTable-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 999;
    align-content: center;
    justify-content: center;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.1em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
    position: absolute;
    left: 50%;
}

#lsc-main {
    color: #5e636e;
    position: relative; /* ensures child positioning is scoped here*/
    overflow: hidden; /*hides anything that spills out */
    max-width: 100%; /*prevents it from exceeding parent width */
}

    #lsc-main .content_box {
        margin-top: 1.5rem;
    }

    #lsc-main .mdc-data-table__cell {
        padding-top: 10px;
        padding-bottom: 10px;
        color: var(--tab-text-color);
        font-weight: normal;
    }

    #lsc-main .mdc-data-table__header-cell {
        background-color: var(--lsc-content-background);
        color: var(--tab-text-color);
        font-weight: bold;
    }

.content_box-sm {
    background: var(--lsc-content-background);
    border-radius: 1.7rem;
    box-shadow: 0 5px 20px rgba(79,79,79,.1);
    padding: 1rem;
    overflow: hidden;
}

#lsc-main .content_box header h3 {
    font-size: 33px;
    font-weight: bold;
}

#lsc-main .content_box .section {
    margin-top: 1.5rem;
}


#lsc-main .content_box .input-info {
    margin-top: 1rem;
}

#lsc-main .input-info > * {
    line-height: 18px;
    margin-top: 0px;
}

#lsc-main input[type="text"], select {
    height: 60px;
}

#lsc-main input[type="text"],
#lsc-main select,
#lsc-main textarea {
    display: block;
    border-radius: 20px;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: var(--lsc-form-background-color);
    border: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


    #lsc-main input[type="text"]:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
        outline: none;
        border: 1px solid rgb(206, 212, 218);
    }


#page-header-info {
    background-color: #28225c;
    color: white;
    padding: 25px 0px;
}

    #page-header-info a {
        font-weight: bold;
        color: white;
    }

.content_box.active-box {
    box-shadow: none;
    border: 2px solid var(--lsc-pink-color);
}


#lsc-main .section-input {
    margin-bottom: 1em;
}

#lsc-main .section-value {
    min-height: 4rem;
}

#lsc-main .select2-container--default .select2-selection--multiple .select2-selection__rendered,
#lsc-main .select2-container--default .select2-selection--multiple,
#lsc-main .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
#lsc-main .select2-container--default.select2-container--focus .select2-selection--multiple {
    height: 60px;
    border-radius: 20px;
    border: none;
    background-color: var(--lsc-form-background-color);
    color: #495057;
}

#lsc-main table {
    color: #5e636e;
}


    #lsc-main table thead {
        background-color: #f9f9f9;
        border: none;
    }



#lsc-main .select2-selection__choice {
    border: none;
    border-radius: 20px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 10px;
}
/*LSC WEBSITE NAVIGATION*/
    /* Top Header Styling */
    .top-header {
    background-color: var(--lsc-content-background);
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.user-info {
    font-size: 14px;
    color: #333;
}

    .user-info a.logout {
        color: var(--lsc-pink-color);
        text-decoration: none;
        margin-left: 8px;
    }

.auth-buttons a {
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
}

.auth-buttons .sign-in {
    color: #333;
}

.auth-buttons .register-btn {
    background-color: #212063;
    color: var(--lsc-content-background);
}

/* Navigation Header Styling */
.lsc-main-navigation {
    background-color: var(--lsc-pink-color);
    color: var(--lsc-content-background);
    padding: 2em 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .nav-content a {
        color: var(--lsc-content-background);
    }

.nav-links a {
    text-decoration: none;
    margin-left: 5px;
    font-size: 20px;
}

    .nav-links a::after {
        content: "|";
        color: var(--lsc-content-background);
        margin-left: 5px; /* Space between link text and pipe */
    }

    .nav-links a:last-child::after {
        content: ""; /* Remove pipe after the last link */
    }

.content_box.bordered-box {
    border: 1px solid #A2A2A2;
}

/*CURRENT*/
.lsc-primary-button {
    background-color: var(--lsc-blue-dark-color);
    color: var(--lsc-content-background);
    font-size: 16px;
    font-weight: normal;
    border-width: 0px;
    border-radius: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 2px;
    margin-bottom: 2px;
    transition: background-color 0.3s ease;
}

    .lsc-primary-button:hover {
        background-color: #2B3083;
        color: var(--lsc-content-background);
    }

    .lsc-primary-button:focus,
    .lsc-primary-button:active {
        outline: none;
        box-shadow: none;
        background-color: var(--lsc-blue-dark-color);
        color: var(--lsc-content-background);
    }

    .lsc-primary-button:disabled {
        background-color: #ccc;
        color: #888; 
        cursor: not-allowed;  
        opacity: 0.6;
        pointer-events: none; 
    }

.lsc-secondary-button {
    background-color: var(--lsc-pink-color);
    color: var(--lsc-content-background);
    border-color: var(--lsc-pink-color);
    font-size: 16px;
    font-family: Muli;
    font-weight: normal;
    border-width: 0px;
    border-radius: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 2px;
    margin-bottom: 2px;
    border-width: 2px;
    border-style: solid;
    transition: background-color 0.3s ease;
}

    .lsc-secondary-button:hover {
        color: var(--lsc-pink-color);
        background-color: var(--lsc-content-background);
        border-color: var(--lsc-pink-color);
        border-width: 2px;
        border-style: solid;
    }

    .lsc-secondary-button:focus,
    .lsc-secondary-button:active {
        outline: none;
        box-shadow: none;
        border-color: var(--lsc-pink-color);
        background-color: var(--lsc-content-background);
        color: var(--lsc-pink-color);
    }


.lsc-cancel-button {
    background-color: var(--lsc-content-background);
    color: var(--lsc-blue-dark-color);
    font-size: 16px;
    font-family: Muli;
    font-weight: normal;
    border-width: 0px;
    border-radius: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    transition: background-color 0.3s ease;
}

    .lsc-cancel-button:hover {
        color: var(--lsc-content-background);
        background-color: var(--lsc-blue-dark-color);
    }

.lsc-link-button {
    background-color: var(--lsc-content-background);
    color: var(--lsc-blue-dark-color);
    font-size: 16px;
    font-weight: normal;
    border-width: 2px;
    border-style:solid;
    border-radius: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    transition: background-color 0.3s ease;
}

    .lsc-link-button:hover {
        color: var(--lsc-content-background);
        background-color: var(--lsc-blue-dark-color);
        border-style:none;
    }

.lsc-modal-primary-button {
    background-color: var(--lsc-blue-dark-color);
    color: var(--lsc-content-background);
    font-size: 16px;
    font-weight: bold;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    border-color: var(--lsc-blue-dark-color);
    border-radius: .2rem;
    border-style: solid;
}

    .lsc-modal-primary-button:hover {
        color: var(--lsc-blue-dark-color);
        background-color: var(--lsc-content-background);
        font-size: 16px;
        font-weight: bold;
        border-radius: .2rem;
        border-style: solid;
    }

.lsc-modal-cancel-button {
    color: var(--lsc-blue-dark-color);
    background-color: var(--lsc-content-background);
    font-size: 16px;
    font-weight: bold;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
    padding-left: 12px;
    border-color: var(--lsc-blue-dark-color);
    border-radius: .2rem;
    border-style: solid;
}

    .lsc-modal-cancel-button:hover {
        background-color: var(--lsc-blue-dark-color);
        color: var(--lsc-content-background);
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        border-radius: .2rem;
        border-style: solid;
    }

.lsc-challenge-hub-tab-button {
    border-width: 1px;
    border-style: solid;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: -2px;
    border-color: var(--tab-border-color);
    background-color: var(--lsc-content-background);
    border-bottom-color: var(--lsc-blue-dark-color);
    border-bottom-width: 2px;
    font-weight: bold;
}

.lsc-challenge-hub-tab-button-selected {
    border-width: 3px;
    border-style: solid;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: -3px;
    margin-left: 0px;
    margin-right: 0px;
    border-color: var(--lsc-blue-dark-color);
    background-color: var(--lsc-content-background);
    border-bottom-color: var(--lsc-content-background);
    border-bottom-width: 2px;
    font-weight: bold;
}

.lsc-challenge-hub-header-container {
    background-color: var(--lsc-form-background-color);
    margin-top: 50px;
    border-style: solid;
    border-bottom-width: 3px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
    border-color: var(--lsc-pink-color);
}

.lsc-challenge-feedback-available-icon {
    padding-left: 4px;
    font-size: 16px;
    color: #009E15
}

.tooltip .tooltip-inner {
    background-color: #5e636e; /* Dark gray background */
    color: var(--lsc-content-background); /* White text */
    font-size: 16px; /* Custom font size */
    padding: 10px; /* Adjust padding */
    border-radius: 18px; /* Rounded corners */
}

/* Customize the tooltip arrow */
.tooltip .tooltip-arrow::before {
    border-top-color: #333; /* Match the background color of the tooltip */
}

.lsc-home-header-text {
    color: var(--lsc-content-background);
    font-weight: bold;
    font-size: 30px
}

.lsc-dashboard-component {
    background-color: var(--lsc-content-background);
    border-radius: 18px;
    border-style: hidden;
    margin-bottom: 40px;
}

.lsc-dashboard-component-header {
    color: var(--tab-text-color);
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.lsc-dashboard-component-body {
    padding-left: 30px;
    padding-right: 30px;
}

.lsc-dashboard-component-challenge-row {
    display: flex;
    align-items: center;
    height: 100px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #707070;
}

.lsc-dashboard-component-challenge-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #707070;
}

.lsc-dashboard-component-challenge-col {
    display: flex; /* Ensure Flexbox for inner alignment */
    align-items: center; /* Vertically align content inside columns */
    justify-content: flex-start; /* Horizontal alignment, adjust if necessary */
}

.lsc-dashboard-component-challenge-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-weight: bold;
    font-size: 16px;
}

.lsc-dashboard-component-challenge-link {
    font-size: 16px;
    color: #707070
}

    .lsc-dashboard-component-challenge-link:hover {
        color: #5e636e;
    }

.lsc-count-box {
    text-align: center;
    border-color: var(--lsc-blue-dark-color);
    color: var(--lsc-blue-dark-color);
    font-size: 14px;
    font-weight: bold;
    border-width: 2px;
    border-style: solid;
    border-radius: 18px;
    padding: 5px;
    min-width: 35px
}

.lsc-dashboard-component-learner-group-link {
    font-size: 16px;
    color: #707070
}

    .lsc-dashboard-component-learner-group-link:hover {
        color: #5e636e;
    }

/**Tabbed lsc table*/
.tabbed-table .tabbed-table-wrapper .dt-container i {
    font-size: 14px;
}

.tabbed-table .tabbed-table-wrapper .dt-container button i {
    font-size: inherit;
}

.lsc-table{
    background-color: white;
}

.tabbed-table .tabbed-table-wrapper,
.lsc-table .lsc-table-wrapper {
    background-color: var(--lsc-content-background);
}



.tabbed-table .tabbed-table-wrapper .display-table {
    background-color: white;
    padding-top: 20px;
}

.tabbed-table .tabbed-table-wrapper .tabs-list a {
    color: var(--tab-text-color);
    font-weight: 600;
}

.tabbed-table .tabbed-table-wrapper .tabs-list {
    color: var(--tab-text-color);
    background-color: var(--lsc-form-background-color);
    margin-top: 25px;
    border-style: solid;
    border-bottom-width: 3px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
    border-color: var(--tab-active-border-color);
}

    .tabbed-table .tabbed-table-wrapper .tabs-list ul {
        text-align: center;
        border-radius: 10px 10px 0px 0px;
        list-style: none;
        display: flex;
        gap: 15px;
        margin: 0;
        padding: 0;
    }

        .tabbed-table .tabbed-table-wrapper .tabs-list ul li {
            border-width: 1px;
            border-style: solid;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
            padding-top: 10px;
            padding-bottom: 11px;
            padding-right: 20px;
            padding-left: 20px;
            margin-left: 0px;
            margin-right: 0px;
            margin-bottom: -3px;
            border-color: var(--tab-border-color);
            background-color: var(--lsc-content-background);
            border-bottom-color: var(--tab-active-border-color);
            border-bottom-width: 3px;
            font-weight: bold;
        }

            .tabbed-table .tabbed-table-wrapper .tabs-list ul li:hover {
                color: #1b021b;
            }

            .tabbed-table .tabbed-table-wrapper .tabs-list ul li.active {
                border-width: 3px;
                border-style: solid;
                border-top-left-radius: 18px;
                border-top-right-radius: 18px;
                padding-top: 10px;
                padding-bottom: 10px;
                padding-right: 20px;
                padding-left: 20px;
                margin-bottom: -3px;
                margin-left: 0px;
                margin-right: 0px;
                border-color: var(--lsc-pink-color);
                background-color: var(--lsc-content-background);
                border-bottom-color: var(--lsc-content-background);
                border-bottom-width: 2px;
                font-weight: bold;
                color: #1b021b;
            }

.tabbed-table .mdc-data-table, 
.lsc-table .mdc-data-table 
{
    border: none;
}

.tabbed-table .mdc-data-table__header-cell {
    font-weight: 600;
    color: var(--tab-text-color);
}

.tabbed-table .mdc-data-table__cell {
    color: var(--tab-text-color);
}

.tabbed-table.align-data-centre .mdc-data-table__cell,
.lsc-table.align-data-centre .mdc-data-table__cell {
    text-align: center;
}

.tabbed-table.align-data-left .mdc-data-table__cell,
.lsc-table.align-data-left .mdc-data-table__cell {
    text-align: left;
}

.tabbed-table.align-header-centre table thead th,
.lsc-table.align-header-centre table thead th {
    text-align: center;
}

.tabbed-table.align-header-left table thead th,
.lsc-table.align-header-left table thead th {
    text-align: left;
}


.tabbed-table label
.lsc-table label {
    margin: 0;
}

.lsc-search-field {
    font-weight: bold;
}

.lsc-confirmation-content-box {
    background-color: var(--lsc-form-background-color);
    color: var(--tab-text-color);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 300px;
    font-weight: bold;
}

.lsc-learner-challenges-content-box {
    color: var(--tab-text-color);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    min-height: 200px;
}

.lsc-navigation-button {
    color: var(--lsc-grey-color);
}

.lsc-navigation-button:hover {
    color: var(--lsc-grey-color);
}

.lsc-navigation-icon {
    color: var(--lsc-pink-color);
}

.lsc-challenge-category-box {
    height: 175px;
    width: 175px;
    border-radius: 18px;
    margin: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: filter 0.3s ease-in-out;
}

    .lsc-challenge-category-box:hover {
        filter: brightness(1.3);
    }

.lsc-amber {
    color: var(--lsc-amber-color);
}

.lsc-green {
    color: var(--lsc-green-color);
}

.lsc-pink {
    color: var(--lsc-pink-color);
}

.lsc-blue {
    color: var(--lsc-blue-color);
}

.lsc-blue-dark {
    color: var(--lsc-blue-dark-color);
}

.lsc-purple {
    color: var(--lsc-purple-color);
}

.lsc-bg-amber {
    background-color: var(--lsc-amber-color);
}

.lsc-bg-green {
    background-color: var(--lsc-green-color);
}

.lsc-bg-pink {
    background-color: var(--lsc-pink-color);
}

.lsc-bg-blue {
    background-color: var(--lsc-blue-color);
}

.lsc-bg-purple {
    background-color: var(--lsc-purple-color);
}

.lsc-box-title {
    font-weight: bold;
    font-size: 36px;
    color: var(--tab-text-color);
    padding-bottom: 5px;
}

.lsc-buttons-row {
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}


/* Positioning the container so the overlay can be absolutely placed */
.table-wrapper {
    position: relative;
    border-radius: inherit;
}

/* The overlay covers the entire table region */
.table-overlay {
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* A white overlay with slight transparency */
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999; /* on top of everything else in this container */
    display: none; /* hidden by default */
    text-align: center;
    cursor: not-allowed;
}

    /* Center the spinner icon within the overlay */
    .table-overlay .overlay-spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

#lr-learner-payment-wrapper {
    background-color: #fff;
}

/* Container for the feedback box */
.feedback-box {
    border-radius: 1.7rem;
    background: #fff;
    border: 1px solid var(--lsc-green-light-color);
    margin: 0 auto;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Title bar styling */
.feedback-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Icon (exclamation mark) styling, or replace with an SVG/icon font */
.feedback-icon {
    background-color: var(--lsc-green-light-color);
    color: #fff;
    font-weight: bold;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    margin-right: 10px;
}

/* 'You have new feedback!' heading */
.feedback-title-bar h2 {
    font-size: 1.5rem;
    color: #333;
}

/* Instruction text */
.feedback-instructions {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Container for the feedback message and date */
.feedback-message {
    margin-bottom: 15px;
    border-left: 1px solid var(--lsc-grey-color);
    padding-left: 10px;
}

/* Date text above the textarea */
.feedback-date {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feedback-checkbox{
    display: flex;
    justify-content: center;
}

.lsc-checkbox-round {
    position: relative;
}

    .lsc-checkbox-round span{
        margin-left: 20px;
    }

    .lsc-checkbox-round label.large{
        height: 28px;
        width: 28px;
    }

        .lsc-checkbox-round label.large:after {
            left: 6px;
            top: 7px;
            width: 15px;
            height: 8px;
        }

    .lsc-checkbox-round label {
        height: 18px;
        width: 18px;
        background-color: #fff;
        border: 1px solid var(--lsc-green-light-color);
        border-radius: 50%;
        cursor: pointer;
        left: 0;
        position: absolute;
        top: 0;
    }

        .lsc-checkbox-round label:after {
            border: 2px solid #fff;
            border-top: none;
            border-right: none;
            content: "";
            height: 5px;
            left: 3px;
            opacity: 0;
            position: absolute;
            top: 4px;
            transform: rotate(-45deg);
            width: 10px;
        }

    .lsc-checkbox-round input[type="checkbox"] {
        visibility: hidden;
    }

        .lsc-checkbox-round input[type="checkbox"]:checked + label {
            background-color: var(--lsc-green-light-color);
            border-color: var(--lsc-green-light-color);
        }

            .lsc-checkbox-round input[type="checkbox"]:checked + label:after {
                opacity: 1;
            }

.actions-container.flex.flex-column{
    gap: 20px;
}

.number-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--lsc-pink-color);
    color: #fff;
    font-weight: bold;
    margin: 5px;
    text-align: center;
}

.challenge-outcome-list {
    list-style-type: none;
    margin: 0;
    padding:0;
}
.challenge-outcome-list p {
    margin: 0px;
}


/* Cards container */
.summary-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* space between cards */
    justify-content: space-between;
    margin-bottom: 2rem;
}

/* Individual card */
.summary-card {
    flex: 1 1 150px; /* expand to fill space, minimum width 150px */
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0.7rem;
    padding: 1rem;
    text-align: center;
    min-width: 150px;
    max-width: 160px; /* can adjust based on design */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    /* Icon inside the card */
    .summary-card .icon {
        font-size: 1.6rem;
        color: #c2185b; /* a pink/dark-rose color, adjust as you like */
        margin-bottom: 0.5rem;
    }

/* Card text */
.summary-cards .card-title {
    font-weight: bold;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
    padding-top: 10px;
}

.summary-cards .card-value p {
    padding: 0px;
    margin: 0px;
}

/*PAYMENT FORM*/

.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 1.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
}

    .payment-option:last-of-type {
        margin-bottom: 0;
    }

    .payment-option input[type="radio"] {
        display: none;
    }

.payment-option__radio {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--lsc-pink-color); 
    border-radius: 50%;
    margin-right: 0.75rem;
    position: relative;
    flex-shrink: 0;
}

.payment-option input[type="radio"]:checked + .payment-option__radio::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: var(--lsc-pink-color);
    border-color: var(--lsc-pink-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payment-option__text {
    flex: 1;
    color: #333;
    font-size: 1rem;
}

.payment-option__icons i{
    font-size: 25px;
}

.payment-option:hover,
.payment-option input[type="radio"]:focus + .payment-option__radio {
    border-color: var(--lsc-pink-color);
}

.payment-option input[type="radio"]:checked ~ .payment-option__icons,
.payment-option input[type="radio"]:checked + .payment-option__radio {
    border-color: var(--lsc-pink-color);
}

.lsc-hero-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.lsc-hero-background-fixed {
    background-position: top; /* Start with the bottom part of the image visible */
    background-repeat: no-repeat; /* Prevents tiling */
    background-size: auto; /* Ensures the image keeps its full height */
    background-attachment: fixed; /* Makes the background appear stationary when scrolling */
    margin-bottom: -1px; /*Covers up strange white line under image in some cases*/
}

.lsc-hyperlink {
    color: var(--lsc-pink-color); 
    text-decoration: none;
    display:block;
    margin-bottom:3px;
}

    .lsc-hyperlink:hover {
        color: var(--lsc-pink-color);
        text-decoration: underline;
    }
