@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary-color: #1964ac !important; 
    --primary-600: #4CA6FF !important; 
    --secondary-color: #4ca6ff !important;
    --text-primary: #111418;
    --text-secondary: #617589;
    --primary-color-hover: #4ca6ff;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
body{
    font-family: 'Poppins', sans-serif;
}

/* Shared hover/focus tooltips */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::before,
[data-tooltip]::after {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1200;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
[data-tooltip]::after {
    content: attr(data-tooltip);
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translate(-50%, 4px);
    background: #ffffff;
    color: #1964ac;
    font-size: 0.75rem;
    line-height: 1.35;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 0.5rem;
    padding: 0.4rem 0.6rem;
    width: max-content;
    max-width: min(18rem, 70vw);
    white-space: normal;
    text-align: center;
    border: 1px solid #c8def5;
    box-shadow: 0 8px 20px rgba(25, 100, 172, 0.16);
}
[data-tooltip]::before {
    content: "";
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translate(-50%, 4px);
    border-width: 6px 5px 0 5px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}
[data-tooltip]:hover::before,
[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::before,
[data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}
[data-tooltip][data-tooltip-position="bottom"]::after {
    top: calc(100% + 10px);
    bottom: auto;
    transform: translate(-50%, -4px);
}
[data-tooltip][data-tooltip-position="bottom"]::before {
    top: calc(100% + 4px);
    bottom: auto;
    transform: translate(-50%, -4px);
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent #ffffff transparent;
}
[data-tooltip][data-tooltip-position="left"]::after {
    right: calc(100% + 10px);
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translate(4px, -50%);
}
[data-tooltip][data-tooltip-position="left"]::before {
    right: calc(100% + 4px);
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translate(4px, -50%);
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #ffffff;
}
[data-tooltip][data-tooltip-position="right"]::after {
    left: calc(100% + 10px);
    top: 50%;
    bottom: auto;
    transform: translate(-4px, -50%);
}
[data-tooltip][data-tooltip-position="right"]::before {
    left: calc(100% + 4px);
    top: 50%;
    bottom: auto;
    transform: translate(-4px, -50%);
    border-width: 5px 6px 5px 0;
    border-color: transparent #ffffff transparent transparent;
}
[data-tooltip][data-tooltip-position="bottom"]:hover::before,
[data-tooltip][data-tooltip-position="bottom"]:hover::after,
[data-tooltip][data-tooltip-position="bottom"]:focus-visible::before,
[data-tooltip][data-tooltip-position="bottom"]:focus-visible::after {
    transform: translate(-50%, 0);
}
[data-tooltip][data-tooltip-position="left"]:hover::before,
[data-tooltip][data-tooltip-position="left"]:hover::after,
[data-tooltip][data-tooltip-position="left"]:focus-visible::before,
[data-tooltip][data-tooltip-position="left"]:focus-visible::after {
    transform: translate(0, -50%);
}
[data-tooltip][data-tooltip-position="right"]:hover::before,
[data-tooltip][data-tooltip-position="right"]:hover::after,
[data-tooltip][data-tooltip-position="right"]:focus-visible::before,
[data-tooltip][data-tooltip-position="right"]:focus-visible::after {
    transform: translate(0, -50%);
}

/* Use JS floating tooltip layer to avoid clipping inside overflow containers */
.js-tooltips-active [data-tooltip]::before,
.js-tooltips-active [data-tooltip]::after {
    display: none !important;
}

.hx-tooltip-pop {
    position: fixed;
    z-index: 4000;
    pointer-events: none;
    background: #ffffff;
    color: #1964ac;
    border: 1px solid #c8def5;
    border-radius: 0.5rem;
    box-shadow: 0 10px 22px rgba(25, 100, 172, 0.18);
    padding: 0.42rem 0.62rem;
    font-size: 0.75rem;
    line-height: 1.35;
    font-weight: 600;
    max-width: min(18rem, 70vw);
    text-align: center;
    white-space: normal;
}

.hx-tooltip-pop[hidden] {
    display: none !important;
}

.hx-tooltip-pop::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 1px solid #c8def5;
    transform: rotate(45deg);
}

.hx-tooltip-pop[data-position="top"]::after {
    left: 50%;
    bottom: -5px;
    margin-left: -4px;
    border-top: 0;
    border-left: 0;
}

.hx-tooltip-pop[data-position="bottom"]::after {
    left: 50%;
    top: -5px;
    margin-left: -4px;
    border-right: 0;
    border-bottom: 0;
}

.hx-tooltip-pop[data-position="left"]::after {
    right: -5px;
    top: 50%;
    margin-top: -4px;
    border-left: 0;
    border-bottom: 0;
}

.hx-tooltip-pop[data-position="right"]::after {
    left: -5px;
    top: 50%;
    margin-top: -4px;
    border-top: 0;
    border-right: 0;
}
main{
    background: #F6FAFF !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
header{
    z-index: 9;
    box-shadow: 0 6px 16px rgb(0 0 0 / 8%);
    position: relative;
}
.profile{
    background: #1964ac !important;
}
.hxcard{
    background: #fff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.tab.active {
    border-bottom: 2px solid #1964ac;
    border-radius: 0;
}
.tab:hover {
    border-bottom: 2px solid #1964ac;
    border-radius: 0;
    background: none !important;
}
h2{
    font-size: 1.5rem !important;
}
.gradbtn{
    background: linear-gradient(#1964AC,#4CA6FF);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 500;
}
.tab-active{
    color: #fff !important;
    border: none;
    background: #1964ac;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    border-bottom: none;
}
.tabbtn {
    border: 0.1rem solid #eaeaea;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem !important;
}
.tabbtn:hover{
    color: #1964ac !important;
    border: none;
    background: #F6FAFF;
    /* margin-bottom: 0.5rem; */
    /* padding: 0.5rem 1rem; */
    border-radius: 0.5rem;
}
.centcount{
    text-align: center;
}
table thead{
    background: #1964AC !important;
}
table thead th{
    color: #fff !important;
    font-weight: 500 !important;
}
table .checkr{
    padding-right: 0;
}
table .checkl{
    padding-left: 0.8rem;
}
.hxctab{
    padding: 0 1rem !important;
}
.hxctab2{
    padding-bottom: 0 !important;
}
table tr{
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    margin-bottom: 0.5rem;
    cursor: pointer;
}
.counts{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    z-index: 0;
}
.counts > *{
    pointer-events: none;
}
.counts::before{
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -16px;
    left: -10px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.logo{
    width: 6rem;
}
.login-bg{
    background: url('./images/login.png');
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: right;
}
.login-bg p{
    display: none;
}
.login-bg h3{
    font-weight: 500;
    width: 15rem;
}
.login-bg .content{
    position: absolute;
    top: 13rem;
    left: 4rem;
}
.login-bg .logo{
    width: 8rem;
}
.logincontent .logo{
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem 0;
    width: 7rem;
}
#main-sidebar{
    background: linear-gradient(#1964ac, #4ca6ff);
}
#main-sidebar a{
    color: #fff;
}
.titledash{
    text-transform: uppercase;
    font-weight: 600 !important;
    padding: 1rem 0 0 1rem;
    color: #d1d1d1;
}
.dash-logo .logo{
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem 0;
    width: 7rem;
}
#main-sidebar a:hover {
    color: #000000;
}
#dark-mode-toggle{
    color: #fff;
}
#dark-mode-toggle:hover{
    background: #000;
}
.dashboard h1{
    font-size: 1.5rem;
    line-height: 1.8rem;
}
.dashboard h2{
    font-size: 1.2rem !important;
}
.dashboard h3{
    font-size: 1rem;
}
.bg-gray-100{
    color: #000 !important;
}
.bg-orange-100{
    color: #f59e0b !important;
    background: #ffefd5;
}
.mar0{
    margin-top: 0 !important;
}
.marb0{
    margin-bottom: 0 !important;
}
.form-head{
    display: flex;
    align-items: center;
}
.form-head i{
    color: #1964ac;
    padding-right: 0.5rem;
}
.form-head h3{
    font-weight: 600;
}
.schforms{
    background: #F6FAFF;
    border-radius: 1rem;
    border-left: 0.3rem solid #1964ac;
    margin-bottom: 1rem;
}
.schforms input {
    border: 0.1rem solid #579EE2;
    padding: 0.5rem;
}
#custom-id-prefix{
    line-height: 1rem !important;
    font-size: 0.8rem;
}
#scheduleForm .p-3{
    padding: 0.5rem !important;
}
.schforms textarea{
    border: 0.1rem solid #579EE2;
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}
.schforms input::placeholder {
    font-size: 0.8rem;
}
.schforms span {
    font-size: 0.9rem;
    border-radius: 0.5rem 0 0 0.5rem;
}
.schforms select{
    border: 0.1rem solid #579ee2;
}
.schforms .delbtn{
    background: #D31E1E;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}
#scheduleForm .delbtn{
    background: #D31E1E;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}
#scheduleForm .delbtn span{
    margin: 0;
    font-size: 1rem;
    padding: 0;
}
#scheduleForm .delbtn:hover{
    border: 0.1rem solid #d31e1e;
    background: #fff;
    color: #d31e1e;
}
.schforms .delbtn span{
    margin: 0;
    font-size: 1rem;
    padding: 0;
}
.schforms .gradbtn .material-symbols-outlined {
    color: #fff;
    font-size: 1rem;
    padding: 0;
    margin: 0;
}
.schforms .delbtn:hover {
    border: 0.1rem solid #d31e1e;
    background: #fff;
    color: #d31e1e;
}
#drop-zone{
    border: 0.1rem dashed #1964ac;
}
#drop-zone button{
    background: #1964ac;
}
.aibox{
    background: linear-gradient(45deg, #1964ac, #4ca6ff);
}
.aibox span{
    color: #fff;
}
.aibox h3{
    color: #fff;
}
.aibox p{
    color: #1964ac;
}
.aibox textarea{
    border: 0.1rem solid #579EE2;
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}
.aibox select{
    border: 0.1rem solid #579ee2;
}
.aibox .gradbtn span{
    color: #fff;
}
#profile-initials{
    color: #fff !important;
}
#user-form input {
    border: 0.1rem solid #579EE2;
    margin-top: 0.5rem;
    padding: 0.5rem;
}
#user-form input::placeholder {
    font-size: 0.8rem;
}
#profileForm input {
    border: 0.1rem solid #579EE2;
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}
#profileForm input::placeholder {
    font-size: 0.8rem;
}
.header-stats{
    text-align: left !important;
    width: 65%;
}
.borcard {
    background: #F6FAFF;
    border-radius: 1rem;
    border-left: 0.3rem solid #1964ac;
    padding: 1rem;
}
.borcard h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1964ac;
    margin-bottom: 0.3rem;
}
.untime{
    border: 0.1rem solid #b2b2b2;
    padding: 0.3rem;
    border-radius: 0.5rem;
}
#cancelButton {
    margin-right: 1rem;
}
#editForm #addQuestionBtn {
    margin-top: 1rem;
}
#editForm input {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}
#editForm textarea {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
}
#editForm select {
    margin-top: 0.5rem;
    padding: 0.5rem;
}
#editForm .delbtn{
    background: #D31E1E;
    color: #fff !important;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}
#editForm .delbtn:hover{
    border: 0.1rem solid #d31e1e;
    background: #fff;
    color: #d31e1e !important;
}
#editForm .delbtn span {
    font-size: 1rem;
}
.formspace{
    margin: 1rem 0;
}
#editForm .relative span{
    display: none;
}
#scheduleForm .relative span{
    display: none;
}
.w-48{
    width: 10rem !important;
}
.aibox select {
    margin-top: 0.5rem;
}

/* .tabbox-active{
    background: #F6FAFF !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    margin: 1rem 0;
    color: #1964ac !important;
} */
#job-description{
    font-family: 'Poppins', sans-serif;
    color: #1f1f1f;
    background: #f5f9ff;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.tab-cont{
    overflow-y: auto;
    height: 35rem;
    margin-bottom: 0.5rem;
}
.quests{
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.7;
}
#submission-list select{
    border: 0.1rem solid #1964ac;
}

#save-draft-btn {
    margin-top: 0;
    background: #dcce47 !important;
    margin-right: 1rem;
    padding: 0.63rem 1rem;
}

.btnpos{
    margin: 0 0 0 auto;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 34%;
}
#allowRerecord{
    margin-top: 0 !important;
    color: #1964ac !important;
}
.px-10{
    padding-left: 1.5rem;
}
table .px-10{
    padding-left: 1.5rem !important;
}
.tab-active span {
    background: #fff;
    box-shadow: 0 0 0.5rem #e8e8e8;
}
table tr:hover .text-gray-500 {
    color: #1964ac;
}
table tbody tr:hover {
    background: #f3f9ff !important;
}
.gradbtn{
    background-color: var(--primary-600) !important;
    color: white !important;
}
.gradbtn:hover {
    background: #ffffff;
    color: #1964ac;
    transform: translateY(-3px);
    border-color: #1964ac;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}


.job-desc-box{
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    font-size: 16px;
    line-height: 1.5;
    color: #334155;
}
.view-card {
    background: white;
    padding: 1rem;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}
.view-card i {
    padding: 0.6rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    margin-right: 1rem;
}
.candidate-line {
    border-bottom: 0.1rem solid #f0f0f0;
    padding: 0.5rem;
}
.candidate-line:hover {
    background: #f3f9ff;
    box-shadow: 0 1px 9.5px rgb(217 157 48 / 49%);
}

.submission-item {
    border-bottom: 0.1rem solid #f0f0f0;
    padding: 0.5rem;
}
.submission-item:hover {
    background: #f3f9ff !important;
    box-shadow: 0 1px 9.5px rgb(217 157 48 / 49%);
}
.tabsec i {
    padding-right: 0.3rem;
}




/*candidate-profile*/
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .candidate-code-badge {
            background-color: #3498db;
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .subtitle {
            color: #7f8c8d;
            font-size: 1rem;
            text-align: left;
            margin-top: 5px;
        }
        
        .back-btn {
            padding: 10px 20px;
            background-color: #e9ecef;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #495057;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .back-btn:hover {
            background-color: #dee2e6;
            transform: translateX(-3px);
        }
        
        .details-container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .details-header {
            padding: 25px 30px;
            border-bottom: 1px solid #eaeaea;
            background-color: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-content h1{
            color: #2c3e50;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
        }
        
        /* .candidate-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }*/
        
        .candidate-name i {
            color: #1964ac;
        }
        .profile-bg{
            background: #F6FAFF !important;
        }
        .details-header .candidate-name{
            display: flex;
            align-items: center;
        }
        .details-header .candidate-name i{
            padding-right: 0.5rem;
        }
        
        .status-badge {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .status-invited {
            background-color: #d4e6f1;
            color: #21618c;
        }
        
        .status-evaluated {
            background-color: #d4efdf;
            color: #196f3d;
        }
        
        .status-pending {
            background-color: #fcf3cf;
            color: #7d6608;
        }
        
        .status-discarded {
            background-color: #fadbd8;
            color: #922b21;
        }
        
        .details-content {
            padding: 30px;
        }
        
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .detail-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid #1964ac;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .detail-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-title i {
            color: #7f8c8d;
            font-size: 16px;
        }
        
        .detail-field {
            margin-bottom: 18px;
        }
        
        .detail-field:last-child {
            margin-bottom: 0;
        }
        
        .field-label {
            font-size: 13px;
            color: #7f8c8d;
            margin-bottom: 6px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        .field-value {
            font-size: 16px;
            color: #2c3e50;
            font-weight: 500;
            word-break: break-word;
        }
        
        .ai-indicator {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .ai-true {
            background-color: #e8f6f3;
            color: #0e6251;
        }
        
        .ai-false {
            background-color: #f4f6f6;
            color: #616161;
        }
        
        .token-display {
            font-family: 'Courier New', monospace;
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 12px 15px;
            border-radius: 6px;
            font-size: 14px;
            word-break: break-all;
            margin-top: 5px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .header-content #candidate-code{
            background: #1964ac;
            color: #fff;
            padding: 0.3rem;
            border-radius: 0.5rem;
        }
        
        .action-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }
        
        .primary-btn {
            background-color: #3498db;
            color: white;
        }
        
        .primary-btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }
        
        .secondary-btn {
            background-color: #ecf0f1;
            color: #2c3e50;
        }
        
        .secondary-btn:hover {
            background-color: #d5dbdb;
            transform: translateY(-2px);
        }
        
        footer {
            text-align: center;
            margin-top: 40px;
            color: #7f8c8d;
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid #e1e5eb;
        }
        
        .last-updated {
            font-size: 13px;
            color: #95a5a6;
            text-align: center;
            margin-top: 20px;
            font-style: italic;
        }


        /*candidate review*/
        .aicard {
            justify-content: space-between;
            background: linear-gradient(135deg, #eef2ff, #f8f4ff);
        }
        .aicard h3{
            font-size: 1rem;
        }
        .generate{
            display: flex;
            align-items: center;
        }
        .generate .gradbtn{
            margin-right: 1rem;
        }
        #answers-container .card{
            background: #fff;
            margin: 1rem 0;
            padding: 0;
            border-radius: 0.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .qstyle{
            font-size: 0.9rem;
            font-weight: 500;
        }
        .timelimit{
            width: fit-content;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 700;
            white-space: nowrap;
            background: #fef3c7;
            color: #92400e;
        }
        .qdiv{
            width: 3%;
        }
        #overall-eval textarea{
            border: 0.1rem solid #579EE2;
            padding: 0.5rem;
            font-size: 0.8rem;
            opacity: 1;
        }
        #overall-eval select {
            border: 0.1rem solid #579EE2;
            padding: 0.5rem;
            font-size: 0.8rem;
            opacity: 1;
        }

        .status:hover span{
            border: 0.1rem solid #16a34a;
            border-radius: 0.5rem;
            padding: 0.5rem;
        }
        .counts:hover,
        .counts:focus-visible{
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
            z-index: 2;
        }
        .action-hov:hover{
            color: #0056b3;
            transform: translateY(-1px);
            background: none;
            border: none;
        }
        .action-hov{
            text-decoration: none;
            padding: 4px 0;
            position: relative;
            transition: all 0.2s ease;
            font-weight: 500;
            border: none;
        }
        .action-hov::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #1964ac;
            transition: width 0.2s ease;
        }
        .action-hov:hover::after {
            width: 100%;
        }
        #search-bar:hover {
            border: 0.1rem solid #1964ac;
        }
        table tr:hover {
            box-shadow: 0 0 9.5px rgb(235 206 28 / 50%);
        }
        .view{
            background: #1964ac;
            color: #fff;
            padding: 0.3rem 0.5rem;
            border-radius: 0.3rem;
        }
        .edit{
            border: 0.1rem solid #e7e7e7;
            padding: 0.3rem 0.5rem;
            border-radius: 0.3rem;
        }
        .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }
        .resumest{
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            background: #edcb12;
            padding: 0.3rem;
            border-radius: 0.5rem;
            color: #fff;
        }
        .resumest p{
            color: #fff;
        }
        .resumest:hover {
            border: 0.1rem solid #bdbdbd;
            background: #fff;
            color: #edcb12;
        }
        .resumest:hover p {
            color: #edcb12;
        }
        .resumest i {
            color: #fff;
        }
        .resumest:hover i {
            color: #edcb12;
        }
        #candidate-next-btn{
            background: #1964ac;
            color: #fff !important;
        }
        #candidate-next-btn:hover {
            background: #428cd3;
        }
        #candidate-page-info{
            padding: 0 0.5rem;
        }
        .cardcount {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 14px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        .cards i {
            padding: 0.6rem;
            border-radius: 0.5rem;
            font-size: 1.2rem;
            margin-right: 1rem;
        }
        .blue{
            color: #1964ac;
            background: #eff7ff;
        }
        .yellow{
            color: #ffef33;
            background: #fffde3;
        }
        .green{
            color: #166534;
            background: #dcfce7;
        }
        .red {
            background: #fee2e2;
            color: #991b1b;
        }
        .orange{
            background: #fff7e7;
            color: #e29b11;
        }
        .cardcount h4 {
            color: #212121;
            margin-bottom: 0.5rem;
        }
        .cardcount .value {
            font-size: 26px;
            font-weight: bold;
        }
        .filters{
            display: flex;
            align-items: center;
        }
        .filters input{
            background: #fbfdff;
            border: 0.1rem solid #e6e6e6;
            border-radius: 0.3rem;
            padding: 0.3em 0.5rem;
        }
        .filters select{
            border: 0.1rem solid #e6e6e6;
            border-radius: 0.3rem;
            padding: 0.3em 0.5rem;
            font-size: 0.9rem;
            color: #787f88;
            width: 11%;
            margin: 0 0.5rem;
        }
        .filters p{
            color: #757575;
            font-size: 1rem;
        }

        .tabsec button {
            background: #f4f4f4;
            padding: 0.5rem !important;
            border-radius: 0.5rem;
            margin: 1rem 0;
            color: #7c7c7c;
        }

.tbar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.tbar > * {
    flex-shrink: 0;
}
.tbar::-webkit-scrollbar {
    height: 4px;
}

.tbar::-webkit-scrollbar-track {
    background: transparent;
}

.tbar::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
}

.tbar::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Hide arrows completely */
.tbar::-webkit-scrollbar-button {
    display: none;
}
.ti.tabbox-active {
    color: #1847c4;
    border-bottom-color: #1847c4;
    font-weight: 700;
}
.ti {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 17px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: all .15s;
    margin-bottom: -1px;
    white-space: nowrap;
}
#questions-list .borcard{
    border: 0.1rem solid #e5ebf2;
}
.tbar .tab-cont{
    margin-top: 1rem;
}
.tbar .btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .2s;
    white-space: nowrap;
    background: #1964ac;
    box-shadow: 0 6px 24px rgba(24, 71, 196, .28);
    color: #fff;
}
.tbar input::placeholder {
    font-size: 0.8rem;
}
#candidate-list{
    padding: 0 1rem;
    margin-top: 0.5rem;
}
#complete-list{
    padding: 0 1rem;
}
#select-list{
    padding: 0 1rem;
}
#hold-list{
    padding: 0 1rem;
}
#discard-list{
    padding: 0 1rem;
}
#submission-list{
    padding: 1rem;
}
.csv-btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid #E2E8FD;
    transition: all .2s;
    white-space: nowrap;
}

#scheduleForm input::placeholder {
    font-size: 0.8rem;
}
#scheduleForm textarea::placeholder {
    font-size: 0.8rem;
}
#scheduleForm .hxcard {
    border: 1px solid #e2e8f0;
    padding: 0;
}
#scheduleForm .form-head {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #E2E8FD;
}
.hxcard #scheduler-search{
    padding: 0.5rem;
}
.hxcard .formcont {
    padding: 0 1rem 1rem 1rem;
}
.aibox textarea {
    background: rgba(255, 255, 255, .1) !important;
    border: 1.5px solid #ffffff33 !important;
}
.aibox label {
    color: #ffffffa6;
}
.aibox select {
    background: rgba(255, 255, 255, .1) !important;
    border: 1.5px solid #ffffff33 !important;
    color: #fff;
}
#generate-questions-btn{
    background: #00c4a1 !important;
}
#save-draft-btn:hover{
    border-color: #1847c4 !important;
    color: #1847c4;
    background: #eef2ff !important;
    transform: translateY(-3px);
}
#save-draft-btn{
    background: #fff !important;
    color: #0f172a;
    border: 1.5px solid #e2e8f0 !important;
}
.aibox textarea::placeholder {
    color: #dfefff;
}
#scheduleForm label {
    margin: 1rem 0 0.5rem 0 !important;
}
#scheduleForm .spmar {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.btn-s {
    background: #fff;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
}
.btn-sm {
    padding: 6px 13px;
    font-size: 12.5px;
    border-radius: 7px;
}
.cprofile select{
    width: 155px;
    padding: 5px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #000;
    transition: all .15s;
}
.btn-p {
    background: #1964ac;
    color: #fff;
    box-shadow: 0 6px 24px rgba(24, 71, 196, .28);
}
.btn-p:hover {
    background: #4ca6ff;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(24, 71, 196, .4);
}
#global-playback-rate{
    width: 90px;
    padding: 5px 10px;
    font-size: 12px;
}
.auto-play span{
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 1rem;
}
.qh{
    background: #f8fafc;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}
.qn {
    font-size: 12px;
    font-weight: 800;
    color: #1964ac;
    background: #eef2ff;
    padding: 3px 10px;
    border-radius: 6px;
    width: fit-content;
}
.trl{
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 800;
    color: #1964ac;
    background: #eef2ff;
    padding: 3px 10px;
    border-radius: 6px;
    width: fit-content;
}
.answer-grid {
    padding: 0 1rem 1rem 1rem;
}
.btn-a {
    background: #00c4a1;
    color: #fff;
}
#overall-eval {
    padding: 0;
}
.over{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    background: #f8fafc;
    padding: 0.3rem 1rem;
}
.over svg{
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #1847c4;
    stroke-width: 2;
    margin-right: 0.5rem;
}
.over h3{
    font-size: 14.5px;
    font-weight: 700;
}
.overall-grid {
    padding: 0.5rem 1rem;
}
.fl {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #475569 !important;
}
.fs {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px;
    color: #0f172a;
    transition: all .15s;
    width: 100%;
}
.fta {
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: inherit;
    color: #0f172a;
    background: #fff;
    transition: all .15s;
    width: 100%;
}
#save-eval-btn{
    width: 100%;
}
.otherrev {
    padding: 0;
    margin-top: 1rem;
}
.otherrev h4{
    font-size: 14.5px;
    font-weight: 700;
}
#panel-other-reviews {
    padding: 0.5rem 1rem;
}
#review-container{
    display: flex;
    gap: 30px;
}
#review-container .left-rev{
    width: 75%;
}
#review-container .right-rev{
    width: 35%;
}
.aibox textarea {
    height: auto !important;
    color: #fff !important;
}
.right-rev .card{
    background: #fff;
    margin: 1rem 0;
    padding: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
#toggle-ai-box .material-symbols-outlined{
    font-size: 20px !important;
    color: #1847c4;
}
#other-reviews-count{
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}

.grey-bg{
    color: #808080;
    background: #eeeeee;
}
.icon-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    background: gray;
}
.ti.tabbox-active .icon-circle {
    background: #1847c4;
}
#deleteBtn {
    border: 0.1rem solid #dc2929;
    background: #fff;
}
#deleteBtn:hover {
    background: #fff1f1;
    transform: translateY(-3px);
}
#cancelResume{
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.5rem !important;
}
#cancelResume:hover{
    background: #e1e1e1 !important;
    transform: translateY(-3px);
}
#search-role::placeholder {
    font-size: 0.9rem;
}
#clear-filters-interview{
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #1964ac;
    border: 0.1rem solid #e6e6e6;
    border-radius: 0.3rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}
#clear-filters-interview p {
    font-size: 0.9rem;
    color: #1964ac;
    font-weight: 500;
}
#clear-filters-candidate{
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #1964ac;
    border: 0.1rem solid #e6e6e6;
    border-radius: 0.3rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    width: fit-content;
}
#clear-filters-candidate p {
    font-size: 0.9rem;
    color: #1964ac;
    font-weight: 500;
}
.tab-scroll{
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ebf1fb transparent;
    overflow-y: hidden;
}
.tab-scroll::-webkit-scrollbar{
    height: 5px;
}

.tab-scroll::-webkit-scrollbar-track{
    background: transparent;
}

.tab-scroll::-webkit-scrollbar-thumb{
    border-radius: 10px;
}

.tab-scroll::-webkit-scrollbar-thumb:hover{
    background: #94a3b8;
}
#search-candidate::placeholder {
    font-size: 0.9rem;
}



        .dashboard-card {
            background: #ffffff;
            border-radius: 0.5rem;
            padding: 1rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .dashboard-card .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .dashboard-card .title-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dashboard-card .title-wrapper i {
            color: #2563eb;
            font-size: 20px;
        }

        .dashboard-card .header h2 {
            font-size: 18px !important;
            font-weight: 800;
            color: #1e293b;
            margin: 0;
        }

        .dashboard-card .verified-badge {
            background: #ecfdf5;
            color: #10b981;
            font-size: 10px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .dashboard-card .sub-header {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 25px;
            display: block;
        }

        /* --- Score & Profile Section --- */
        .dashboard-card .score-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .dashboard-card .chart-container {
            position: relative;
            width: 120px;
            height: 120px;
        }

        .dashboard-card svg { transform: rotate(-90deg); }
        
        .dashboard-card .circle-bg { 
            fill: none; 
            stroke: #f1f5f9; 
            stroke-width: 10; 
        }
        
        .dashboard-card .circle-progress {
            fill: none;
            stroke-width: 10;
            stroke-linecap: round;
            stroke: url(#dashboardGradient); 
            stroke-dasharray: 377; 
            stroke-dashoffset: 22.6; 
        }

        .dashboard-card .score-display {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .dashboard-card .score-display .num { 
            font-size: 28px; 
            font-weight: 800; 
            color: #1e293b; 
        }
        .dashboard-card .score-display .num span { 
            font-size: 14px; 
        }
        .dashboard-card .score-display .label { 
            font-size: 9px; 
            font-weight: 700; 
            color: #64748b; 
            display: block; 
            margin-top: -2px; 
        }

        .dashboard-card .trust-profile h4 {
            color: #10b981;
            font-size: 14px;
            margin: 0 0 4px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dashboard-card .trust-profile p {
            font-size: 11px;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        .dashboard-card .event-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }

        .dashboard-card .event-box {
            background: #f8faff;
            padding: 16px;
            border-radius: 16px;
            position: relative;
            border: 1px solid #f1f5f9;
        }

        .dashboard-card .icon-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .dashboard-card .icon-row i {
            font-size: 18px;
            color: #2563eb;
        }

        .dashboard-card .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }

        .dashboard-card .dot-green { 
            background: #10b981; 
        }
        .dashboard-card .dot-red { 
            background: #ef4444; 
        }
        .dashboard-card .dot-orange { 
            background: #f59e0b; 
        }

        .dashboard-card .event-label {
            font-size: 9px;
            font-weight: 800;
            color: #64748b;
            text-transform: uppercase;
            display: block;
            margin-bottom: 2px;
        }

        .dashboard-card .event-value {
            font-size: 14px;
            font-weight: 700;
            color: #1e293b;
        }

        .dashboard-card .minor-badge {
            position: absolute;
            top: 10px;
            left: 28px;
            background: #ef4444;
            color: #ffffff;
            font-size: 9px;
            font-weight: 900;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffffff;
            z-index: 2;
        }

        .dashboard-card .footer {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #f1f5f9;
            font-size: 11px;
            color: #94a3b8;
            font-weight: 500;
        }
    .intertit{
        color: #1964ac !important;
    }

    #editForm .form-head {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #E2E8FD;
}
#editForm .hxcard .formcont {
    padding: 1rem;
}
#editForm .hxcard {
    border: 1px solid #e2e8f0;
    padding: 0;
}

.tab-cont .candidate-info .candidate-name{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}
#difficulty option {
    color: #000;
}
#num-questions option {
    color: #000;
}
#job-description::-webkit-scrollbar{
    display: none;
}
.resumest span {
    color: #fff;
}
.resumest:hover span {
    color: #edcb12;
}
.cardcount{
    display: block !important;
}
.cards .cardcount i{
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
}
.cardcount div {
    text-align: center;
}
.ti.invite {
    color: #854d0e;
}
.ti.invite.tabbox-active {
    border-bottom-color: #854d0e;
}
.ti.submit {
    color: #1e40af;
}
.ti.submit.tabbox-active {
    border-bottom-color: #1e40af;
}
#add-visitor-form label {
    font-weight: 500;
    color: #000;
}
#scheduleForm .text-sm{
    font-size: 1rem !important;
}
.healthicon{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.healthicon i{
    color: #9A9EB1;
}
#edit-db-alert-emails-btn {
    background: #DAE2FD;
    color: #3256b7;
    border-color: transparent;
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
    align-items: center;
}
#edit-db-alert-emails-btn span {
    color: #3256b7;
    font-size: 1rem;
}
#log-type {
    width: 6rem;
}
#add-visitor-form input::placeholder {
    font-size: 0.8rem;
}
#visitor-search::placeholder{
    font-size: 0.8rem;
}

/*responsive*/

        @media (max-width: 1023px){
            .mobres{
                display: block !important;
            }
        }

        @media (max-width: 992px){
            .hxcard .flex.w-full {
                display: block;
            }
            #candidate-status{
                width: 120px !important;
            }
            .cprofile{
                display: block;
            }
            .flex.flex-col.items-end{
                align-items: start !important;
            }
            #back-link{
                margin: 0.5rem 0;
            }
            #review-container{
                display: block;
            }
            #answers-container .qh{
                display: block;
            }
            #answers-container .qh .qstyle{
                margin-left: 0.5rem;
            }
            .timelimit{
                margin-top: 0.5rem;
            }
            .answer-grid{
                display: block !important;
            }
            #review-container .left-rev{
                width: 100%;
            }
            #review-container .right-rev{
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .back-btn {
                align-self: flex-start;
            }
            
            .details-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .details-content {
                padding: 20px;
            }
            
            .details-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .action-btn {
                justify-content: center;
            }
            .cards{
                display: block;
            }
            .cardcount{
                margin-bottom: 1rem;
            }
            .positions-tab {
                display: block !important;
            }
            #open-positions-tab {
                margin-bottom: 0.5rem;
            }
            .filters{
                display: block !important;
            }
            #status-filter{
                width: 86% !important;
                margin: 0.5rem 0;
            }
            #job-filter{
                width: 86% !important;
                margin-bottom: 0.5rem;
                margin-left: 0;
            }
            .btnpos #save-draft-btn{
                width: 65%;
            }
            .header-stats{
                width: 100%;
            }
            .view-card{
                width: 100%;
                margin-bottom: 1rem;
            }
            .candidate-line div {
                display: block !important;
                margin-bottom: 0.5rem;
            }
            .candidate-line {
                display: block;
            }
            .submission-item .candidate-status {
                margin: 0.5rem 0 !important;
            }
            .tabsec nav {
                display: block;
            }
            main{
                padding-left: 1rem !important;
                padding-right: 1rem !important;
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            .filters select{
                margin: 0.5rem 0;
            }
            #clear-filters-interview{
                width: fit-content;
            }
            .mb-8{
                margin-bottom: 0;
            }
            .table-div{
                overflow: auto !important;
            }
            .positions-tab{
                display: block;
            }
            #closed-positions-tab{
                margin-left: 0;
            }
            #panel-invites .postab{
                display: block;
            }
            .respalign{
                display: block;
            }
            .resend-btn{
                margin-top: 0.5rem;
            }
            #interview-content .status-badge{
                margin-top: 0;
            }
            .data-table-shell .interview-table{
                table-layout: auto;
            }
            .mobres{
                display: block !important;
            }
            .settings-shell{
                overflow: auto !important;
            }
            #search-role {
                width: 50%;
            }
            #search-candidate{
                width: 50%;
            }
            .btnpos{
                margin-right: 0;
            }
            #invite-search-input{
                width: 150px !important;
            }
            .candidate-status-wrap{
                justify-self: start !important;
            }
            .hxcard .flex.w-full {
                display: block;
            }
            #candidate-status{
                width: 120px !important;
            }
            .cprofile{
                display: block !important;
            }
            .flex.flex-col.items-end{
                align-items: start !important;
            }
            #back-link{
                margin: 0.5rem 0;
            }
            #review-container{
                display: block;
            }
            #answers-container .qh{
                display: block;
            }
            #answers-container .qh .qstyle{
                margin-left: 0.5rem;
            }
            .timelimit{
                margin-top: 0.5rem;
            }
            .answer-grid{
                display: block !important;
            }
            .transcript-col{
                margin-top: 1.5rem;
            }
            .respalign div {
                justify-content: start !important;
            }
            #review-container .left-rev{
                width: 100%;
            }
            #review-container .right-rev{
                width: 100%;
            }
            .resume-preview-pages{
                display: block !important;
            }
            .curve-bg{
                clip-path: none;
            }
            .curve-bg-green{
                clip-path: none;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            
            .detail-card {
                padding: 20px;
            }
        }

        /* Mobile safety overrides: keep desktop unchanged and prevent horizontal clipping on phones */
        @media (max-width: 768px) {
            html,
            body {
                overflow-x: hidden;
            }

            .container,
            .main-content,
            .settings-shell,
            .assessment-container,
            .detail-card {
                width: 100%;
                max-width: 100%;
            }

            .table-shell,
            .data-table-shell,
            .reviewer-table-shell,
            .dashboard-table-shell {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            table {
                width: 100%;
            }

            img,
            video,
            canvas,
            iframe {
                max-width: 100%;
                height: auto;
            }

            input,
            select,
            textarea,
            button {
                max-width: 100%;
            }
        }
















