@font-face {
    font-family: 'ProximaNova-Black';
    src: url('../ProximaNova/proximanova-black-webfont.woff') format('opentype');
}

@font-face {
    font-family: 'ProximaNova-Light';
    src: url('../ProximaNova/proximanova-light-webfont.woff') format('opentype');
}

@font-face {
    font-family: 'ProximaNova-Bold';
    src: url('../ProximaNova/proximanova-bold-webfont.woff') format('opentype');
}

@font-face {
    font-family: 'ProximaNova-Semibold';
    src: url('../ProximaNova/proximanova-semibold-webfont.woff') format('opentype');
}

@font-face {
    font-family: 'ProximaNova-Medium';
    src: url('../ProximaNova/proximanova-medium-webfont.woff') format('opentype');
}

@font-face {
    font-family: 'ProximaNova-Regular';
    src: url('../ProximaNova/proximanova-regular-webfont.woff') format('opentype');
}

:root {
    --font-semibold: 'ProximaNova-Semibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: 'ProximaNova-Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
    font-weight: 100;
    margin-top: 28px;
    font-family: var(--font-semibold);
}

.v-application {
    font-family: inherit;
    line-height: inherit;
}

.v-tooltip__content {
    position: absolute;
    pointer-events: none;
    line-height: 22px;
    padding: 5px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid gray;
    color: black;
    border-radius: 4px;
    font-size: 14px;
}

nav ul a {
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(44, 63, 107);
}

nav ul a:after {
    transform: scaleX(0);
    border-bottom: 2px solid #ffa9a9;
    content: '';
    display: block;
    transition: transform 0.25s ease-in-out;
}

nav ul a:hover:after {
    transform: scaleX(1);
}

.warn {
    border: 1px solid darkred;
    background: #ffbbbb;
    margin: 10px;
    padding: 10px;
}

.gray {
    color: #666;
}

.passed {
    background: #ffbbbb;
}

.breathe {
    animation: breathing 5s ease-out infinite normal;
}

@keyframes breathing {
    0% {
        background-color: transparent;
    }

    25% {
        background-color: #ffbbbb;
    }

    60% {
        background-color: #ffbbbb;
    }

    100% {
        background-color: transparent;
    }
}

.admin {
    background-image: url('/img/crown.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: mistyrose;
}

.platformAdmin {
    background-color: indianred;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: mistyrose;
}

.list-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.mentee-stats {
    display: flex;
    justify-content: space-between;
}

.mentee-stats-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
}
.mentee-stats-group:first-of-type {
    padding-left: 0;
}

.mentee-stats-label {
    font-weight: bold;
}

.mentee-stats-value {
    font-weight: bold;
}

.mentee-stats-value.stage,
.mentee-stats-value.text {
    font-weight: normal;
}

.nl-card-title,
.presentation-title {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    white-space: nowrap;
}

.nl-card-subtitle {
    display: flex;
    white-space: nowrap;
}

.nl-card-mentor-name {
    font-size: 13px;
    line-height: 13px;
}

.nl-card-addition {
    font-size: 11px;
    line-height: 11px;
}

.nl-card-classification-status {
    padding: 6px 0;
    cursor: pointer;
}

.nl-card-classification-status .classification-title {
    font-size: 13px;
}

.classification-value-container {
    display: flex;
    height: 22px;
    position: relative;
}

.classification-value-block {
    display: inline-block;
    background-color: #c6c6ff;
    color: black;
    border-radius: 8px;
    font-size: 12px;
    margin: 2px 2px;
    cursor: pointer;
    position: absolute;
    top: 0;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0);
}

.classification-value-block.open {
    padding: 2px 4px;
    z-index: 2;
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.2);
}

.classification-value-block .classification-value {
    background-color: #a29aff;
    padding: 2px 4px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-wrap: nowrap;
}

.classification-value-block .classification-option {
    border-radius: 8px;
    font-size: 12px;
    max-height: 0px;
    transition: all 0.5s ease;
    padding: 0px;
    overflow: hidden;
    text-wrap: nowrap;
}

.classification-value-block .classification-option.show {
    padding: 2px 4px;
    max-height: 22px;
}

.strikethrough {
    text-decoration: line-through;
}

.input-matching-label {
    position: relative;
    background-color: green;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    color: white;
    margin-bottom: 3px;
}

.input-different-label {
    position: relative;
    background-color: blue;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    color: white;
    margin-bottom: 3px;
}

.nl-card .final-value {
    font-size: 22px;
    font-weight: bold;
}

.nl-card .time-on-level {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.nl-card.archived {
    opacity: 0.5;
    background-color: #eee;
}

.nl-card .nl-card-image {
    width: 120px;
    min-width: 120px;
    height: 120px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 6px;
}

.nl-card .nl-card-image--small {
    width: 75px;
    min-width: auto;
    height: auto;
    background-position: center;
    background-size: cover;
}

.nl-card .nl-card-content {
    flex-grow: 1;
    margin: 9px;
    min-width: 0;
}

.nl-card-wrapper {
    display: flex;
}

.nl-card {
    display: inline-block;
    width: 354px;
    margin: 8px;
    border: 1px solid darkgray;
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.2);
    background-color: white;
}

h5.question {
    font-size: 18px;
    font-family: var(--font-semibold);
}

.nl-card-stats {
    display: flex;
    align-items: center;
    margin-top: 8px;
    line-height: 1;
}

.nl-card:hover {
    background-color: #e0d9ed;
}

.value-box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 4px;
}

.value-box-headline {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: bold;
}

.value-box .previousStage {
    font-size: 12px;
    text-align: center;
}

.value-box a {
    color: black;
}

ul {
    margin: 0 16px;
}

.tag {
    display: inline-block;
    background-color: #888;
    color: white;
    padding: 2px 4px;
    border-radius: 8px;
    font-size: 12px;
    margin: 2px 2px;
}

.level {
    display: inline-block;
    min-width: 34px;
    max-height: 29px;
    margin-right: 0.5rem;
    margin-left: 0.25rem;
    padding: 4px 6px;
    background-color: #354673;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

.click-icon {
    padding: 4px;
    font-size: 20px;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
}

.timerContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: 20px;
    margin-bottom: 20px;
    z-index: 11;
}

.timerContainer .timerButton {
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    background-color: white;
    font-size: 28px;
    border: 1px solid darkgray;
    padding: 5px;
    color: #666;
    position: absolute;
    bottom: 0;
    left: 0;
}

.btn-headline {
    margin-left: 12px;
}

.timerContainer .timer {
    position: absolute;
    bottom: 8px;
    left: 48px;
    white-space: nowrap;
    background: white;
    border: 1px solid darkgray;
    border-radius: 4px;
    padding: 3px 5px;
    padding-left: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #666;
}

.timerContainer .timer span {
    margin-right: 5px;
}

.modal-close {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
}

.nl-modal {
    min-height: 100%;
    background-color: white;
    padding: 40px;
}

.clickable {
    cursor: pointer;
}

.profileImage {
    margin: 10px;
}

.profileImage img {
    height: 32px;
}

.listCell,
.headCell {
    border: 1px solid gray;
    padding: 0 4px;
    vertical-align: bottom;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5px;
}

.listCell {
    align-items: flex-start;
}

.headCell {
    background: #eee;
    text-align: center;
    font-size: 20px;
    padding: 5px;
}

.headRow,
.listRow {
    display: flex;
}

.a2 {
    background-color: #efefef;
}

.listCell.dot {
    text-align: center;
    font-size: 20px;
    justify-content: center;
    align-items: center;
}

.listCell.timeOnLevel span {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.listCell.timeOnLevel span.decimals {
    font-size: 15px;
    font-weight: normal;
}

.listCell .adeptCardInfo {
    line-height: 1;
    align-self: center;
}

.listCell .adeptName {
    font-size: 16px;
    font-weight: bold;
}

.listCell .mentorName {
    font-size: 12px;
}

.listCell .adeptOffice {
    font-size: 12px;
}

.title {
    font-size: 20px;
    display: block;
    text-align: center;
    margin-top: 5px;
}

.number {
    font-size: 45px;
    font-weight: bold;
    text-align: center;
}

@media only screen and (max-width: 995px) {
    .desktop {
        display: none;
    }
}

@media only screen and (min-width: 996px) {
    .mobile {
        display: none;
    }
}

.dotted {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pollRow .imageContainer {
    flex: 0 0 60px;
    padding: 0;
}

.pollRow .imageContainer.compact {
    flex: 0 0 50px;
    max-width: 50px;
}

.pollRow .imageContainer .image {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pollRow .imageContainer .image.compact {
    width: 50px;
    height: 50px;
}

.pollRow .stage {
    flex: 0 0 170px;
    justify-content: center;
    align-items: center;
}

.pollRow .stage.compact {
    flex: 0 0 140px;
    justify-content: center;
    align-items: center;
}

.pollRow .mentor {
    flex: 0 0 40px;
    justify-content: center;
    align-items: center;
}

.pollRow .mentor.compact {
    flex: 0 0 35px;
    max-width: 35px;
}

.pollRow .dot {
    flex: 0 0 50px;
}

.pollRow .dot.compact {
    flex: 0 0 35px;
    max-width: 35px;
}

.outdated {
    opacity: 0.5;
}

.outdated .badge {
    background-color: #444;
    cursor: pointer;
    color: white;
    padding: 2px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: bold;
    position: absolute;
    top: -4px;
    right: -4px;
    font-family: 'ProximaNova-Semibold';
}

.outdated .badge span.hidden {
    max-width: 0px;
    display: inline-block;
    overflow: hidden;
    transition: all 0.5s ease;
}

.outdated .badge span.open {
    max-width: 200px;
}

.form-control,
.form-control:focus {
    color: black;
}

.btn-primary {
    background-color: #6664f1;
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    text-decoration: none;
    background-color: #2b2b95;
}

.btn-primary:disabled {
    background-color: #6664f1;
    opacity: 0.5;
}

.btn-secondary {
    background-color: white;
    color: #6664f1;
    border: 1px solid #6664f1;
}

.btn-secondary:hover,
.btn-primary:focus {
    text-decoration: none;
    background-color: rgb(243 245 248 / 1);
    color: #6664f1;
}

.btn-secondary:disabled {
    background-color: white;
    opacity: 0.5;
}

#confettiCanvas {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    pointer-events: none;
}

.mentee-navigation {
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.mentee-navigation .nl-card-wrapper {
    cursor: pointer;
}

.mentee-navigation--next {
    right: 0;
}

.mentee-navigation--prev {
    left: 0;
}

.inactive {
    filter: saturate(0);
    opacity: 0.3;
}

.app-switcher-button {
    color: #fff;
    background-color: #6559ff;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 13px;
    white-space: nowrap;
    margin: 1px 12px 1px 0px;
    font-weight: 700;
    line-height: 1.75;
    text-transform: none;
    display: block;
}

.app-switcher-button span.mdi {
    margin-right: 3px;
}

.app-switcher-button:hover {
    background-color: #4a49cb;
    color: white;
    box-shadow:
        0px 2px 4px -1px rgba(0, 0, 0, 0.2),
        0px 4px 5px 0px rgba(0, 0, 0, 0.14),
        0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.multiselect__option--highlight,
.multiselect__option--highlight:after,
.multiselect__tag {
    background-color: #4a49cb;
    color: white;
}

table.datatable {
    border: 1px solid darkgray;
}

table.datatable th {
    padding: 2px 10px;
    border: 1px solid darkgray;
    background-color: lightgray;
}

table.datatable td {
    padding: 2px 10px;
    border: 1px solid darkgray;
}

.questionContainer pre code {
    white-space: pre-line;
}

.questionContainer img {
    width: 100%;
}

.multipane {
    width: 100%;
}

.multipane > .multipane-resizer {
    margin: 0;
    left: 0;
    position: relative;
    &:before {
        display: block;
        content: '';
        width: 3px;
        height: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -20px;
        margin-left: -1.5px;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
    }
    &:hover {
        &:before {
            border-color: #999;
        }
    }
}

table.explanationTable {
    margin-bottom: 12px;
}

table.explanationTable th {
    padding: 0 4px;
}

.mentee-facts {
    display: flex;
    padding: 1rem;
}

.mentee-facts .right-box {
    padding: 0 12px;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
}

.mentee-facts .right-box .right-box-bottom,
.mentee-facts .right-box .right-box-top {
    display: flex;
    flex-direction: row;
}

.mentee-facts .stage-selector .stage-list .classification-value {
    display: flex;
    background-color: #c6c6ff;
    padding: 2px 4px;
    border-radius: 8px;
    font-size: 16px;
    text-wrap: nowrap;
    margin: 4px 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}
.mentee-facts .stage-selector .stage-list .classification-value:first-of-type {
    margin-top: 0;
}

.mentee-facts .stage-selector .stage-list .classification-value .name {
    flex: 1;
    padding: 0 4px;
}

.mentee-facts .stage-selector .stage-list .classification-value.activeSelection {
    font-weight: bold;
    border: 2px solid black;
    opacity: 1;
    transform: scale(1.1);
}

.mentee-facts .stage-selector .stage-list .classification-value .checkMark {
    transform: scale(1) rotate(0deg);
    transition: all 0.5s ease;
}

.mentee-facts .stage-selector .stage-list .classification-value.finalSelection .checkMark {
    transform: scale(1.7) rotate(5deg);
}

.groupHeadline {
    margin-top: 18px;
    padding-top: 6px;
    border-top: 1px solid darkgray;
}

.stageDescription {
    max-width: 600px;
    font-size: 0.8em;
    margin-top: -8px;
    margin-bottom: 8px;
}

.unfolder {
    cursor: pointer;
    display: inline-block;
    background-color: #888;
    color: white;
    padding: 2px 4px;
    border-radius: 8px;
    font-size: 12px;
    margin: 2px 2px;
}

.ccbExplanation {
    background-color: #eee;
    border-radius: 8px;
    padding: 0px;
    max-height: 0;
    transition: all 0.5s ease;
    overflow: hidden;
}

.ccbExplanation.open {
    max-height: 2000px;
    padding: 12px;
}

.ccbExplanation .description {
    vertical-align: top;
    text-align: justify;
    padding: 0 6px;
}

.ccbExplanation .ccbTable {
    display: flex;
    flex-flow: column nowrap;
}

.ccbExplanation .ccbRow {
    display: flex;
}

.ccbExplanation .ccbCell {
    display: flex;
    flex: 1;
    text-align: justify;
}

.ccbExplanation .ccbSpacer {
    width: 30px;
}

.menteePresentationDetails .image {
    width: 130px;
    height: 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.menteePresentationDetails {
    font-size: 16px;
}

.menteePresentation .label {
    font-size: 16px;
    font-family: var(--font-semibold);
}

.menteePresentation .small {
    font-size: 13px;
}

.mentee-presentation-stats th {
    padding: 2px 6px;
}

.presentationModalContainer {
    z-index: 3;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    padding: 6px;
    top: 0;
    left: 0;
    width: 100lvw;
    height: 100lvh;
}

.presentationModalContainer .presentationModal {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.176);
    background-color: white;
    @media only screen and (min-width: 800px) {
        width: 50rem;
    }
}

.presentationModalContainer .paragraph {
    padding-bottom: 12px;
}

.alertBox {
    border-radius: 6px;
    border: 1px solid #ea868f;
    background-color: #f8d7da;
    padding: 9px;
    display: flex;
}

.finalInfoAlert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ccf5ff;
    border: 1px solid #b3ecff;
    border-radius: 6px;
    padding: 10px 16px;
    color: #333;
}

.edit-link {
    background: none;
    border: none;
    color: #1890ff;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.alert-text {
    flex: 1;
    font-weight: 500;
}

.finalInfoAlert .finalQuestion p {
    margin-bottom: 0;
}

.custom-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: start;
    justify-content: center;
    z-index: 1000;
}

.custom-modal {
    background: white;
    border-radius: 8px;
    box-shadow:
        0 11px 15px -7px rgba(0, 0, 0, 0.2),
        0 24px 38px 3px rgba(0, 0, 0, 0.14),
        0 9px 46px 8px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 500px;
    margin: 24px;
}

.custom-modal-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.custom-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
}

.close-button {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.2s;
}

.close-button:hover {
    color: rgba(0, 0, 0, 0.87);
}

.custom-modal-content {
    padding: 24px 24px 16px 24px;
    line-height: normal;
}

.custom-modal-actions {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-cancel {
    background: #d3d3d3;
    color: black;
}

.btn-cancel:hover,
.btn-cancel:focus {
    text-decoration: none;
    background-color: #939393;
}

.presentationPane,
.presentationMenteeStats {
    background-color: rgba(0, 0, 0, 0.05);
}

.presentationPane .questionContainer {
    margin: 12px;
    background-color: white;
    padding: 12px;
}

.presentationPane .questionContainer h2 {
    font-size: 16px;
    margin: 0;
}

.presentationPane .questionContainer h3 {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

.presentationPane .questionContainer .answer {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.presentationPane .questionContainer .answer.show {
    margin-top: 0.5rem;
    max-height: 1000px;
    transition: all 0.5s ease;
}

.presentationMenteeStats {
    margin-top: 20px;
}

.dateRow.active {
    font-weight: bold;
}

/* General Table Styles */
.mentee-compensation .table {
    width: 100%;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: Arial, sans-serif;
}

/* Main and Detail Rows */
.mentee-compensation .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.mentee-compensation .row:last-child {
    border-bottom: none;
}

.mentee-compensation .row.highlight {
    background-color: #f4f4f4;
}

.mentee-compensation .detail-row {
    background-color: #f9f9f9;
    font-size: 0.9em;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.mentee-compensation .label,
.mentee-compensation .detail-label {
    flex: 2.5;
    text-align: left;
}

.mentee-compensation .values {
    display: flex;
    flex: 3; /* Flex for the Current and New Columns */
    justify-content: space-between;
    text-align: left;
}

.mentee-compensation .small {
    flex: 1;
    text-align: left;
    font-size: 14px;
}

.mentee-compensation .info {
    flex: 0.5;
    text-align: right;
}

.mentee-compensation .info button {
    background: none;
    border: none;
    font-size: 0.9em;
    color: #6664f1;
    cursor: pointer;
}

.mentee-compensation .info button:hover {
    text-decoration: underline;
}

.mentee-compensation .values div,
.mentee-compensation .detail-row .values div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mentee-compensation .sub-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Pop up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.popup h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    margin-top: 0;
}

.popup p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.popup button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.popup .secondary-button {
    background: #f5f5f5;
    color: #555;
}

.popup .primary-button {
    background: #635cff;
    color: white;
    opacity: 0.6;
    cursor: not-allowed;
}

.popup .primary-button.active {
    opacity: 1;
    cursor: pointer;
}

/* Stepper */
.stepper {
    display: flex;
    flex-direction: row !important;
    align-items: center; /* Aligns items in a horizontal row */
    justify-content: center; /* Centers content horizontally */
    gap: 10px; /* Adds spacing between buttons and display */
}

.stepper-button {
    font-size: 18px;
    font-weight: bold;
    width: 5px;
    height: 40px;
    background: none;
    border: none;
    color: #635cff;
    display: flex; /* Align button content to center */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.stepper-button:disabled {
    color: #c0c0c0; /* Disabled state for buttons */
    cursor: not-allowed;
}

.stepper-display {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 15px;
    background: #635cff;
    color: white;
    border-radius: 20px;
    text-align: center;
    line-height: 30px; /* Align text vertically within the container */
}

.nl-card.excluded {
    position: relative;
    filter: grayscale(100%);
    opacity: 0.7;
}

.nl-card.excluded::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5);
    border-radius: 8px;
    pointer-events: none;
}

.nl-card.excluded::before {
    content: 'Excluded from Level Alignment';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

.presentation-question-details {
    margin-bottom: 1rem;
}

.presentation-question-details[open]::details-content {
    padding-left: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.presentation-edit-section {
    margin-bottom: 2rem;
}

.presentation-edit-section:last-child,
.presentation-edit-section:only-child {
    margin-bottom: 0;
}

.touchpoints-container {
    display: flex;
    flex-wrap: wrap; /* Allows items (touchpoints) to wrap to the next row */
    gap: 0.5rem; /* Adds spacing between touchpoint items */
    margin-top: 0.25rem;
}

.touchpoint-item {
    background-color: #f8f9fa; /* Light gray background like in the image */
    padding: 0.1rem 1rem; /* Padding to make it look like a pill */
    border-radius: 0.25rem; /* Rounded corners to give it the pill effect */
    border: 1px solid #e9ecef; /* Subtle light border */
    white-space: nowrap; /* Prevent text from breaking into multiple lines */
}

.nl-card h4 {
    margin-top: 0px;
}

.mentee-status-bar {
    font-size: 12px;
    padding: 2px;
    text-align: center;
    width: 100%;
    font-family: var(--font-semibold);
}

.mentee-status-bar.flagged {
    background-color: #fff766;
}

.mentee-status-bar.finalized {
    background-color: #e9f4e8;
}

.mentee-status-bar.finalized_missing {
    background-color: white;
}

.mentee-status-bar.presentation_missing {
    background-color: #ffa45a;
}

.mentee-status-bar.progress_missing {
    background-color: #f6753e;
}
