.dashboardWrap .leftNav .navmenu ul li a.active {
    background: #2e429b61;
    border-radius: 8px;
}
.decision-card .summary-list .summary-item .summary-link.active {
    background: white;
    color: #1e2b68 !important;
    font-weight: bold !important;
    border-radius: 5px;
}
.dashboardWrap .leftNav .navmenu ul li a:hover {
    background: #2e429b61;
    border-radius: 8px;
}
.content-section table td, .content-section table th {
    font-size: 15px;
}
.content-section h2 {
    font-size: 21px;
}
.whitesec a.btn.btn-dark {
    font-size: 14px;
    font-weight: bold;
}
a.vbtn {
    background: #d3d3d3;
    color: #000000;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
}
.whitesec
{
 background: white !important;
}
.whitesec h2,.whitesec table tr th, .whitesec table tr td
{
color: black !important;
}
td.test-name {
    width: auto !important;
}
.content-pagesec
{
    text-align: left;
}
.content-pagesec h2 {
    margin-top: 25px;
}
.content-pagesec h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.content-pagesec ul, .content-pagesec ul li {
    list-style: circle !important;
    list-style-type: disc !important;
}
a.btn-primary-blue.small.text-decoration-none.white-btn {
    background: white;
    color: #2e429b;
    font-weight: bold;
}
.question-card.mb-3.questionform {
    position: relative;
}
form.deleteformsec {
    position: absolute;
    right: 6%;
    top: 15px;
    width: 50px;
    cursor: pointer;
}

.ai-loader-wrap{
    padding:40px 20px;
    text-align:center;
}

.ai-loader-box{
    max-width:500px;
    margin:auto;
}

.ai-loader-box h4{
    font-size:22px;
    font-weight:700;
    margin-top:25px;
    margin-bottom:10px;
    color:#1c3f95;
}

.ai-loader-box p{
    color:#6b7280;
    font-size:15px;
    margin-bottom:25px;
}

.ai-brain{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}

.ai-brain span{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#1c3f95;
    animation:brainPulse 1.4s infinite ease-in-out;
}

.ai-brain span:nth-child(2){
    animation-delay:0.2s;
}

.ai-brain span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes brainPulse{
    0%, 80%, 100%{
        transform:scale(0.7);
        opacity:0.5;
    }

    40%{
        transform:scale(1.2);
        opacity:1;
    }
}

.ai-progress{
    width:100%;
    height:10px;
    background:#e5e7eb;
    border-radius:30px;
    overflow:hidden;
    margin-top:20px;
}

.ai-progress-bar{
    width:40%;
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#1c3f95,#5ba7ff);
    animation:loadingBar 1.5s infinite;
}
.test-info-wrapper {
    position: relative;
    display: inline-block;
}

.info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    border-radius: 50%;
    background: #1e4db7;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}

.custom-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #1c1c1c;
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
    width: 220px;
    font-size: 12px;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
    text-align: left;
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #1c1c1c transparent transparent transparent;
}

.info-icon:hover .custom-tooltip {
    opacity: 1;
    visibility: visible;
}
.results-info-card {
    background: #f8f8f8;
    border-radius: 25px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.results-info-card h4 {
    color: #243c92;
    font-size: 28px;
    font-weight: 700;
}

.journey-chart {
    position: relative;
    height: 280px;
}

#journeyChart {
    width: 100% !important;
    height: 100% !important;
}
.feeling-circle.full.amber {
    background-color: #FFB81C !important;
}
.feeling-circle.full.grey {
    background-color: #BFBFBF !important;
}
.feeling-circle.full.green {
    background-color: #00703C !important;
}
.feeling-circle.full.red {
    background-color: #DA291C !important;
}
.feeling-circle.half.grey {
    background: conic-gradient(var(--color-review) 180deg, var(--color-yellow) 0);
    font-size: 15px;
    font-weight: 400;
}

.slidepanelList li span {
    width: 30px;
    height: 30px;
    background: #2E429B;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5px;
    margin-right: 15px;
}

@keyframes loadingBar{
    0%{
        margin-left:-40%;
    }

    100%{
        margin-left:100%;
    }
}