/* Recrument Admin*/
.recruitment-recent-activity:hover {
  background-color: #F8F6F2; /* light white */
  transition: background-color 0.2s ease;
}

.job-card[data-style="v1"] {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #eee;
}

.job-card[data-style="v1"] .job-id {
  background: #2f3b59;
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
}

.job-card[data-style="v1"] .job-title {
  font-size: 18px;
  font-weight: 600;
}

.job-card[data-style="v1"] .job-dept {
  color: #9aa0a6;
}

.job-card[data-style="v1"] .job-meta {
  margin-top: 12px;
  color: #9aa0a6;
}

.job-card[data-style="v1"] .status-pill {
  background: #e6f7ec;
  color: #22a45d;
  padding: 6px 18px;
  border-radius: 20px;
}
#recruitment-admin-dashboard .view-all-jobs-btn{
    border-radius: 20px;
    border: black 1px solid;
    padding: 8px 25px;
    color: black;
    margin-bottom: 5px;
}
#recruitment-admin-dashboard .view-all-jobs-btn:hover{
    border-radius: 20px;
    border: #004D95 1px solid;
    padding: 8px 25px;
    color: black;
    margin-bottom: 5px;
    background-color: #004D95;
    color: white;
}

#admin-recent-activity .activity-item {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

#admin-recent-activity .activity-item:hover {
    background-color: #F8F6F2 !important;
}


#admin-applicant-details .process-steps .step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #fff;
  font-size: 14px;
}

#admin-applicant-details .process-steps .step-circle.active {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}

#admin-applicant-details .step-label {
  font-size: 12px;
  margin-top: 6px;
}

#admin-applicant-details .candidate-profile , #admin-applicant-details .candidate-details{
    border: 1px solid #c1bbbb;
    padding: 20px;
    border-radius: 10px;
}

#admin-applicant-details .match-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
}

#admin-applicant-details .match-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}


#admin-applicant-details .score-badge-question {
  margin-left: auto; /* push to right end */
  display: flex;
  align-items: center;
  justify-content: center;

  background: #303C60;
  color: #ffffff;
  font-weight: 700;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #303C60;
}

#admin-applicant-details .question-text {
  flex: 1; /* take remaining space */
  margin-right: 10px;
  font-weight: 600;
}



#admin-applicant-details .match-actions {
  display: flex;
  gap: 8px;
}

#admin-applicant-details .btn-outline {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

#admin-applicant-details .btn-outline:hover {
  background: #f3f4f6;
}

#admin-applicant-details .btn-outline.active {
  /* border-color: #3b82f6;
  color: #3b82f6; */
  font-weight: 600;
}

#admin-applicant-details .candidate-box {
    background: #f8f9fa;
    /* border: 1px solid #e5e5e5; */
    border-radius: 6px;
    /* padding: 15px 20px; */
    margin-top: 35px;
}

#admin-applicant-details .candidate-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#admin-applicant-details .candidate-item {
    font-size: 12px;
    margin-bottom: 10px;
}

#admin-applicant-details .candidate-item span {
    font-weight: 600;
}


#admin-applicant-details .tabs-header {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
}          
#admin-applicant-details .tab-btn {
  flex: 1; /* 👈 evenly distribute (12 columns effect) */
  text-align: center;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  position: relative;
}
 
#admin-applicant-details .tab-btn:hover {
  color: #111827;
}
 
#admin-applicant-details .tab-btn.active {
  color: #111827;
  font-weight: 600;
}
  
 #admin-applicant-details .tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: #303C60;
}

/* Header */
#admin-applicant-details .score-header h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

#admin-applicant-details .score {
  color: #2ecc71;
  font-weight: 700;
}

/* Status Box */
#admin-applicant-details .status-box {
  background: #e9fbe9;
  border: 1px solid #c9f1c9;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 14px;
}

#admin-applicant-details .status-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#admin-applicant-details .status-box p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #555;
}

/* Summary + Score Header */
#admin-applicant-details .summary-box,
#admin-applicant-details .score-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

#admin-applicant-details .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

#admin-applicant-details .summary-header h6 {
  font-size: 14px;
  font-weight: 600;
}

#admin-applicant-details .summary-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Score Grid */
#admin-applicant-details .score-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

/* Left Side Progress */
#admin-applicant-details .score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

#admin-applicant-details .score-row span:first-child {
  width: 130px;
}

#admin-applicant-details .progress {
  flex: 1;
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

#admin-applicant-details .progress-bar {
  height: 100%;
  background: #2d6cdf;
  border-radius: 10px;
}

#admin-applicant-details .resume-score {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* Right Side Info */
#admin-applicant-details .info-block {
  margin-bottom: 10px;
}

#admin-applicant-details .info-block h6 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

#admin-applicant-details .info-block p {
  font-size: 13px;
  color: #666;
}

/* Assign Box */
#admin-applicant-details .assign-box {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#admin-applicant-details .assign-box label {
  font-size: 13px;
  font-weight: 600;
}

#admin-applicant-details select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 13px;
}

/* Buttons */
#admin-applicant-details .btn-group {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

#admin-applicant-details .btn-cancel {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}

#admin-applicant-details .btn-assign {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  background: #2d6cdf;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

#admin-applicant-details .step-title {
    position: absolute;
    top: 100%;
    left: 50%;
    text-align: center;
    width: 15em;
    transform: translateX(-50%);
    margin-top: 5px;
}

/* ===============================
   Interview Summary Box
================================ */
#admin-applicant-details .summary-box {
  background: #e9fff0;
  border: 1px solid #d6f5e3;
  color: #1f2937;
  border-radius: 8px;
}

/* ===============================
   Accordion Item Box
================================ */
#admin-applicant-details .custom-item {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

/* ===============================
   Accordion Header Button
================================ */
#admin-applicant-details .custom-btn {
  background: #f9fafb !important;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: none !important;
  border: none;
}

/* Remove Bootstrap Focus */
#admin-applicant-details .accordion-button:focus {
  box-shadow: none;
}

/* When Accordion Open */
#admin-applicant-details .accordion-button:not(.collapsed) {
  background: #ffffff !important;
  color: #111827;
}

/* ===============================
   Score Badge Style
================================ */
#admin-applicant-details .score-badge {
     background: #e6f7ec;
    color: #16a34a;
    font-size: 14px;
    padding: 10px 17px;
    border-radius: 50px;
    margin-left: auto;
    font-weight: 600;
}

/* ===============================
   Accordion Body
================================ */
#admin-applicant-details .custom-body {
  background: #ffffff;
  font-size: 13px;
  color: #374151;
  border-top: 1px solid #e5e7eb;
  padding: 12px 16px;
}

#admin-applicant-details .custom-btn:hover {
  background: #f3f4f6 !important;
}

/* ===============================
   Arrow Icon Style (Rotate Effect)
================================ */
#admin-applicant-details .accordion-button::after {
  background-size: 20px;
  transform: scale(0.9);
}

#admin-applicant-details .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) scale(0.9);
}

#admin-applicant-details .accordion-header {
    background: #F8F8F8;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

#admin-applicant-details .note-box {
  background: #fff;
 
  border-radius: 8px;
 
  max-width: 100%;
}

#admin-applicant-details .note-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

#admin-applicant-details .note-textarea {
  width: 100%;
  height: 80px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 10px;
  resize: none;
  outline: none;
  font-size: 14px;
}

#admin-applicant-details .note-textarea:focus {
  border-color: #3b82f6;
}

#admin-applicant-details .note-actions {
  text-align: right;
  margin-top: 10px;
}

#admin-applicant-details .btn-save {
  background: #1f2a44;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

#admin-applicant-details .btn-save:hover {
  background: #111827;
}

#admin-applicant-details .note-item {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

#admin-applicant-details .note-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f2a44;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

#admin-applicant-details .note-content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

#admin-applicant-details .note-content span {
  font-size: 12px;
  color: #6b7280;
}

#admin-applicant-details .note-content p {
  margin: 4px 0;
  font-size: 13px;
  color: #374151;
}

#admin-applicant-details .note-content small {
  font-size: 11px;
  color: #9ca3af;
}


/* Timeline */
#admin-applicant-details .timeline-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#admin-applicant-details {
  position: relative;
}

/* Single continuous timeline line drawn on container for consistent length */
#admin-applicant-details::before {
  content: "";
  position: absolute;
  left: 6px; /* center of 12px dot */
  top: 12px;
  bottom: 12px;
  width: 2px;
  /* background: #22c55e; */
  z-index: 0;
}

/* dots sit above the line */
#admin-applicant-details .dot,
#admin-applicant-details .dot-without-line {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* disable per-dot lines */
#admin-applicant-details .dot::after,
#admin-applicant-details .dot-without-line::after {
  display: none;
}

#admin-applicant-details .dot-without-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 2px;
  height: 0px;
  background: #22c55e;
  transform: translateX(-50%);
}

/* Card */
#admin-applicant-details .bgv-card {
  background: #fff;
  /* border: 1px solid #e5e7eb; */
  border-radius: 8px;
  padding: 14px;
  margin-left: 22px;
}

#admin-applicant-details .bgv-table {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px;
  /* margin-left: 22px; */
}

#admin-applicant-details .bgv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

#admin-applicant-details .bgv-header h5 {
  font-size: 15px;
  font-weight: 600;
}

#admin-applicant-details .arrow {
  font-size: 16px;
  transition: 0.2s;
}

#admin-applicant-details .arrow.open {
  transform: rotate(180deg);
}

/* Subtitle */
#admin-applicant-details .bgv-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Status Badge */
#admin-applicant-details .status.verified {
  background: #e6f9f0;
  color: #16a34a;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

/* Eye Icon */
#admin-applicant-details .eye {
  cursor: pointer;
  font-size: 14px;
}

/* Remove MUI default shadows & spacing */
#admin-applicant-details .MuiPaper-root {
  box-shadow: none !important;
}

#admin-applicant-details .MuiToolbar-root {
  display: none !important; /* hide top toolbar */
}


#admin-applicant-details .tab-btn-applicant
 {
    flex: 0;
    text-align: center;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    padding: 8px 40px;
}

#admin-applicant-details .custom-tooltip {
  position: relative;
  cursor: pointer;
}

#admin-applicant-details .custom-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

#admin-applicant-details .custom-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* pagination job-list */
#pagination-job-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 12px 0;
  background: transparent;
}

/* Per page */
#pagination-job-list .pagination-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

#pagination-job-list .pagination-left select {
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  padding: 6px 10px;
  background: #fff;
  outline: none;
}

/* Pagination container */
#pagination-job-list .pagination-ui {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Buttons */
#pagination-job-list .page-link {
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #1d2939;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
}

/* Hover */
#pagination-job-list .page-link:hover {
  background: #f2f4f7;
}

/* Active */
#pagination-job-list .active .page-link {
  background: #175cd3;
  border-color: #175cd3;
  color: #fff;
}

/* Disabled arrows */
#pagination-job-list .disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}
#recruitment-admin-dashboard .status-box-note{
    color: #303C60;
    font-size: 0.65rem;
}

#admin-applicant-details .step-circle ,step-arrow{
        background-color: #303C60 !important;
    color: #FFFFFF !important;
}
#admin-applicant-details .step-arrow{
        background-color: #303C60 !important;
    color: #FFFFFF !important;
}
/* End Admin */

/* Interview */



/* interviewers screen */

/* Wrapper */

#interviewer .container-fluid {
  --theme-bg: #E6F3FD;
  background-color: var(--theme-bg);
      padding: 1px 12px 0px;

}
/* #interviewer .interviewer-wrapper {
  min-height: 100vh;
  padding: 20px;
} */

#interviewer .page-title {
  font-weight: 600;
}

/* ===== CARD WRAPPER ===== */
#interviewer .custom-card {
  border: 1px solid #eef1f5;
  /* border-radius: 12px; */
  background: #ffffff;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); */
  min-height: 265px;
}



#interviewer .custom-card .card-body {
  padding: 12px 12px;
}


/* ===== CARD TITLES ===== */
#interviewer .card-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827; /* dark slate */
}

/* ===== PIPELINE ===== */
#interviewer .pipeline-box {
  border: 1px solid #f1f5f9; /* VERY light line */
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
}

#interviewer .pipeline-row {
  margin-bottom: 18px;
}

#interviewer .pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
#interviewer .pipeline-filter-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* SELECT STYLING */
#interviewer .pipeline-filter {
  appearance: none;          /* 🔥 remove native arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #faf7f2; /* soft cream */
  border: none;
  border-radius: 9999px;

  padding: 10px 35px 10px 20px; /* right space for arrow */
  font-size: 12px;
  font-weight: 600;
  color: #000;

  cursor: pointer;
  outline: none;
  line-height: 1;
}

/* CUSTOM ARROW */
#interviewer .pipeline-filter-wrapper::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 45%;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;

  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);

  pointer-events: none; /* click goes to select */
}


#interviewer .pipeline-label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

#interviewer .pipeline-value {
  font-size: 12px;
  color: #9ca3af; /* muted gray */
}

#interviewer .pipeline-bar {
  width: 100%;
  height: 10px;
  background: #f9fafb;
  border-radius: 999px;
  overflow: hidden;
}
#interviewer .pipeline-bar-fill {
  height: 100%;
  border-radius: 999px;
}
/* progress base */
#interviewer .custom-progress {
  height: 10px;
  background-color: #f6f4ef;
  border-radius: 999px;
  overflow: hidden;
}

/* bars */
/* Assigned – Blue */
#interviewer .bar-assigned {
  background: #1d74d8;
}

/* Scheduled – Navy */
#interviewer .bar-scheduled {
  background: #2f3a5f;
}

/* Pending Feedback – Orange */
#interviewer .bar-pending {
  background: #f59e0b;
}


/* ===== MEETINGS ===== */
#interviewer .meeting-card {
  background-color: #e7f1fb;
  border-radius: 2px;
  padding: 10px ;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* meeting title row */
#interviewer .meeting-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1px;
}
#interviewer .meeting-date {
  font-size: 13px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 1px;
}

/* meeting time */
#interviewer .meeting-time {
  font-size: 11px;
  color: #475569;
    margin: 0;
}

/* video icon placeholder */
#interviewer .meeting-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #30438f;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 10.5V7a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3.5l4 4v-11l-4 4Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* Table */

#interviewer .custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

#interviewer .custom-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
  background: #ffffff;
  white-space: nowrap;
}

#interviewer .custom-table tbody td {
  font-size: 13px;
  color: #334155;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

#interviewer .custom-table tbody tr:last-child td {
  border-bottom: none;
}

#interviewer .custom-table tbody tr:hover {
  background: #f8fafc;
}


/* Status Badges */
#interviewer .status-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

#interviewer .status-badge.scheduled {
  background: #e6f4ea;
  color: #16a34a;
}

#interviewer .status-badge.inprogress {
    background: #fff7ed;
    color: #ea580c;
}

#interviewer .status-badge.assigned {
  background: #e0f2fe;
  color: #0284c7;
}

#interviewer .status-badge.completed {
  background: #fae8ff;
  color: #c026d3;
}

#interviewer .action-icon {
  font-size: 20px;
  color: #475569;
  cursor: pointer;
}

#interviewer .action-icon:hover {
  color: #2563eb;
}

#interviewer .table-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 12px 16px;
  font-size: 12px;
  color: #475569;
}

#interviewer .rows-per-page select {
  border: none;
  background: transparent;
  margin-left: 4px;
  font-size: 12px;
  cursor: pointer;
}

#interviewer .pagination-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

#interviewer .page-btn {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #2563eb;
}

#interviewer .table-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 12px 16px;
}

#interviewer .toolbar-icon {
  font-size: 25px;
  color: #1e3a8a;
  cursor: pointer;
}

#interviewer .toolbar-icon:hover {
  color: #2563eb;
}



#interviewer .step-title {
    position: absolute;
    top: 100%;
    left: 50%;
    text-align: center;
    width: 8em;
    transform: translateX(-50%);
}

@media (max-width: 768px) {

  #interviewer .candidate-card {
 margin-bottom: 16px;
}


}

#interviewer .candidate-card {
  /* background: #ffffff; */
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 2px;
 min-height: 315px;
}

#interviewer .card-header-interview {
  font-size: 12px;
 background-color: white;
  /* margin-bottom: 4px; */
      /* border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); */
    padding: 12px 0px 0 0;
      margin: 0 15px;
}

#interviewer .sub-text {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 1px;
}

#interviewer .details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
      row-gap: 25px;
    column-gap: 30px;
}

#interviewer .detail-item {
  font-size: 12px;
  display: flex;
  gap: 6px;
}

#interviewer .detail-item .label {
  font-weight: 700;
  color: #111827;
      font-weight: bold;
}

#interviewer .detail-item .value {
  color: #4b5563;
  font-weight: 400;

}

#interviewer .view-more {
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  cursor: pointer;
  align-self: center;
}



/* Slot row */

#interviewer .slot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px;
    border-bottom: 1px solid #d6d8db;
    cursor: pointer;
    border-right: 1px solid #d6d8db;
    border-left: 1px solid #d6d8db;
    margin: 0;
}

#interviewer .slot-row:first-child {
    border-top: 1px solid #d6d8db;
}


#interviewer .slot-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#interviewer .slot-left input[type="radio"] {
    accent-color: #004D95;
    cursor: pointer;
    width: 11px;
    height: 11px;
}
#interviewer .slot-left input[type="radio"]:focus {
  box-shadow: none;
}

#interviewer .slot-date {
  font-size: 13px;
  color: #111827;
  font-weight: 700;
}

#interviewer .slot-time {
  font-size: 13px;
  color: #374151;
  font-weight: 700;

}

/* Alternate slot */
#interviewer .alternate-slot-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 13px;
  color: #2563eb;
  cursor: pointer;
}

#interviewer .alternate-slot-btn:hover {
  text-decoration: underline;
}

/* Actions */
#interviewer .slot-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

#interviewer .btn-cancel {
  padding: 6px 18px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  color: #374151;
}

#interviewer.btn-submit {
  padding: 6px 18px;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  color: #ffffff;
}



#interviewer .hr {
    /* color: inherit; */
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    margin: 1rem 0rem 0rem 0rem;
}




#interviewer .tabs-header {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
}

#interviewer .tab-btn {
  flex: 1; /* 👈 evenly distribute (12 columns effect) */
  text-align: center;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  position: relative;
}

#interviewer .tab-btn:hover {
  color: #111827;
}

#interviewer .tab-btn.active {
  color: #111827;
  font-weight: 600;
}

#interviewer .tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
}

@media (max-width: 768px) {
  #interviewer .tabs-header {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #interviewer .tabs-header::-webkit-scrollbar {
    display: none; /* clean look */
  }

  #interviewer .tab-btn {
    flex: 0 0 auto;           /* 👈 stop equal distribution */
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;     /* text wrap na ho */
  }
}


#interviewer .role-compatibility-wrapper {
  background: #fff;
  /* padding: 20px; */
  /* font-family: Inter, sans-serif; */
}

#interviewer .role-compatibility-wrapper .top-bar {
  border: 1px solid #eee;
    border-radius: 4px;
    padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

#interviewer .role-compatibility-wrapper .score span {
  background: #e6f4ea;
  color: #137333;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

#interviewer  .stats button {
  margin-left: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
}
 
#interviewer .score{
    font-weight: 700;
}
#interviewer .stats button.active {
  background: #e6f4ea;
  color: #137333;
  border-color: #cce7d0;
}

#interviewer .role-compatibility-wrapper .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#interviewer .role-compatibility-wrapper .column {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 16px;
}

#interviewer .role-compatibility-wrapper .profile-header,
#interviewer .role-compatibility-wrapper .job-header {
  margin-bottom: 16px;
}

#interviewer .role-compatibility-wrapper  .subtitle {
  color: #5f6368;
  font-size: 13px;
}

#interviewer .contact,
#interviewer .links,
#interviewer .location {
  font-size: 12px;
  color: #6b7280;
}

#interviewer .job-tags {
  margin-top: 8px;
}

#interviewer .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  background: #f1f3f4;
  font-size: 12px;
  margin-right: 6px;
}

#interviewer .tag.active {
  background: #e6f4ea;
  color: #137333;
}

#interviewer .role-compatibility-wrapper .section {
  margin-bottom: 16px;
}

#interviewer .role-compatibility-wrapper .section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

#interviewer .role-compatibility-wrapper .section-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
}

#interviewer .highlight {
  background: #e6f4ea;
  color: #137333;
  padding: 2px 4px;
  border-radius: 4px;
}

#interviewer .skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#interviewer .skill-chip {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
}

#interviewer .skill-chip.matched {
  background: #e6f4ea;
  color: #137333;
}

#interviewer .skill-chip.unmatched {
  background: #f1f3f4;
  color: #5f6368;
}

#interviewer .required-badge {
  margin-left: 6px;
  background: #d93025;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}







/* Page Wrapper */
#interviewer .overview-page {
  background: #ffffff;
  /* font-family: "Inter", sans-serif; */
  color: #1f2937;
}

/* =========================
   Overall Score Badge
========================= */
#interviewer .score-badge {
    background: #e9f7ef;
    color: #080808;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
#interviewer .score-badge span {
  font-weight: 600;
  color: #26AF48;
}

#interviewer .score-badge.full-width {
  width: 100%;
  /* justify-content: space-between; */
  justify-content: center;
}

/* =========================
   Action Buttons
========================= */
#interviewer .action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

#interviewer .action-buttons button {
    background: #e8f1ff;
    border: none;
    color: #0c0c0c;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

#interviewer .action-buttons button:last-child {
  background: #e9f7ef;
  color: #0a0a0a;
}

#interviewer .action-buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#interviewer .action-buttons.stretch-buttons {
  display: flex;
  width: 100%;
  gap: 10px;
}

#interviewer .action-buttons.stretch-buttons button {
  flex: 1;  
  text-align: center;
}

#interviewer .action-buttons.stretch-buttons button,
.score-badge {
  min-height: 42px;
}   
.score-badge {
  min-height: 42px;
}

/* =========================
   Card Base Style
========================= */
#interviewer .card-overview {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

#interviewer .card-overview h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

#interviewer .card-overview p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   Skills Section
========================= */
#interviewer .skills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

#interviewer .skill-chip {
    background: #F8F6F2;
    /* border: 1px solid #e5e7eb; */
    color: #111827;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}
/* =========================
   Education Text
========================= */
#interviewer .card-overview p br {
  margin-bottom: 4px;
}

/* =========================
   Subtle Section Spacing
========================= */
#interviewer .overview-page > .card-overview:last-child {
  margin-bottom: 0;
}





/* Wrapper */
#interviewer .questions-wrapper {
  width: 100%;
  /* font-family: Arial, sans-serif; */
  background: #fff;
}

/* Each row */
#interviewer .question-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  border-bottom: 1px solid #e5e7eb;
}

#interviewer .question-row:first-child {
    border-top: 1px solid #e5e7eb ;
}

/* Left Section */
#interviewer .question-left {
  padding: 20px;
  /* border-right: 1px solid #e5e7eb; */
}

#interviewer .question-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

#interviewer .question {
    font-size: 13px;
  display: flex;
  font-weight: bold;
  align-items: flex-start;
  margin-bottom: 15px;
}
 

.question-row {
  position: relative;
}

.remove-question {
  position: relative;
  top: 10px;
  right: 10px;
}

.remove-btn {
  float: inline-end;
background: #ffffff;
  border: none;

  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}



#interviewer  .number {
  margin-right: 10px;
  font-weight: bold;
  font-size: 13px;
}
 
#interviewer .text {
  line-height: 1.6;
}


/* Tags */
#interviewer .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#interviewer .tag {
  background: #f3f4f6;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  color: #374151;
}

#interviewer .custom-badge {
  background: #e0e7ff;
  color: #4338ca;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Rating Section */
#interviewer .rating {
  display: flex;
    align-items: top;
    padding-top: 30px;
  justify-content: center;
  gap: 4px;
  font-size: 20px;
  /* border-right: 1px solid #e5e7eb; */
}

#interviewer .star {
  cursor: pointer;
  color: #d1d5db;
  transition: color 0.2s ease;
}

#interviewer .star.filled {
  color: #000;
}

#interviewer .star:hover {
  color: #000;
}

/* Comment Section */
#interviewer .comment-section {
  padding: 20px;
}

#interviewer .comment-section textarea {
  width: 100%;
  height: 70px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 8px;
  font-size: 13px;
  resize: none;
}

#interviewer .save-btn {
  margin-top: 10px;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  float: right;
}

#interviewer .save-btn:hover {
  background: #4338ca;
}




/* Add Custom Question Button */
#interviewer .add-question-btn {
  margin-top: 16px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  background: #004D95;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#interviewer .add-question-btn:hover {
  background: #004D95;
}
#interviewer .question-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

#interviewer .question-actions button {
  height: 36px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

#interviewer .question-actions button:nth-child(1) {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
}



#interviewer .question-actions button:nth-child(2) {
  background: #004D95;
  border: none;
  color: #ffffff;
}



/* ===============================
   Feedback Container
================================ */
#interviewer .tab-content {
  padding: 24px 0px;
}

#interviewer .feedback-container {
  background: #ffffff;
  padding: 0px 0px;
  /* font-family: Inter, sans-serif; */
}

/* ===============================
   Skills Grid
================================ */
#interviewer .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 24px;
}

#interviewer .skill-card {
    position: relative; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
}

#interviewer .skill-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 768px) {
  #interviewer .skills-grid {
    grid-template-columns: 1fr;   /* 👈 single column */
    gap: 12px;                    /* thoda tight spacing */
  }

  #interviewer .skill-card {
    padding: 12px 14px;           /* mobile friendly */
  }

  #interviewer .skill-name {
    font-size: 13px;              /* better fit */
  }
}

/* ===============================
   Star Rating (tight like UI)
================================ */
#interviewer .star-rating {
  display: flex;
  gap: 4px;
}

#interviewer .star {
  font-size: 17px;
  cursor: pointer;
  color: #000000 !important;
}

#interviewer .star.filled {
  color: #111827;
}

/* ===============================
   Add Skill + Save
================================ */
#interviewer .add-skill-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}


#interviewer .add-skill-row select {
   width: 470px;
  height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #fff;
}

#interviewer .add-skill-row button {
  height: 36px;
  padding: 0 18px;
  background: #004D95;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
#interviewer .remove-skill {
  position: absolute;
  top: -8px;     /* move above border */
  right: -8px;   /* move outside border */
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;   /* so it blends nicely */
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  padding: 0;
  z-index: 2;   /* ensures it stays above card */
}

#interviewer .remove-skill:hover {
  /* background: #fee2e2; */
  color: #0e0d0d;
}



/* ===============================
   Recommendation + Score
================================ */
#interviewer .feedback-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}


#interviewer .feedback-meta select,
#interviewer .feedback-meta input {
  width: 100%;
  height: 36px;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
}

#interviewer .feedback-meta input {
  background: #f9fafb;
}

/* ===============================
   Remarks
================================ */
#interviewer .remarks-section {
  margin-bottom: 32px;
}

#interviewer .remarks-section textarea {
  width: 100%;
  min-height: 110px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  resize: none;
}

/* ===============================
   Footer Actions
================================ */
#interviewer .feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}


#interviewer .star-rating {
  display: flex;
  gap: 4px;
}

#interviewer .star {
  font-size: 18px;
  cursor: pointer;
  color: #d1d5db; /* light gray */
  border: 0.5px;
}

#interviewer .star.filled {
  color: #111827; /* dark (black-ish) */
}

#interviewer .star.readonly {
  cursor: default;
}







#interviewer .notes-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

/* Add Notes */
#interviewer .add-notes-section {
  margin-bottom: 24px;
}

#interviewer .notes-textarea {
  width: 100%;
  min-height: 90px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  resize: none;
}

#interviewer .notes-textarea:focus {
  outline: none;
  border-color: #4f46e5;
}

#interviewer .notes-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

#interviewer .save-btn {
  background: #004D95;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  cursor: pointer;
}

/* Notes History */
#interviewer .notes-history {
  margin-top: 20px;
}

#interviewer .note-card {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  /* border-top: 1px solid #eee; */
}

#interviewer .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #004D95;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

#interviewer .note-content {
  flex: 1;
}

#interviewer .note-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

#interviewer .author-name {
  font-weight: 600;
  font-size: 14px;
}

#interviewer .note-date {
  font-size: 12px;
  color: #888;
}

#interviewer .note-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
#interviewer .note-header span {
  display: block;
}
#interviewer .note-date {
  display: block;
  margin-top: 4px; /* optional spacing */
}








#AddMultipleComponent .selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

#AddMultipleComponent .chip {
     display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 50px;
    background-color: #F8F6F2;
    border: 1px solid #F8F6F2;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

#AddMultipleComponent .chip-remove {
  background: none;
  border: none;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}

#AddMultipleComponent .chip-remove:hover {
  color: #111827;
}
/* interviewers screen */

/* Interview End */

.meeting-banner {
    background: #FFF4BC;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;              /* vertical center */
    justify-content: space-between;   /* text left, button right */
    margin-bottom: 20px;
}

.meeting-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meeting-title {
    font-weight: 600;
}
.meeting-notice
{
    font-size: 15px;
        color: #000000;
        /* font-family: Galeana Standard; */

}
.meeting-sub {
    font-size: 14px;
    color: #000000;
    margin-left: 167px;
}
.status-wrapper {
  position: relative;
  display: inline-block;
}
.tooltip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.tooltip-time {
  font-size: 11px;
  color: #6b7280;
}

.status-tooltip {
  position: absolute;
  top: 28px;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  padding: 10px;
  width: 220px;
  font-size: 10px;
  z-index: 10;
  display: none;
}

.status-wrapper:hover .status-tooltip {
  display: block;
}

.progress-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d6d6d6;
}

.dot.active {
    background: #303c60;
}

.badge-success {
background: #E2F6ED;
    color: #26AF48;}

.badge-warning {
    background: #FEF4E4;
    color: #F7B84B;
}
.oxyem-mark-In Progress .candash-status-wrapper {
    background: #FEF4E4;
    color: #F7B84B;
}

/* .table-footer {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 13px;
    color: #0c0d0d;
    margin-top: 10px;
    font-weight:600;
} */
.candidate-page .table-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding: 12px 20px;
  font-size: 13px;
  color: #5f6368;
  background-color: #f5f5f5;   /* light grey like image */
  border-top: 1px solid #e0e0e0;
}

/* Rows per page */
.candidate-page .rows-per-page {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.candidate-page .rows-per-page select {
  border: none;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}

/* Right side */
.candidate-page .pagination-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

/* Arrow buttons */
.candidate-page .page-btn {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #0d6efd;
  padding: 4px 8px;
  border-radius: 4px;
}

.candidate-page .page-btn:hover {
  background-color: #e0e0e0;
}

.candidate-page .page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #766f6f;
}

.candidate-page .table thead th {
  color: #303c60;
  /* font-weight:500; */
}

/* page 2 */

/* =========================
   CANDIDATE PAGE BASE
========================= */
.candidate-header {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
}

/* ================= TOP ================= */
.candidate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.candidate-name {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.designation {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
  /* font-family: Galeana Standard; */
}

.profile-updated {
  font-size: 14px;
  color: #6b7280;
  /* font-family: Galeana Standard; */
}
.profile-updated strong {
  font-size: 14px;
  color: #0d0d0d;
  /* font-family: Galeana Standard; */
}
/* 🔴 FULL WIDTH LINE */
.divider-horizontal-full {
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0 16px;
}

/* ================= BOTTOM ================= */
.candidate-bottom {
  display: flex;
  align-items: flex-start;
}

/* LEFT BOTTOM */
.candidate-bottom-left {
  /* display: flex; */
  gap: 18px;
  width:40%;  /* flex: 1; */
}

.avatar-block {
  position: relative;
}

.candidate-avatar {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  /* object-fit: cover; */
}
/* common icon + text row */
.caninfo-item {
  display: flex;
  align-items: center;
  gap: 8px;              /* 👈 distance between icon & text */
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

/* icon styling */
.caninfo-item svg {
  font-size: 16px;
    color: #0a0a0a;
    font-weight: 700;
}

/* text styling */
.caninfo-text {
  line-height: 1.4;
}

.avatar-edit {
  position: absolute;
  bottom: 13px;
  right: 4px;
  background: #fff;
  /* color: #fff; */
  width: 19px;
  height: 19px;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid 1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  /* gap: 6px; */
  font-size: 13px;
  color: #374151;
  /* font-family: Galeana Standard; */ 
    font-weight: 500;
}

/* 🔴 VERTICAL LINE */
.divider-vertical-middle {
  width: 1px;
  background: #e5e7eb;
  height: 70px;
  margin: 0 28px;
}

/* RIGHT BOTTOM */
.candidate-bottom-right {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  font-size: 13px;
  color: #374151;
}
.candidate-page{
  --theme-bg: #E6F3FD;
  background-color: var(--theme-bg);
  padding: 10px 15px;
}
.candidate-page .breadcrumb-item a
{
color:black;
}
/* =========================
   RESUME SECTION
========================= */
.candidate-page .resume-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 24px;
    margin-top: 24px;

}

.candidate-page .resume-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight:bold;
}

.candidate-page .resume-upload {
  border: 2px dashed #737373;
  border-radius: 8px;
  padding: 22px;
  width:100%;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.candidate-page .resume-upload strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.candidate-page .resume-upload small {
  font-size: 13px;
  color: #6b7280;
}

.candidate-page .resume-upload:hover {
  background: #f8fafc;
}

.candidate-page .resume-file {
  margin-top: 12px;
  font-size: 14px;
  color: #374151;
}

/* =========================
   TABS
========================= */
.candidate-page .candidate-tabs {
  background: #ffffff;
  border-radius: 10px;
}
.candidate-page .tab-header {
  /* display: flex;
  gap: 36px;
  padding: 0 32px;
  border-bottom: 1px solid #e5e7eb; */
   display: flex;
   /* height: 66px; */
  gap: 24px;
  /* padding: 14px 20px; */
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}
.candidate-upprtabs
{
padding: 25px;
}
.candidate-page .tab-header button {
  /* padding: 16px 0;
  border: none;
  background: none;
  font-size: 15px;
  color: #6b7280;
  cursor: pointer;
  position: relative; */
   background: transparent;
  border: none;
  font-size: 14px;
  color: #6b7280;
  padding-bottom: 8px;
  cursor: pointer;
}

.candidate-page .tab-header button.active {
 color: #050608;
  border-bottom: 1px solid #050608;
  font-weight: 600;

}
.candidate-tabs-spacer {
  height: 24px;
  background: #eef6ff;
  width: calc(100% + 64px);
    margin-left: -31px;
}
.es-card {
  background: #ffffff;
  border-radius: 8px;
  
}
/* .es-title {
  font-family: Galeana Standard; 
} */
/* wrapper */
.es-field {
  position: relative;
  width: 280px;
  margin-top: 12px;
}

/* label ON border */
.es-field-label {
  position: absolute;
  top: -8px;              /* lifts it above border */
  left: 12px;
  background: #fff;      /* hides border behind text */
  padding: 0 6px;
  font-size: 12px;
  color: #141516;
  z-index: 1;
  font-weight: bold;
}

/* select box */
.es-skill-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 11px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #fff;
  color: #374151;
}

/* dropdown */
/* .es-skill-select {
  width: 280px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #fff;
  color: #374151;
} */

.edu-skill
{
  margin-top: 72px;
}
.candidate-page .tab-header button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
}

/* =========================
   TAB CONTENT
========================= */
.candidate-page .tab-body {
  padding: 0px 25px;
}

/* =========================
   PERSONAL DETAILS CARD
========================= */
.candidate-page .card {
 padding: 0 20px 24px;
  background: #f5f7fb;
}

.candidate-page .card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.candidate-page .card-head h3 {
  font-size: 22px;
}
/* =========================
   PERSONAL DETAILS LIST
========================= */
.candidate-page .personal-details-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.candidate-page .pd-row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: 14px;
}

.candidate-page .pd-row:nth-child(even) {
  background: #fafafa;
}

.candidate-page .pd-row span {
  width: 200px;
  color: #6b7280;
}

.candidate-page .pd-row strong {
  color: #111827;
  font-weight: 500;
}

/* Address row */
.candidate-page .address-row {
  position: relative;
}

/* Edit icon */
.candidate-page .edit-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  font-size: 16px;
}

.candidate-page .edit-btn:hover {
  color: #2563eb;
}

/* .candidate-page .btn-primary { */
  /* background: rgb(25 63 124); */
  /* color: #ffffff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  float:right;
} */

/* =========================
   DETAILS GRID
========================= */
.candidate-page .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 18px;
  column-gap: 60px;
}

/* =========================
   DETAILS GRID – FIX TEXT FLOW
========================= */
.candidate-page .info-grid > div {
  display: flex;
  flex-direction: column;
  gap: 6px; /* spacing between label & value */
}

.candidate-page .info-grid span {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

.candidate-page .info-grid strong {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.candidate-page .info-grid .full {
  grid-column: 1 / -1;
}

/* =========================
   LIST ITEMS
========================= */
.candidate-page .list-item {
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.candidate-page .list-item strong {
  font-size: 15px;
}

.candidate-page .list-item small {
  color: #6b7280;
}

/* =========================
   SKILLS
========================= */
.candidate-page .skill-list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.candidate-page .skill {
  background: #eef2ff;
  color: #3730a3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* =========================
   COMING SOON
========================= */
.candidate-page .coming-soon {
  text-align: center;
  color: #9ca3af;
  padding: 40px 0;
}

/* page 4 */
/* =========================
   MODAL
========================= */
.candidate-page .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.candidate-page .address-modal {
  background: #ffffff;
  width: 720px;
  border-radius: 10px;
  padding: 24px 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.candidate-page .address-modal h3 {
  margin: 18px 0 14px;
  font-size: 18px;
}

/* Close */
#candidate-modal .close-btn {
  position: absolute;
  right: 0px;
  top: 14px;
  border: none;
  background: none;
  font-size: 32px;
  cursor: pointer;
  color: #D3D3D3;
top: 0px;}

/* Form */
.candidate-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.candidate-page .form-grid input {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
}

/* Same address */
.candidate-page .same-address {
  margin: 16px 0;
  display: flex;
  gap: 16px;
  font-size: 14px;
}

/* Actions */
.candidate-page .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.candidate-page .btn-outline {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 6px;
}

/* .candidate-page .btn-primary { */
  /* background: rgb(27 57 106); */
  /* color: #ffffff;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
} */
/* page 3-2 */
/* ================================
   COMMON SPACER
================================ */
/* .candidate-tabs-spacer {
  height: 24px;
  background: #eef6ff;
} */

/* ================================
   EDUCATION & SKILLS TAB
================================ */

.es-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
}

/* HEADERS */
.es-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0px 0 0 0;
}

.es-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  padding:25px 0 0 0;
}
.es-label {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}



/* ================================
   SKILLS
================================ */

.es-skill-select {
  width: 260px;
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  color: #505858;
  background-color: #fff;
}

/* Placeholder look */
.es-skill-select:has(option[value=""]:checked) {
  color: #111827;
}


.es-skill-chip-wrapper {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.es-skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F8F6F2;
  /* border: 1px solid #e5e7eb; */
  border-radius: 999px;
  font-size: 13px;
  font-weight:600;
}

.es-skill-chip span {
  cursor: pointer;
  color: #9ca3af;
}

/* ================================
   EDUCATION LIST
================================ */

.es-education-list {
  margin-top: 10px;
}

.es-education-item {
  display: flex;
  gap: 14px;
  position: relative;
  padding-left: 6px;
  margin-bottom: 18px;
}
.edu-item {
  position: relative;
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.edu-dot {
  position: absolute;
  left: -20px;
  top: 0px;
  width: 10px;
  height: 10px;
  background: #e5e7eb;
  border-radius: 50%;
}
.edu-timeline {
  position: relative;
  padding-left: 28px;
  padding-bottom:10px;
}

/* LEFT VERTICAL LINE */
.edu-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}


.es-timeline-item {
  position: relative;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.es-content strong {
  font-size: 13px;
}
.edu-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}
.edu-content strong {
  font-size: 14px;
  font-weight: 600;
}
.edu-date {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

/* page 2-1 */
/* ================================
   PERSONAL DETAILS (UNIQUE)
================================ */

.pd-unique-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pd-unique-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  padding:25px 0 0 0;
}


/* CARD */
.pd-unique-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
}

/* LIGHT rows (yellow marked) */
.pd-unique-row:nth-child(even) {
  background-color: #ffffff;
}

/* DARK rows (red marked) */
.pd-unique-row:nth-child(odd) {
  background-color: #f9fafb;
}

.pd-unique-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #eef0f3;
  overflow: hidden;
}

/* ROW */
.pd-unique-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f3f5;
  align-items: center;
}

.pd-unique-row:last-child {
  border-bottom: none;
}

.pd-unique-row span {
    font-size: 13px;
    color: #171717;
    font-weight: bold;
}

.pd-unique-row strong {
  font-size: 13px;
  color: #111827;
  font-weight: 500;
}

/* EDIT ICON */
.pd-unique-edit-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #000000;
}

/* .pd-unique-edit-btn:hover {
  color: #4f46e5;
} */
 
/* ================================
   REUSABLE MODAL (UNIQUE)
================================ */

.pd-unique-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pd-unique-modal {
  background: #ffffff;
  width: 620px;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18); */
}

/* HEADER */
.pd-unique-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top:30px;
}

.pd-unique-modal-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.pd-unique-close {
  cursor: pointer;
  color: #9ca3af;
}

/* BODY */
.pd-unique-modal-body {
  padding: 20px;
}

.pd-unique-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.pd-unique-form-group label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
  display: block;
}

.pd-unique-form-group input,
.pd-unique-form-group select {
  width: 100%;
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
}

/* ===== LANGUAGE TAGS ===== */
.pd-unique-lang-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.pd-unique-tag {
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 14px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-unique-tag span {
  cursor: pointer;
  font-weight: bold;
}

/* ===== FOOTER ===== */
.pd-unique-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.pd-unique-save-btn {
  /* background: #303c60; */
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
/* ================================
   LANGUAGE CHIPS (ROUNDED)
================================ */

.pd-unique-lang-chip-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pd-unique-lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 12px;
  color: #111827;
}

.pd-unique-lang-remove {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #6b7280;
}

.pd-unique-lang-remove:hover {
  color: #ef4444;
}
/* ================================
   LANGUAGE SELECT
================================ */
.pd-unique-lang-select {
  width: 100%;
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  background: #ffffff;
}

/* ================================
   LANGUAGE CHIPS (REFERENCE STYLE)
================================ */
.pd-unique-lang-chip-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pd-unique-lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #f9fafb;        /* light background */
  border: 1px solid #e5e7eb;  /* subtle border */
  border-radius: 999px;       /* fully round */
  font-size: 12px;
  color: #111827;
}

.pd-unique-lang-remove {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #9ca3af;
}

.pd-unique-lang-remove:hover {
  color: #ef4444;
}
/* paage 3-2 addedu */
/* ================================
   ADD EDUCATION MODAL (UNIQUE)
================================ */

/* BACKDROP */
.edu-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* MODAL BOX */
.edu-modal {
  width: 640px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.edu-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edu-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.edu-modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

/* BODY */
.edu-modal-body {
  padding: 20px;
}

/* FORM GRID (2 COLUMN) */
.edu-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.edu-form-group {
  display: flex;
  flex-direction: column;
}

.edu-form-group label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

/* INPUTS */
.edu-form-group select,
.edu-form-group input {
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
}

/* FOOTER */
.edu-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}
.candidate-itemd
{
  color: #000;
}
.candidate-itemd span
{
  /* font-family: ; */
  font-size: 15px;
  font-weight: 600;
}
/* SAVE BUTTON */
.edu-modal-save {
  /* background: #303c60; */
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* .edu-modal-save:hover {
  background: #303c60;
} */
/* page 4-1 */
/* ================================
   COMMON CARD
================================ */
.canemp-card {
  background: #ffffff;

  border-radius: 8px;
}

/* HEADER */
.canemp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding:0px 0 0 0;
}





.canemp-title {
 /*  font-size: 20px; */
  font-weight: 600;
  padding:25px 0 0 0;
}

/* ================================
   TIMELINE
================================ */
.canemp-timeline {
  position: relative;
  padding-left: 23px;
}

/* LEFT LINE */
.canemp-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

/* ITEM */
.canemp-item {
  position: relative;
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

/* DOT */
.canemp-dot {
  position: absolute;
  left: -21px;
  top: 1px;
  width: 10px;
  height: 10px;
  background: #e5e7eb;
  border-radius: 50%;
}

/* CONTENT */
.canemp-content strong {
  font-size: 13px;
}

.canemp-sub {
  font-size: 12px;
  color: #757d85;
  margin-top: 2px;
}

.canemp-date {
  font-size: 12px;
  color: #757d85;
  margin-top: 2px;
}

.canemp-note {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

/* ================================
   PROJECT SKILLS
================================ */
.canemp-skill-chip-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.canemp-skill-chip {
  padding: 4px 10px;
  font-size: 11px;
  background: #F8F6F2;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

/* DESCRIPTION */
.canemp-desc {
  font-size: 12px;
  color: #374151;
  margin-top: 6px;
  line-height: 1.5;
   max-height: 120px;   /* adjust as needed */
  overflow-y: auto;    /* vertical scroll */
  overflow-x: hidden;  /* optional */
  padding-right: 6px;  /* space for scrollbar */
}
/* page 4-2 */
/* ================================
   ADD EMPLOYMENT MODAL
================================ */

.canemp-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.canemp-modal {
  width: 640px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.canemp-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.canemp-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.canemp-modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

/* BODY */
.canemp-modal-body {
  padding: 20px;
}

/* FORM GRID */
.canemp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.canemp-form-group {
  display: flex;
  flex-direction: column;
}

.canemp-form-group label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.canemp-form-group select,
.canemp-form-group input {
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
}

/* Full width field */
.canemp-full-width {
  grid-column: span 2;
}

/* FOOTER */
.canemp-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.canemp-modal-save {
  /* background: #2f2a6d; */
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* .canemp-modal-save:hover {
  background: #241f5a;
} */
/* page 4-3 */
/* ================================
   ADD PROJECT MODAL
================================ */

.canproj-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.canproj-modal {
  width: 700px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.canproj-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.canproj-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.canproj-modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

/* BODY */
.canproj-modal-body {
  padding: 20px;
}

/* FORM GRID */
.canproj-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.canproj-form-group {
  display: flex;
  flex-direction: column;
}

.canproj-form-group label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.canproj-form-group input,
.canproj-form-group select,
.canproj-form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
}

.canproj-form-group textarea {
  resize: none;
  height: 90px;
}

/* FULL WIDTH */
.canproj-full-width {
  grid-column: span 2;
}

/* SKILL CHIPS */
.canproj-skill-chip-wrapper {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.canproj-skill-chip {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.canproj-skill-chip span {
  margin-left: 6px;
  cursor: pointer;
  color: #9ca3af;
}

/* FOOTER */
.canproj-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.canproj-modal-save {
  /* background: #2f2a6d; */
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
/* page 5-1 */
/* ================================
   REFERENCES
================================ */

.canref-card {
  background: #ffffff;
  padding: 25px 0;
  border-radius: 8px;
}

/* HEADER */
.canref-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.canref-title {
  font-size: 20px;
  font-weight: 600;
}

/* TABLE */
.canref-table-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.canref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.canref-table thead {
  background: #f9fafb;
}

.canref-table th,
.canref-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.canref-table th {
  font-weight: 600;
  color: #374151;
}

.canref-table tbody tr:last-child td {
  border-bottom: none;
}

/* STATUS */
.canref-status {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.canref-status.verified {
  background: #e6f7ec;
  color: #15803d;
}

.canref-status.pending {
  background: #fef3c7;
  color: #92400e;
}

/* EMPTY STATE */
.canref-empty {
  text-align: center;
  padding: 20px;
  color: #9ca3af;
}
/* page 5-2 */
/* ================================
   ADD REFERENCES MODAL
================================ */

.canref-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.canref-modal {
  width: 560px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.canref-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.canref-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.canref-modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

/* BODY */
.canref-modal-body {
  padding: 20px;
}

/* FORM GRID */
.canref-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.canref-form-group {
  display: flex;
  flex-direction: column;
}

.canref-form-group label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.canref-form-group input {
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
}

/* FULL WIDTH */
.canref-full-width {
  grid-column: span 2;
}

/* FOOTER */
.canref-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.canref-modal-save {
  /* background: #2f2a6d; */
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* .canref-modal-save:hover {
  background: #241f5a;
} */
/* page 6-1 */
/* ================================
   DOCUMENTS & CERTIFICATION
================================ */

.candoc-card {
  background: #ffffff;
  padding: 25px 0;
  border-radius: 8px;
}

/* HEADER */
.candoc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.candoc-title {
  font-size: 20px;
  font-weight: 600;
}


/* TABLE */
.candoc-table-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.candoc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.candoc-table thead {
  background: #f9fafb;
}

.candoc-table th,
.candoc-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.candoc-table th {
  font-weight: 600;
  color: #374151;
}

.candoc-table tbody tr:last-child td {
  border-bottom: none;
}

/* PREVIEW ICON */
.candoc-preview-icon {
  cursor: pointer;
  color: #2f2a6d;
  font-size: 16px;
}

/* EMPTY STATE */
.candoc-empty {
  text-align: center;
  padding: 20px;
  color: #9ca3af;
}

/* SPACER */
.candoc-spacer {
  height: 24px;
  background: #eef6ff;
  /* margin: 20px 0; */
  width:calc(100% + 64px);
}
/* page 5-2 */
/* ================================
   ADD DOCUMENT MODAL
================================ */

.candoc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.candoc-modal {
  width: 620px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.candoc-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.candoc-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.candoc-modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #9ca3af;
}

/* BODY */
.candoc-modal-body {
  padding: 20px;
}

.candoc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.candoc-form-group {
  display: flex;
  flex-direction: column;
}

.candoc-form-group label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.candoc-form-group input {
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
}

/* UPLOAD BOX */
.candoc-upload-box {
  grid-column: span 2;
  border: 1px dashed #9ca3af;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.candoc-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.candoc-upload-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.candoc-upload-content span {
  font-size: 12px;
  color: #6b7280;
}

.candoc-file-name {
  margin-top: 8px;
  font-size: 12px;
  color: #374151;
}

/* FOOTER */
.candoc-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.candoc-modal-save {
  /* background: #2f2a6d; */
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* .candoc-modal-save:hover {
  background: #241f5a;
} */
/* page7 -1 */
/* ================================
   OTHERS TAB (HOBBIES & LINKS)
================================ */

.canoth-card {
  background: #ffffff;
  padding: 25px 0;
  border-radius: 8px;
}

.canoth-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* HOBBIES */
.canoth-select {
  width: 260px;
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
}

.canoth-chip-wrapper {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.canoth-chip {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.canoth-chip span {
  margin-left: 6px;
  cursor: pointer;
  color: #9ca3af;
}

/* SPACER */
.canoth-spacer {
  height: 24px;
  background: #eef6ff;
  /* margin: 20px 0; */
  width: calc(100% + 64px);
}

/* LINKS */
.canoth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.canoth-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.canoth-link-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
/* ICON WITH BORDER */
.canoth-icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
}

.canoth-icon-box svg {
  font-size: 20px;
  color: #0a66c2; /* LinkedIn blue */
}

.canoth-link-item svg {
  font-size: 20px;
  /* color: #2f2a6d; */
}

.canoth-link-url {
  font-size: 12px;
  color: #6b7280;
}

.canoth-empty {
  font-size: 13px;
  color: #9ca3af;
}
/* page-7-3 */
.cert-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cert-modal {
  background: #fff;
  width: 560px;
  border-radius: 10px;
  padding: 24px;
  position: relative;
}

.cert-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.cert-modal-title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.cert-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.cert-form-row.two-col {
  flex-direction: row;
  gap: 16px;
}

.cert-form-row input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.cert-upload-box {
  border: 2px dashed #1e90ff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin: 16px 0;
}

.cert-upload-box p {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

.cert-modal-actions {
  text-align: right;
}

.cert-save-btn {
  /* background: #2f3a5a; */
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.cert-field {
  position: relative;
  width: 100%;
}

.cert-field input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.cert-field label {
  position: absolute;
  top: 50%;
  left: 12px;
  background: #fff;
  padding: 0 6px;
  color: #6b7280;
  font-size: 13px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.2s ease;
}

.cert-field input:focus + label,
.cert-field input:not(:placeholder-shown) + label {
  /* top: -6px; */
  font-size: 12px;
  color: #374151;
}

/* page8-2 */
.canlink-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.canlink-modal {
  background: #fff;
  width: 460px;
  border-radius: 10px;
  padding: 22px;
  position: relative;
}

.canlink-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.canlink-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.canlink-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.canlink-row.two-col {
  flex-direction: row;
  gap: 16px;
}

.canlink-row label {
  font-size: 13px;
  color: #444;
}

.canlink-row input,
.canlink-row select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.canlink-actions {
  margin-top: 20px;
  text-align: right;
}

.canlink-save-btn {
  /* background: #2f3a5a; */
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
/* step -1 */
/* =========================
   COMPLETE STEP – ACTION REQUIRED
========================= */
.can-first-step h3 {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #b5b1b157;
    margin-bottom: 24px;
       /* font-family: Galeana Standard; */ 
    padding: 10px;
      /* margin-left: 27px; */

}
.app-action-banner {
  background: #fff6c7;                 /* light yellow */
  border: 1px solid #ffe08a;
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  /* margin-left: 27px; */
}

.app-action-bannercandidate {
  background: #f5f4f4;                 /* light yellow */
  border: 1px solid #f5f4f4;
  border-radius: 6px;
  padding: 14px 16px;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  margin-bottom: 24px;
    margin-top: 24px;
    color: #fff;

  /* margin-left: 27px; */
}
.menu-titlecandidate
{
  color: #fff;
}
/* LEFT TEXT */
.app-action-banner h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.app-action-banner p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #4b5563;
}

/* RIGHT BUTTON */
/* .app-btn-primary { */
  /* background: #1f2a44; */
  /* color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
} */

/* .app-btn-primary:hover {
  background: #2b375f;
} */
/* step -2 */
/* =========================
   STEP 2 – SHORTLISTED CARD
========================= */
.app-step.app-complete-step {
  background: #f5f4f4;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* 🔴 API META LINE */
.app-step-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE */
.app-step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

/* DESCRIPTION */
.app-step-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 14px;
}

/* GREEN HIGHLIGHT STRIP */
.app-complete-highlight {
  background: #eaffea;
  border-radius: 4px;
  /* padding: 14px; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.app-complete-icon {
  font-size: 50px;
}

.app-complete-text {
  font-size: 21px;
  font-weight: 600;
  /* color: #15803d; */
}

/* BUTTON ALIGNMENT */
.app-complete-action {
  display: flex;
  justify-content: flex-end;
}

/* COMPLETE PROFILE BUTTON */
/* .app-btn-complete-profile { */
  /* background: #1f2a44; */
  /* color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
} */

/* .app-btn-complete-profile:hover {
  background: #2b375f;
} */
/* step -3 */
/* =========================
   STEP 3 – INTERVIEW ASSIGNED
========================= */
.app-step.app-interview-assigned-step {
  background: #f5f4f4;          /* light grey background */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (NOT BOLD) */
.app-step-meta {
  font-size: 11px;
  font-weight: 400;             /* explicitly NOT bold */
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (ONLY BOLD TEXT) */
.app-step-title {
  font-size: 15px;
  font-weight: 600;             /* BOLD */
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NOT BOLD) */
.app-step-desc {
  font-size: 13px;
  font-weight: 400;             /* normal */
  color: #4b5563;
  line-height: 1.5;
}
/* step-4 */
/* STEP 4 CARD */
.app-step.app-interview-scheduled-step {
  background: #f5f4f4;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE */
.app-step-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE */
.app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

/* SUBTITLE */
.app-step-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* DIVIDER */
.app-step-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0 16px;
}

/* MEETING DETAILS GRID (FIXED) */
.app-meeting-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;     /* ⬅️ reduced gap */
  row-gap: 14px;
  align-items: start;
}

/* EACH ROW */
.app-meeting-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
}

/* LABEL */
.app-meeting-label {
  font-weight: 600;
  color: #111827;
  min-width: 70px;     /* ⬅️ forces spacing after colon */
}

/* VALUE */
.app-meeting-value {
  font-weight: 400;
  color: #111827;
}

/* BUTTONS BOTTOM RIGHT */
.app-meeting-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}


/* step 5 */
/* =========================
   STEP 5 – INTERVIEW COMPLETED
========================= */
.app-step.app-interview-completed-step {
  background: #F5F4F4;           /* light grey like screenshot */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (NOT BOLD) */
.app-step-meta {
  font-size: 11px;
  font-weight: 400;              /* explicitly normal */
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (ONLY BOLD TEXT) */
.app-step-title {
  font-size: 15px;
  font-weight: 600;              /* BOLD */
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NOT BOLD) */
.app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* steps green line *//* =========================
   TIMELINE WRAPPER
========================= */
.app-timeline {
  position: relative;
  background: #FFFFFF;
  padding-left: 28px;   /* space for line + dots */
  padding-right: 20px; 
}

/* Vertical green line */
.app-timeline::before  {
  content: "";
  position: absolute;
top: var(--timeline-start, 0);  bottom: 0;
  left: 9px;
  margin-top: 164px; 
  width: 2px;
  background: #22c55e; /* green */
}
/* =========================
   AUTO DOT FOR EACH STEP
========================= */
.app-step {
  position: relative;
  /* font-family: Galeana Standard; */ 
}

/* Green dot */
.app-step::before {
  content: "";
  position: absolute;
  left: -22px;          /* aligns with vertical line */
  top: -20px;            /* aligns with step title */
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}
/* step-6 */
/* =========================
   STEP – APPROVED
========================= */
.app-step.app-approved-step {
  background: #F5F4F4;        /* light grey */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (API DATA, NOT BOLD) */
.app-approved-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (BOLD) */
.app-approved-step .app-step-title {
  font-size: 15px;
  font-weight: 600;           /* BOLD */
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NORMAL) */
.app-approved-step .app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* step-7 */
/* =========================
   MANAGERIAL INTERVIEW STEP
========================= */
.app-step.app-managerial-interview-step {
  background: #F5F4F4;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE */
.app-managerial-interview-step .app-step-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE */
.app-managerial-interview-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

/* SUBTITLE */
.app-managerial-interview-step .app-step-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* DIVIDER */
.app-managerial-interview-step .app-step-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0 16px;
}

/* MEETING DETAILS GRID */
.app-managerial-interview-step .app-meeting-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 14px;
}

/* BUTTONS */
.app-managerial-interview-step .app-meeting-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

/* REJECT */
.app-btn-reject {
  background: #dc2626;
  color: #ffffff;
  border-radius: 4px;
  padding: 8px 30px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.copylinkrec
{
  padding: 7px 18px 7px 18px;
}
.joinrec
{
      padding: 1px 38px 1px 38px;
}
/* .app-btn-reject:hover {
  background: #b91c1c;
} */

/* ACCEPT */
.app-btn-accept {
  /* background: #1f2a44; */
  color: #ffffff;
  border-radius: 4px;
  padding: 8px 30px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

/* .app-btn-accept:hover {
  background: #2b375f;
} */
/* reject popup */
/* =========================
   OVERLAY
========================= */
.rrp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* =========================
   MODAL
========================= */
.rrp-modal {
  background: #ffffff;
  width: 520px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* =========================
   HEADER
========================= */
.rrp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.rrp-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.rrp-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
}

/* =========================
   BODY
========================= */
.rrp-body {
  padding: 16px;
}

.rrp-field {
  margin-bottom: 16px;
}

.rrp-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.rrp-select {
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
}

.rrp-textarea {
  width: 100%;
  min-height: 100px;
  padding: 8px 10px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  resize: vertical;
}

/* =========================
   FOOTER
========================= */
.rrp-footer {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.rrp-btn-save {
  /* background: #1f2a44; */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.rrp-btn-save:hover {
  background: #2b375f;
}
/* page-8 */
/* =========================
   INTERVIEW COMPLETED – FINAL STEP
========================= */
.app-step.app-interview-completed-final-step {
  background: #F5F4F4;          /* light grey */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (API DATA) */
.app-interview-completed-final-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (BOLD) */
.app-interview-completed-final-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NORMAL) */
.app-interview-completed-final-step .app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* step-9 */
/* =========================
   APPROVED & VERIFICATION IN PROGRESS
========================= */
.app-step.app-approved-verification-step {
  background: #F5F4F4;          /* light grey */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (API DATA) */
.app-approved-verification-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (BOLD) */
.app-approved-verification-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NORMAL) */
.app-approved-verification-step .app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* step 10 */
/* =========================
   BACKGROUND VERIFICATION COMPLETED
========================= */
.app-step.app-bg-verification-completed-step {
  /* background: #f9fafb;      */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (API DATA) */
.app-bg-verification-completed-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (BOLD) */
.app-bg-verification-completed-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NORMAL) */
.app-bg-verification-completed-step .app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* step 12 */
/* =========================
   OFFER UNDER PREPARATION
========================= */
.app-step.app-offer-under-preparation-step {
  background: #F5F4F4;          /* light grey */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (API DATA) */
.app-offer-under-preparation-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (BOLD) */
.app-offer-under-preparation-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NORMAL) */
.app-offer-under-preparation-step .app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* step 13 */
/* =========================
   OFFER LETTER RECEIVED
========================= */
.app-step.app-offer-letter-received-step {
  background: #F5F4F4;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE */
.app-offer-letter-received-step .app-step-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE */
.app-offer-letter-received-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.app-offer-letter-received-step .app-step-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 12px;
}

/* GREEN HIGHLIGHT STRIP */
.app-offer-highlight {
  background: #eaffea;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.app-offer-icon {
  font-size: 50px;
}

.app-offer-highlight-title {
  font-size: 18px;
  font-weight: 600;
  /* color: #15803d; */
}

.app-offer-highlight-subtitle {
  font-size: 13px;
  /* color: #166534; */
}

/* ACTION ROW */
.app-offer-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* VIEW OFFER */
.app-offer-view-link {
  font-size: 13px;
  color: #1f2a44;
  text-decoration: none;
  font-weight: 500;
}

.app-offer-view-link:hover {
  text-decoration: underline;
}

/* ACCEPT & ESIGN BUTTON */
/* .app-btn-accept-esign { */
  /* background: #1f2a44; */
  /* color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
} */

/* .app-btn-accept-esign:hover {
  background: #2b375f;
} */
/* step-14 */
/* =========================
   PRE-JOINING IN PROGRESS
========================= */
.app-step.app-pre-joining-step {
  background: #F5F4F4;          /* light grey */
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 22px;
}

/* META LINE (API DATA) */
.app-pre-joining-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

/* TITLE (BOLD) */
.app-pre-joining-step .app-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* DESCRIPTION (NORMAL) */
.app-pre-joining-step .app-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}
/* step-15 */
/* =========================
   PRE-JOINING DETAILS CONFIRMED (META ONLY)
========================= */
.app-step.app-pre-joining-details-confirmed-step {
  background: transparent;
  padding: 6px 0;
  margin-bottom: 14px;
}
.oxyem-mark-MR, .oxyem-mark-Technical, .oxyem-mark-Approved, .oxyem-mark-Offered, .oxyem-mark-Hired, .oxyem-mark-Screening {color: var(--theme-active-color-text); font-size: var(--theme-small-text60); background-color: var(--theme-active-color); padding: 4px;
    border-radius: 15px; cursor: default;
    width: 80px;
    display: block; 
    text-align: center; text-transform: capitalize;}
/* META LINE */
.app-pre-joining-details-confirmed-step .app-step-meta {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
}
.meta-bold {
  font-weight: 600;
  color: #0b0a0a;
}
.selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
 
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #f8f6f2;
  /* border: 1px solid #e5e7eb; */
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}
 
.chip-remove {
  background: none;
  border: none;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}
 
.chip-remove:hover {
  color: #111827;
}
.es-card .css-1mbl7v0-indicatorSeparator {
  display: none !important;
}
.candidate-edit-icon {
	top: 10px;
	right: 10px;
	background: #fff;
	border-radius: 50%;
	padding: 0px 5px;
	cursor: pointer;
	height:20px;
	width:20px;
}
#candidate-modal .top-heading-text-tab{

font-weight: bold;
    /* font-family: 'Galeana Standard'; */
    font-size: 28px;
}
#candidate-modal .form-label 
{
font-weight: bold;
    /* font-family: 'Galeana Standard'; */
    font-size: 14px;
}
/* ===== Candidate Dashboard Tooltip reclast ===== */
.bg-timeline
{
    background: #F5F4F4;
    padding: 16px;
    margin-bottom: 22px;
}
.candash-tooltip-wrapper {
  background: transparent !important;
  padding: 0 !important;
  max-width: unset !important;
}

.candash-status-tooltip {
  background: #ffffff;
  color: #1e293b;
  padding: 12px 14px;
  border-radius: 8px;
  width: 290px; /* smaller width */
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
  font-family: inherit;
}

.candash-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.candash-tooltip-title {
  font-weight: 600;
  font-size: 14px;
}

.candash-tooltip-time {
  font-size: 12px;
  color: #6b7280;
}

.candash-tooltip-body {
  font-size: 13px;
  line-height: 1.4;
  color: #334155;
}
.btn-disabled-can {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
/*reclast */
#candidate-modal .css-1mbl7v0-indicatorSeparator
{
  display:none;
}
#candidate-modal .css-1jqq78o-placeholder
{
  color: #000000;
  font-weight: 400;
  /* font-family: 'Galeana Standard'; */
}
.edu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.edu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.addpopup
{
      margin-right: 9px;
    color: #6C757D;
    border-color: #6C757D;
}

.circleaddress {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: #a49e9e;
    vertical-align: middle;
    text-align: center;
    line-height: 20px;
    float: right;
    cursor: pointer;
    font-size: 20px;
}

@media (max-width: 768px) {
  /* Mobile styles here */
  .avatar-block {
  text-align: center;
}
.avatar-edit {
    right:82px;
}
.candidate-header {
  padding: 45px 5px;
}
.candidate-page .tab-body {
    padding: 25px;
}
.candidate-page .resume-card {
  
    padding: 24px 5px;
   
}
}
/* candidate css end*/
/* candidate css end*/

/* login page css start */
    :root {
      --ox-navy:    #050e2d;
      --ox-blue:    #0a2885;
      --ox-mid:     #1450d4;
      --ox-bright:  #2d7dfa;
      --ox-sky:     #5ba4fc;
      --ox-accent:  #00d4ff;
      --ox-light:   #e8f1ff;
      --ox-white:   #f5f8ff;
      --ox-muted:   #7b93c8;
      --ox-border:  rgba(45,125,250,.18);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      background: var(--ox-white);
      color: #0d1b3e;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .display-font { font-family: 'Syne', sans-serif; }

    /* ─── NAVBAR ─── */
    .navbar {
      background: rgba(5, 14, 45, 0.97) !important;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--ox-border);
      padding: 1rem 0;
      transition: background .3s;
    }
    .navbar-brand {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: .04em;
      color: #fff !important;
    }
    .navbar-brand span { color: var(--ox-accent); }
    .navbar-nav .nav-link {
      color: rgba(255,255,255,.72) !important;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .5rem 1rem !important;
      transition: color .2s;
    }
    .navbar-nav .nav-link:hover { color: var(--ox-accent) !important; }
    .navbar-toggler { border-color: var(--ox-border); }
    .navbar-toggler-icon { filter: invert(1); }

    .btn-nav-login {
      background: var(--ox-mid) !important;
      color: #fff !important;
      border-radius: 4px;
      padding: .45rem 1.3rem !important;
      font-weight: 600 !important;
      transition: background .2s, transform .15s;
    }
    .btn-nav-login:hover { background: var(--ox-blue) !important; color: var(--ox-mid) !important; }


    /* ─── HERO ─── */
    /* ─── HERO ─── */
    .hero-section {
      min-height: 100vh;
      background: var(--ox-navy);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(var(--ox-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--ox-border) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridShift 20s linear infinite;
      opacity: .4;
    }
    @keyframes gridShift {
      from { background-position: 0 0; }
      to   { background-position: 60px 60px; }
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
    }
    .orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(20,80,212,.55), transparent 70%); top: -100px; right: -80px; animation: float 8s ease-in-out infinite; }
    .orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(0,212,255,.25), transparent 70%); bottom: 80px; left: 5%; animation: float 10s ease-in-out infinite reverse; }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .45rem;
      background: rgba(45,125,250,.15);
      border: 1px solid var(--ox-border);
      color: var(--ox-accent);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      animation: fadeUp .7s .1s both;
    }
    .hero-badge .dot { width: 6px; height: 6px; background: var(--ox-accent); border-radius: 50%; animation: pulse 1.5s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

    .hero-title {
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      font-weight: 800;
      line-height: 1.05;
      color: #fff;
      animation: fadeUp .7s .25s both;
    }
    .hero-title .accent { color: var(--ox-accent); }
    .hero-title .stroke { -webkit-text-stroke: 1.5px var(--ox-sky); color: transparent; }

    .hero-sub {
      color: var(--ox-muted);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 520px;
      animation: fadeUp .7s .4s both;
    }

    .hero-actions { animation: fadeUp .7s .55s both; }

    .btn-primary-ox {
      background: linear-gradient(135deg, var(--ox-mid), var(--ox-bright));
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: .8rem 2rem;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(45,125,250,.4);
    }
    .btn-primary-ox:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(45,125,250,.55); color: #fff; }

    .btn-outline-ox {
      background: transparent;
      color: #fff;
      border: 1px solid var(--ox-border);
      border-radius: 6px;
      padding: .8rem 2rem;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: border-color .2s, background .2s, color .2s;
    }
    .btn-outline-ox:hover { border-color: var(--ox-accent); background: rgba(0,212,255,.06); color: var(--ox-accent); }

    .hero-stats { animation: fadeUp .7s .7s both; }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .stat-num span { color: var(--ox-accent); }
    .stat-lbl { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ox-muted); margin-top: .3rem; }
    .stat-divider { width: 1px; height: 40px; background: var(--ox-border); }

    .hero-card {
      background: rgba(10,40,133,.5);
      border: 1px solid var(--ox-border);
      border-radius: 16px;
      padding: 2rem;
      backdrop-filter: blur(10px);
      animation: fadeUp .8s .5s both;
    }
    .job-mini {
      background: rgba(255,255,255,.04);
      border: 1px solid var(--ox-border);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-bottom: .75rem;
      display: flex; align-items: center; gap: 1rem;
      transition: background .2s, transform .2s;
    }
    .job-mini:hover { background: rgba(45,125,250,.1); transform: translateX(4px); }
    .job-mini:last-of-type { margin-bottom: 0; }
    .job-icon {
      width: 40px; height: 40px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .job-mini-title { font-family: 'Syne', sans-serif; font-weight: 600; color: #fff; font-size: .9rem; }
    .job-mini-dept { font-size: .72rem; color: var(--ox-muted); letter-spacing: .05em; }
    .badge-hot { background: rgba(0,212,255,.15); color: var(--ox-accent); border: 1px solid rgba(0,212,255,.3); font-size: .65rem; letter-spacing: .08em; padding: .2rem .55rem; border-radius: 4px; white-space: nowrap; }


       /* ─── SECTION COMMONS ─── */
    .section-eyebrow {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ox-mid);
      margin-bottom: .6rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--ox-navy);
    }
    .section-title span { color: var(--ox-mid); }

    /* ─── JOBS ─── */
    .jobs-section { padding: 7rem 0; background: var(--ox-white); }

    .filter-pill {
      background: transparent;
      border: 1px solid #c5d5f0;
      color: #3a5ba0;
      border-radius: 100px;
      padding: .4rem 1.2rem;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .05em;
      cursor: pointer;
      transition: all .2s;
    }
    .filter-pill:hover, .filter-pill.active {
      background: var(--ox-mid);
      border-color: var(--ox-mid);
      color: #fff;
    }

    .job-card {
      background: #fff;
      border: 1px solid #dce8ff;
      border-radius: 14px;
      padding: 1.8rem;
      height: 100%;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative;
      overflow: hidden;
    }
    .job-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ox-mid), var(--ox-accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .job-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(20,80,212,.12); border-color: #b0cbff; }
    .job-card:hover::after { transform: scaleX(1); }

    .job-dept-badge {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }
    .badge-eng { background: #e8f0ff; color: #1450d4; }
    .badge-design { background: #e8f9ff; color: #0077aa; }
    .badge-product { background: #edf5e8; color: #2a7a30; }
    .badge-data { background: #fef3e8; color: #b05e00; }
    .badge-mkt { background: #f5e8ff; color: #7a30b0; }

    .job-card-title { font-size: 1.15rem; font-weight: 700; color: var(--ox-navy); margin-bottom: .5rem; }
    .job-card-desc { font-size: .85rem; color: #5a6f99; line-height: 1.6; margin-bottom: 1.2rem; }
    .job-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
    .meta-tag {
      display: inline-flex; align-items: center; gap: .3rem;
      font-size: .72rem;
      color: #7b93c8;
      background: #f0f5ff;
      padding: .25rem .7rem;
      border-radius: 100px;
    }
    .job-apply-btn {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .8rem; font-weight: 700;
      color: var(--ox-mid);
      text-decoration: none;
      margin-top: 1.2rem;
      letter-spacing: .04em;
      transition: gap .2s, color .2s;
    }
    .job-apply-btn:hover { color: var(--ox-bright); gap: .7rem; }

    /* ─── WHY ─── */
    .why-section {
      padding: 7rem 0;
      background: linear-gradient(160deg, var(--ox-navy) 0%, var(--ox-blue) 60%, #081a5a 100%);
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse at 80% 20%, rgba(0,212,255,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(45,125,250,.1) 0%, transparent 50%);
    }
    .why-card {
      background: rgba(255,255,255,.05);
      border: 1px solid var(--ox-border);
      border-radius: 14px;
      padding: 2.2rem;
      height: 100%;
      text-align: center;
      transition: background .25s, transform .25s;
      position: relative;
      overflow: hidden;
    }
    .why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }
    .why-icon-wrap {
      width: 62px; height: 62px; border-radius: 14px;
      background: linear-gradient(135deg, var(--ox-mid), var(--ox-bright));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: #fff;
      margin: 0 auto 1.4rem;
      box-shadow: 0 6px 20px rgba(45,125,250,.4);
    }
    .why-card h5 { font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: .7rem; }
    .why-card p { font-size: .87rem; color: var(--ox-muted); line-height: 1.65; margin: 0; }
    .why-number {
      position: absolute; bottom: 1rem; right: 1.2rem;
      font-family: 'Syne', sans-serif;
      font-size: 3.5rem; font-weight: 800;
      color: rgba(255,255,255,.04); line-height: 1;
    }
    .perk-strip {
      background: rgba(255,255,255,.03);
      border: 1px solid var(--ox-border);
      border-radius: 12px;
      padding: 2rem;
    }
    .perk-item { display: flex; align-items: flex-start; gap: .8rem; }
    .perk-icon { color: var(--ox-accent); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
    .perk-title { font-family: 'Syne', sans-serif; font-weight: 600; color: #fff; font-size: .9rem; margin-bottom: .2rem; }
    .perk-desc { font-size: .8rem; color: var(--ox-muted); line-height: 1.5; }

    /* ─── LOGIN ─── */
    .login-section {
      padding: 7rem 0;
      background: var(--ox-white);
      position: relative;
      overflow: hidden;
    }
    .login-bg-blob {
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 50%;
      background: linear-gradient(160deg, var(--ox-light), #d0e4ff);
      clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
    }
    .login-info { position: relative; z-index: 2; }
    .login-info h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--ox-navy); line-height: 1.15; margin-bottom: 1rem; }
    .login-info h2 span { color: var(--ox-mid); }
    .login-info p { color: #5a6f99; line-height: 1.7; font-size: .95rem; max-width: 440px; }
    .benefit-list { list-style: none; padding: 0; margin: 1.8rem 0 0; }
    .benefit-list li {
      display: flex; align-items: center; gap: .75rem;
      padding: .7rem 0;
      border-bottom: 1px solid #dce8ff;
      font-size: .88rem; color: #3a5ba0; font-weight: 500;
    }
    .benefit-list li:last-child { border-bottom: none; }
    .benefit-list li i { color: var(--ox-mid); font-size: 1rem; flex-shrink: 0; }

    .login-form-card {
      background: #fff;
      border: 1px solid #dce8ff;
      border-radius: 20px;
      padding: 2.8rem;
      box-shadow: 0 20px 60px rgba(20,80,212,.12);
      position: relative; z-index: 2;
    }
    .card-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ox-mid); margin-bottom: .4rem; }
    .login-form-card h3 { font-size: 1.6rem; font-weight: 800; color: var(--ox-navy); margin-bottom: .2rem; }
    .login-form-card .subtitle { font-size: .84rem; color: #7b93c8; margin-bottom: 1.8rem; }

    .form-tabs .nav-link {
      color: #7b93c8;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: .82rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: none;
      border-bottom: 2px solid transparent;
      padding: .6rem 1.2rem;
      border-radius: 0;
      transition: color .2s, border-color .2s;
    }
    .form-tabs .nav-link.active { color: var(--ox-mid); border-bottom-color: var(--ox-mid); background: transparent; }
    .form-tabs { border-bottom: 1px solid #dce8ff; margin-bottom: 1.6rem; }

    .form-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: #7b93c8; margin-bottom: .4rem; }
    .form-controlhome, .form-selecthome {
      border: 1px solid #dce8ff;
      border-radius: 8px;
      padding: .7rem 1rem;
      font-size: .9rem;
      color: var(--ox-navy);
      background: #f8faff;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-controlhome:focus, .form-selecthome:focus {
      border-color: var(--ox-mid);
      box-shadow: 0 0 0 3px rgba(20,80,212,.1);
      background: #fff;
    }
    .form-controlhome::placeholder { color: #b0c4e8; }

    .btn-form-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--ox-blue), var(--ox-mid));
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: .85rem;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: box-shadow .2s, transform .15s;
      box-shadow: 0 4px 18px rgba(20,80,212,.3);
      cursor: pointer;
    }
    .btn-form-submit:hover { box-shadow: 0 8px 28px rgba(20,80,212,.45); transform: translateY(-2px); }

    .social-auth-btn {
      display: flex; align-items: center; justify-content: center; gap: .6rem;
      border: 1px solid #dce8ff;
      background: #f8faff;
      border-radius: 8px;
      padding: .65rem;
      font-size: .82rem;
      font-weight: 600;
      color: var(--ox-navy);
      cursor: pointer;
      transition: border-color .2s, background .2s;
      width: 100%;
    }
    .social-auth-btn:hover { border-color: var(--ox-mid); background: #f0f5ff; }

    .or-divider {
      display: flex; align-items: center; gap: .8rem;
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: #b0c4e8; margin: 1.2rem 0;
    }
    .or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: #dce8ff; }

    .form-link { color: var(--ox-mid); text-decoration: none; font-weight: 600; }
    .form-link:hover { text-decoration: underline; }

    .pw-wrap { position: relative; }
    .pw-toggle {
      position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: #b0c4e8; cursor: pointer; padding: 0; font-size: 1rem;
    }

    /* ─── FOOTER ─── */
    .site-footer { background: var(--ox-navy); padding: 4rem 0 0; }
    .footer-brand { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: .04em; }
    .footer-brand span { color: var(--ox-accent); }
    .footer-desc { font-size: .84rem; color: var(--ox-muted); line-height: 1.65; max-width: 260px; margin-top: .8rem; }
    .footer-col-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ox-sky); margin-bottom: 1.2rem; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: .6rem; }
    .footer-links a { color: var(--ox-muted); font-size: .85rem; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--ox-accent); }
    .footer-bottom { border-top: 1px solid var(--ox-border); padding: 1.4rem 0; margin-top: 3.5rem; }
    .footer-bottom p { font-size: .78rem; color: #3a5585; margin: 0; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {  transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 767px) {
      .login-bg-blob { display: none; }
      .stat-divider { display: none; }
    }

/* login page css end */

/*tab issue fix */
@media (max-width: 1024px) {
  .canref-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .canref-table-wrapper table {
    min-width: 700px;
    width: max-content;
  }
  
}
@media (min-width: 768px) and (max-width: 1024px) {
  .col-md-2,
  .col-md-10 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .candidate-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .candidate-right-top {
    width: 100%;
    text-align: left;
  }

   .candidate-left-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .candidate-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
  }

  .designation {
    width: 100%;
    margin-top: 4px;
  }
   .avatar-block {
    width: fit-content;
    display: inline-block;
    position: relative;
  }

  .candidate-avatar {
    display: block;
  }

  .avatar-edit {
    position: absolute;
    bottom: 13px;
    right: 4px;
  }
}
@media (max-width: 576px) {
      .avatar-edit {
        right: 100px;
    }
    .candidate-left-top {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start;
  }

    .candidate-name {
    width: 100%;
    justify-content: center;
  }

  .designation {
    width: 100%;
    text-align: center;
  }

   .es-card .form-group label {
    display: none;
  }

 .meeting-banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }

  .meeting-notice {
    flex: 1;
    min-width: 0;
  }

  .meeting-notice strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
  }

  .meeting-sub {
    display: block;
    margin-left: 0 !important;
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.4;
    word-break: break-word;
  }

  .meeting-banner .btn {
    flex-shrink: 0;
    padding: 4px 8px;
    font-size: 11px;
    min-width: auto;
  }
}