/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* scroll */
*::-webkit-scrollbar {
  width: 0px;
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
  background: #aaa;
}

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

a {
  text-decoration: none;
  color: #6a7381;
}

body {
  background-color: #f3f5f8;
}

input,
textarea,
select {
  font-size: 13px !important;
}

/* start slider banner in hr */
.home-hr {
  /* position: absolute;
  top: 0;
  top: 0; */
  left: 250px;
  height: auto;
  /* width: calc(100% - 250px); */
  /* background-color: var(--body-color); */
  transition: var(--tran-05);
  width: 90%;
  margin: 0 auto;
}

.home-hr-section {
  padding: 10px 70px;
}

.home-hr h1 {
  padding: 0 12px;
  font-size: 35px;
  font-weight: bold;
}

.home-hr .banner {
  background: linear-gradient(to right, #6084bf, #3b82f6);
  padding: 20px;
  border-radius: 15px;
  color: white;
  position: relative;
}

.home-hr .banner .stat {
  font-size: 1.5rem;
  font-weight: bold;
}

.banner {
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  border-radius: 15px;
  padding: 20px;
  margin: 10px;
  position: relative;
  /* height: 200px; */
}

.stat {
  font-size: 24px;
  font-weight: bold;
}

.slick-prev:before,
.slick-next:before {
  color: var(--company-brand-primary, #7b2cbf);
}

.swiper-pagination-bulle {
  background-color: #fff !important;
  color: #fff !important;
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.brain-title {
  color: #5a189a;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brain-card {
  background-color: #7a2cbff0;
  /* background: radial-gradient(115.49% 100% at 49.96% 100%, #a34bfc 0, #a34bfc 100%); */
  color: white;
  border-radius: 15px;
  padding: 20px;
  margin: 10px;
  position: relative;
  height: 200px !important;
}

.new-brain-card {
  /* background-color: #e2e8f0; */
  background: linear-gradient(141deg, #7a2cbf13 0%, #b6b6b6 51%, #b6b6b6 75%);
  color: #1a202c;
}

.brain-icon {
  position: absolute;
  right: 15px;
  bottom: 10px;
  width: 170px;
  height: 170px;
}

.stat {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.settings-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
  color: var(--company-brand-primary, #7b2cbf);
}

.create-new-btn {
  background-color: white;
  color: #1a202c;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  text-decoration: none;
}

.modal-content {
  border-radius: 15px;
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 5px 10px;
  display: inline-block;
  cursor: pointer;
}

/* section content */
.nav-tabs .nav-link {
  color: #000;
  border: none;
}

.nav-tabs .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.file-icon {
  margin-right: 10px;
}

.come-back {
  background-color: #e6f2ff;
  color: #0066cc;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

.uploader {
  text-align: center;
  border: 1px solid royalblue;
  margin: 15px 0;
  padding: 30px 0;
  border-radius: 5px;
}

.uploader label {
  cursor: pointer;
}

/* data of brain */

.file-item {
  width: 100%;
  background-color: #fff;
  padding: 15px;
  border: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
  transition: all .3s;
}

.file-item:hover {
  background-color: #ffffff3c;
}

.dropdown-item:hover {
  background-color: transparent !important;
}

@media (max-width: 900px) {
  .home-hr-section {
    padding: 30px 50px;
  }
}

@media (max-width: 500px) {
  .home-hr-section {
    padding: 30px 5px;
  }

  /* .brain-icon {
    display: none;
  } */
  .brain-icon {
    position: absolute;
    right: 0px;
    bottom: 20px;
    width: 90px;
    height: 90px;
  }

  .nav-item {
    font-size: 14px;
  }

  .nav-link {
    padding: 5px;
  }

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: .1rem;
  }
}

/* this is a home page and it contact with js code in small screens  */
@media screen and (max-width: 868px) {
  .sidebar {
    left: -250px;
  }

  .sidebar.close {
    left: -88px;
  }

  .sidebar.show {
    left: 0;
  }

  .home-hr {
    left: 0;
    width: 100%;
  }

  .sidebar.close~.home-hr,
  .sidebar.show~.home-hr {
    left: 0;
    width: 100%;
  }
  .hr-section {
    width: 96%;
  }
}

/* end slider banner in hr */


/* page HR_jobs */
.Hr-header {
  padding: 20px 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.head-data {
  padding: 0 30px;
}

.head-data h1 {
  font-size: 18px;
  font-weight: bold;
}

.job-card {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
}

.job-title {
  font-size: 16px;
  font-weight: bold;
}
.job-title a {
  font-size: 20px;
}
.job-title a:hover {
text-decoration: underline;
}
.job-title .job-details {
  font-size: 14px;
  font-weight: 100;
  /* padding: 0 10px; */
  color: gray;
}

/* ==============================================
   NEBLUE PAGINATION (jobs list)
   ============================================== */
.neblue-pagination-wrapper {
  margin-top: 20px;
  margin-bottom: 24px;
  padding: 10px 0;
}

.neblue-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.neblue-pagination-info {
  margin: 0;
  font-size: 13px;
  color: #6a7381;
  font-weight: 500;
}

.neblue-pagination-info-from,
.neblue-pagination-info-to,
.neblue-pagination-info-total {
  font-weight: 600;
  color: #374151;
}

.neblue-pagination-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.neblue-pagination-item {
  display: inline-flex;
}

.neblue-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.neblue-pagination-link:hover:not(.neblue-pagination-link--disabled):not(.neblue-pagination-link--active) {
  background-color: #eff6ff;
  color: #7a36b6f0;
  border-color: #7a36b6f0;
}

.neblue-pagination-link--active {
  background: linear-gradient(135deg, #7a36b6f0 0%, #7a36b6f0 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(122, 54, 182, 0.35);
  pointer-events: none;
}

.neblue-pagination-link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.neblue-pagination-link--prev,
.neblue-pagination-link--next {
  gap: 6px;
}

.neblue-pagination-item--disabled .neblue-pagination-link {
  cursor: not-allowed;
}

.neblue-pagination-item--active .neblue-pagination-link {
  font-weight: 600;
}

@media (max-width: 576px) {
  .neblue-pagination {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .neblue-pagination-list {
    justify-content: center;
  }
  .neblue-pagination-info {
    order: -1;
  }
}

.job-metrics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.job-metrics div {
  text-align: center;
}

.status-btn {
  background-color: #7a36b6f0;
  color: white;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.status-btn:hover {
  background-color: #fff;
  color: #7a36b6;
  border: 1px solid #7a36b6;
}

.publish-btn {
  background-color: #7a36b6;
  color: #fff;
  padding: 7px 15px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.candidate-btn {
  color: #6c757d;
  padding: 7px 15px;
  border: 1px solid rgb(128, 128, 128);
  background-color: transparent;
  border-radius: 5px;
  font-size: 12px;
}
.candidate-btn:hover {
  background-color: #6c757d;
  color: #fff;
transition: all 0.3s ease;
}
.talent-pool-section {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.talent-pool-title {
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.talent-pool-info span {
  font-size: 13px !important;
  font-weight: 100 !important;
  padding: 0 15px !important;
}

.talent-pool-info {
  font-size: 13px;
  color: #6c757d;
}

.section-title {
  font-size: 13px;
  color: #6c757d;
  font-weight: bold;
  margin-bottom: 10px;
}

.times-data p {
  font-size: 13px;
  color: #6a7381;
}

.times-data p a {
  color: #7a13d4f0;
}

.link-upload {
  color: #7a13d4f0;

}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #FFF8E1;
  color: black;
}

.dropdown-menu-jobs {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}

.dropdown-menu {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.dropdown-menu a {
  font-size: 15px;
  color: gray;
}

.dropdown-menu .dropdown-item {
  font-size: 12px !important;
}

.vacancy-image {
  display: flex;
  justify-content: center;
}

.vacancy-image img {
  height: auto;
  width: 400px;
}

/* media queries */
@media (max-width: 768px) {
  .job-metrics {
    gap: 20px;
    justify-content: flex-start;
  }

  .dropdown-menu {
    max-width: 100%;
  }

  .dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
    font-size: 12px;
  }

  .dropdown-item {
    padding: 5px 10px;
    font-size: 12px !important;
  }

  .dropdown-menu .dropdown-item {
    font-size: 12px !important;
  }

  .vacancy-image img {
    width: 250px;
  }
}


/* page uploaded cv */
.main-upload {
  width: 60%;
  margin: 0 auto;
}

.upload {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-cv h1 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}

.wrapper-file {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.wrapper-file header {
  color: #7a13d4f0;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.wrapper-file .form {
  height: 150px;
  display: flex;
  cursor: pointer;
  margin: 3px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 1px dashed #7a36b6f0;
}


.form :where(i, p) {
  color: #7a13d4f0;
}

.form i {
  font-size: 30px;
}

.form p {
  margin-top: 15px;
  font-size: 16px;
}

section .row-progress {
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 7px 10px;
  border-radius: 5px;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}

section .row-progress i {
  font-size: 20px;
}

section .details span {
  font-size: 14px;
}

.progress-area .row-progress .progress-content {
  width: 100%;
  margin-left: 15px;
}

.progress-area .details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4px;
  justify-content: space-between;
}

.progress-area .progress-content .progress-bar {
  height: 6px;
  width: 100%;
  margin-bottom: 4px;
  background: #fff;
  border-radius: 30px;
}

.progress-content .progress-bar .progress-part {
  height: 100%;
  width: 0%;
  background: #7a13d4f0;
  border-radius: inherit;
}

.uploaded-area {
  max-height: 180px;
  overflow-y: scroll;
}

.uploaded-area {
  max-height: 232px;
  overflow-y: scroll;
}

.uploaded-area::-webkit-scrollbar {
  width: 0;
}

.uploaded-area.onprogress {
  max-height: 150px;
}

.uploaded-area::-webkit-scrollbar {
  width: 0px;
}

.uploaded-area .row-progress .progress-content {
  display: flex;
  align-items: center;
}

.uploaded-area .row-progress .details {
  display: flex;
  margin-left: 15px;
  flex-direction: column;
}

.uploaded-area .row-progress .details .size {
  color: #404040;
  font-size: 11px;
}

.uploaded-area i.fa-check {
  font-size: 16px;
}


.module-section {
  padding: 15px 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.module-content p {
  font-weight: bold;
  font-size: 18px;
}

.parent-tags .wrapper-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid #dee2e6;
  padding: 4px 10px;
  border-radius: 10px;
  margin: 5px 8px;
}

.input-tag {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 4px 0;
  flex: 1;

}

.item-tag {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: max-content;
  box-shadow: 0 2px 10px 0 rgb(0, 0, 0, 8%);
  padding: 8px;
  background-color: #7a13d4f0;
  color: #fff;
  border-radius: 25px;
  font-size: 15px;
  cursor: default;
}

.btn-rm-tag {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 11px;
  cursor: pointer;
}

.tags-length {
  display: block;
  text-align: right;
  padding: 10px 5px;
  font-size: 14px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.actions a i {
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .main-upload {
    width: 90%;
    margin: 0 auto;
  }

  .module-section {
    padding: 15px;
  }

  .wrapper-file {
    border-radius: 5px;
    padding: 10px;
  }

  .head-data {
    padding: 0 15px;
  }

  .Hr-header {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 500px) {
  .main-upload {
    width: 96%;
    margin: 0 auto;
  }

  section .row-progress {
    padding: 15px 7px;
    margin: 10px 0;
  }

  .head-data {
    padding: 26px 5px;
  }

  .Hr-header {
    padding: 15px 5px;
  }

  .upload-cv h1 {
    font-size: 18px;
    font-weight: 600;
  }

  .module-section {
    padding: 8px;
  }
}

/* create new job */

.complete-info-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.complete-info-link .data-link {
  padding: 5px 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.complete-info-link .data-link:hover {
  transform: translateY(-2px);
}

.complete-info-link .data-link a {
  font-weight: 700;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.complete-info-link .data-link:hover a {
  color: #7a36b6;
}

.complete-info-link .data-link small {
  font-size: 12px;
  line-height: 1.4;
  color: #666;
}

/* Content wrapper styles for hover effects */
.content-wrapper {
  background-color: #f8f9fa;
  padding: 15px;
  height: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 54, 182, 0.1), transparent);
  transition: left 0.5s ease;
}

.content-wrapper:hover::before {
  left: 100%;
}

.content-wrapper:hover {
  background-color: #fff;
  border-color: #7a36b6;
  box-shadow: 0 8px 25px rgba(122, 54, 182, 0.15);
  transform: translateY(-3px);
}

.content-wrapper.active {
  background-color: #fff;
  border-color: #7a36b6;
  box-shadow: 0 8px 25px rgba(122, 54, 182, 0.15);
  transform: translateY(-3px);
}

.content-wrapper small {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  margin-top: 8px;
  transform: translateY(-10px);
}

/* Active state - always show */
.content-wrapper small.active {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
}

/* Hover state - show for all small elements */
.data-link:hover .content-wrapper small {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
}

/* Additional styling for better UX */
.data-link {
  cursor: pointer;
}

.content-wrapper a {
  position: relative;
  z-index: 2;
}

/* Focus states for accessibility */
.content-wrapper:focus-within {
  outline: 2px solid #7a36b6;
  outline-offset: 2px;
}

/* Animation for step completion indicator */
.content-wrapper.completed::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.job-details-data {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  border-radius: 7px;
}

.job-details-data p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px
}

.btn-generate {
  background-color: #8736dc;
  color: #fff;
  padding: 7px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.btn-clear {
  font-size: 14px;
  /* display: none; */
}

label {
  font-size: 14px;
}

.keyword-tag input {
  color: #000;

}

.keyword-tag {
  background-color: #02a494;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  margin: 2px 4px 2px 0;
  display: inline-flex;
  align-items: center;
}

.keyword-tag .remove-keyword {
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
}

#keyword-container {
  padding: 0.2rem;
  cursor: text;
}

#keyword-input {
  margin: 4px 8px;
}

/* application form */
.container-Application-form .card {
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section,
.form-section-sub {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.form-section:last-child {
  border-bottom: none;
}

.toggle-btn {
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-btn.active {
  background-color: #b468f7f0;
  color: #fff;
}

.toggle-btn.inactive {
  background-color: #e9ecef;
  color: #495057dc;
}

.add-question {
  color: #0d6efd;
  cursor: pointer;
}

/* team-member */
.popup-notice {
  padding: 3px 5px;
  background-color: #e6fef3e1;
  border-radius: 5px;
}

.popup-notice i {
  padding: 0 5px;
}

.popup-notice small {
  font-size: 13px;
}

.fa-exclamation {
  background-color: #6c757d58;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.table-team {
  width: 100%;
  border-collapse: collapse;
}

.table-team tbody tr td {
  border: none !important;
}

.table-team tbody tr td small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.rounded-circle {
  flex-shrink: 0;
  text-align: center;
}

.table-team tbody tr {
  border-bottom: 1px solid #ddd;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.workflow-steps a {
  text-decoration: none;
  color: #6a7381;
  padding: 20px 10px;
  border-radius: 10px;
}

.workflow-steps a.active {
  background-color: #88888818;
}

.workflow-steps a:hover {
  background-color: #88888818;
}

.workflow-step {
  text-align: center;
  flex: 1 1 calc(14.28% - 10px);
  min-width: 80px;
  margin-bottom: 10px;
}

.workflow-step i {
  font-size: 18px;
  color: #888;
}

.evaluation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.evaluation-card {
  flex: 1 1 calc(33.33% - 20px);
  min-width: 250px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.evaluation-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.evaluation-card h5 {
  margin: 10px 0;
  font-size: 15px;
  font-weight: 600;
}

.evaluation-card p {
  margin-top: 15px;
  font-size: 12px;
}

.btn-add {
  margin-top: 10px;
  background-color: transparent;
  color: #00756a;
  padding: 7px 15px;
  border: 1px solid #00756a;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  transition: all .4s;
}

.btn-add:hover {
  background-color: #00756a;
  color: #fff;
}

.workflow-steps a {
  text-decoration: none;
  color: inherit;
}

.workflow-steps a.disabled {
  pointer-events: none;
  cursor: default;
}

.workflow-steps a.disabled .workflow-step {
  opacity: 0.5;
}

.workflow-steps a.disabled i {
  color: #ccc;
}

/* media queries */
@media screen and (max-width: 1000px) {
  .complete-info-link .data-link small {
    font-size: 12px;
  }

  .content-wrapper {
    padding: 12px;
  }

  /* Reduce animation complexity on mobile for better performance */
  .content-wrapper::before {
    display: none;
  }

  .content-wrapper:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(122, 54, 182, 0.1);
  }
}

@media screen and (max-width: 768px) {
  .complete-info-link {
    gap: 10px;
    margin-top: 20px;
  }

  .complete-info-link .data-link {
    padding: 3px 8px;
  }

  .content-wrapper {
    padding: 10px;
  }

  /* On mobile, always show the description text for better UX */
  .content-wrapper small {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    margin-top: 5px;
  }

  /* Disable hover effects on touch devices */
  @media (hover: none) {
    .data-link:hover .content-wrapper small {
      opacity: 1;
      max-height: 100px;
      transform: translateY(0);
    }

    .content-wrapper:hover {
      transform: none;
      background-color: #f8f9fa;
      border-color: transparent;
      box-shadow: none;
    }

    .complete-info-link .data-link:hover {
      transform: none;
    }
  }
}

@media screen and (max-width: 770px) {
  .card-title {
    font-size: 17px;
    font-weight: bold;
  }

  /* table */
  .table-team tbody tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .table-team tbody tr td {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .table-team tbody tr td:nth-child(1),
  .table-team tbody tr td:nth-child(5) {
    align-self: center;
  }

  .table-team tbody tr td:nth-child(4),
  .table-team tbody tr td:nth-child(5) {
    text-align: left;
  }

  .workflow-step {
    flex: 1 1 calc(25% - 10px);
  }

  .evaluation-card {
    flex: 1 1 100%;
  }

  .workflow-steps a {
    padding: 15px 0px;
  }
}

@media (max-width: 576px) {
  .workflow-step {
    flex: 1 1 calc(33.33% - 10px);
  }

  .status-btn {
    padding: 7px 10px;
    font-size: 12px;
  }

  .candidate-btn {
    color: #6c757d;
    padding: 7px 10px;
  }

  .team-members {
    margin-top: 15px;
  }
}

/* sidebar in module hr  */
@media screen and (max-width: 868px) {
  .sidebar {
    position: fixed;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .sidebar header .toggle {
    top: 10px;
    transform: translateY(-50%);
    display: flex;
    background-color: #fff;
    color: #000;
    position: fixed;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px;
    transition: right 0.3s ease;
  }

  /* When sidebar is shown, toggle button is on the right inside sidebar */
  .sidebar.show header .toggle {
    right: 10px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* When sidebar is hidden, toggle button appears on the right edge of screen */
  .sidebar:not(.show) header .toggle {
    right: 10px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* page choose Assessment */
.test-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.test-card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.test-card img {
  width: 50px;
  height: auto;
}

.test-info {
  flex: 1;
  min-width: 200px;
  padding-left: 15px;
}

.test-info h6 {
  font-weight: bold;
  margin: 0;
  font-size: 1.1rem;
}

.test-info p {
  margin: 5px 0 0;
  color: #6c757d;
  font-size: 0.9rem;
}

/* breadcrumb */
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0;
  border-radius: 0.25rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li+li::before {
  content: "/";
  padding: 0 0.3rem;
  color: #6c757d;
  font-size: 14px;
}

.breadcrumb li a {
  color: #b468f7f0;
  text-decoration: none;
  transition: color 0.2s ease-in;
  font-size: 14px;
}

.breadcrumb li a:hover {
  color: #7f3dbaf0;
}

.breadcrumb li.active {
  color: #6c757d;
  pointer-events: none;
}

@media (max-width: 768px) {
  .test-card {
    flex-direction: column;
    text-align: center;
  }

  .test-info {
    padding-left: 0;
    margin-top: 10px;
  }
  .breadcrumb {
    padding: 7px 0;
    margin: 0;
  }
}

/* apply job */

.job-header {
  background-color: rgba(226, 226, 226, 0.341);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
  /* text-align: center; */
}

.job-header h1 {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  margin-top: 1rem;
}

.job-header p {
  font-size: 14px;
  color: #000;
  margin-bottom: 1.5rem;
}

.logo-container {
  margin-bottom: 1.5rem;
}

.logo-container img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.05);
}

.section-title {
  color: #000;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--company-brand-primary, #7b2cbf);
  padding-bottom: 0.5rem;
  font-size: 20px;
}

.list-group-item i,
.list-unstyled li i {
  color: var(--company-brand-primary, #7b2cbf);
}

.list-group-item {
  border-left: 3px solid var(--company-brand-primary, #7b2cbf);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: #fff;
  transform: translateX(5px);
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-apply {
  background-color: #7a36b6f0;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
  transition: all 0.5s;
  font-size: 16px;
  transition: all 0.3s;
}

.btn-apply:hover {
  background-color: #7a36b6f0;
  color: #fff;
}

.skill-badge {
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

#companyInfo {
  display: none;
  margin-top: 1rem;
}

.head-apply {
  padding-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  background-color: #fff;
  width: 100%;
}

.head-apply h1 {
  font-size: 25px;
  font-weight: 600;
  color: var(--company-brand-primary, #7b2cbf);
  padding-bottom: 15px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
}

.tab.active {
  border-bottom: 2px solid #983ce9;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.content-container .context-text {
  margin-bottom: 30px;
}

.content-container .context-text ul {
  padding-left: 20px;
}

.apply-job {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  border-radius: 7px;
  transition: all .3s;
}

.apply-job:hover {
  background-color: #a14deb;
}

@media screen and (max-width: 768px) {
  .job-header {
    padding: 2rem 1rem;
  }

  .job-header h1 {
    font-size: 22px;
  }

  .job-header p {
    font-size: 14px;
  }

  .logo-container img {
    max-width: 140px;
  }
}

/* Page Profile Person */
.person-head-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0;
}

.person-head-links .person-link a {
  font-size: 14px;
  color: #6a7381;
  padding: 7px 15px;
}

.person-head-links .person-link .active {
  background-color: var(--company-brand-primary, #7b2cbf);
  color: #fff;
  border-radius: 7px;
}

.profile-card,
.display-data {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.profile-card .person-info h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 7px;
}

.profile-card .person-info .location,
.profile-card .person-info .phone {
  margin: 5px;
  padding: 5px 0;
  background-color: #d2d2d265;
  border-radius: 20px;
  width: 180px;
  text-align: center;
}

.matches-job details {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 15px 10px;
  border-radius: 5px;
}

.candidate-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #ffffe085;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 5px 15px;
}

.tag {
  background-color: #e0e0e0;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.8em;
}

.resume-info .row h2 {
  font-size: 16px;
  font-weight: bold;
}

.resume-info .data {
  border-bottom: 1px solid #ddddddda;
  margin: 10px 0;
}

.resume-info .data .keyword {
  padding: 5px 7px;
  background-color: #dddddd96;
  border-radius: 15px;
}

.embed-cv h2 {
  font-size: 18px;
  font-weight: bold;
}

.embed-cv embed {
  width: 100%;
  height: 750px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin: 10px 0;
  transition: box-shadow 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);

}

.contact-section .section-title {
  font-size: 16px;
}

.social-icons .social-icon {
  border-radius: 5px;
  font-size: 22px;
}

.social-icons .social-icon .fa-linkedin {
  color: #0077b5;
}

.social-icons .social-icon .fa-github {
  color: #333;
}

@media screen and (max-width: 768px) {
  .embed-cv embed {
    height: 450px;
  }
}

@media screen and (max-width: 450px) {
  .embed-cv embed {
    height: 300px;
  }
}

/* Company Profile */

/* Header Banner (Parent) */
.company_profile_banner {
  background-color: var(--company-brand-primary, #7b2cbf);
  height: 200px;
  position: relative;
  width: 100%;
}

/* Main Container (Parent) */
.company_profile_main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Company Info Section (Parent) */
.company_profile_info-section {
  background-color: #fff;
  padding: 40px 20px 30px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Company Info Wrapper (Child of info-section) */
.company_profile_info-section .company_profile_info-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

/* Logo Image (Child of logo) */
.company_profile_logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--company-brand-primary, #7b2cbf);
}

/* Company Details (Child of info-wrapper) */
.company_profile_info-wrapper .company_profile_details {
  flex: 1;
  min-width: 0;
}

/* Company Name (Child of details) */
.company_profile_details .company_profile_name {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Verified Badge (Child of name) */
.company_profile_name .company_profile_verified-badge {
  color: var(--company-brand-primary, #7b2cbf);
  font-size: 20px;
}

/* Company Services (Child of details) */
.company_profile_details .company_profile_services {
  font-size: 16px;
  color: #555;
  margin-bottom: 6px;
}

/* Company Location (Child of details) */
.company_profile_details .company_profile_location {
  font-size: 16px;
  color: #666;
  margin-bottom: 6px;
}

/* Employee Count (Child of details) */
.company_profile_details .company_profile_employee-count {
  font-size: 16px;
  color: #666;
}

/* Share Button (Child of info-wrapper) */
.company_profile_info-wrapper .company_profile_share-button {
  background: none;
  border: none;
  color: var(--company-brand-primary, #7b2cbf);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.company_profile_share-button:hover {
  background-color: #f8f9fa;
  text-decoration: none;
  color: #5a1a8a;
}

/* Navigation Tabs (Child of info-section) */
.company_profile_info-section .company_profile_navigation-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #e9ecef80;
  padding-bottom: 0;
}

/* Nav Tab (Child of navigation-tabs) */
.company_profile_navigation-tabs .company_profile_nav-tab {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  padding: 15px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.company_profile_nav-tab.active {
  color: var(--company-brand-primary, #7b2cbf);
  border-bottom-color: var(--company-brand-primary, #7b2cbf);
}

.company_profile_nav-tab:hover {
  color: var(--company-brand-primary, #7b2cbf);
  text-decoration: none;
}

/* Content Area (Child of main-container) */
.company_profile_main-container .company_profile_content-area {
  padding: 30px 0;
}

/* Tab Content (Child of content-area) */
.company_profile_content-area .company_profile_tab-content {
  display: none;
}

.company_profile_tab-content.active {
  display: block;
}

/* Company Description (Child of tab-content) */
.company_profile_tab-content .company_profile_description {
  margin-bottom: 10px;
}

.company_profile_description h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.company_profile_description p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Company Stats (Child of tab-content) */
.company_profile_tab-content .company_profile_stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Stat Item (Child of stats) */
.company_profile_stats .company_profile_stat-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.company_profile_stat-item .company_profile_stat-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--company-brand-primary, #7b2cbf);
  margin-bottom: 5px;
}

.company_profile_stat-item .company_profile_stat-label {
  font-size: 14px;
  color: #666;
}

/* Social Media Modal (Parent) */
.company_profile_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content (Child of modal) */
.company_profile_modal .company_profile_modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: none;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.company_profile_modal .company_profile_modal-content h2 {
  font-size: 20px;
}

/* Modal Close (Child of modal-content) */
.company_profile_modal-content .company_profile_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.company_profile_close:hover,
.company_profile_close:focus {
  color: var(--company-brand-primary, #7b2cbf);
  text-decoration: none;
}

/* Social Links (Child of modal-content) */
.company_profile_modal-content .company_profile_social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

/* Social Link (Child of social-links) */
.company_profile_social-links .company_profile_social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.company_profile_social-link:hover {
  transform: scale(1.05);
}

/* Facebook (Child of social-link) */
.company_profile_social-link.company_profile_facebook {
  background-color: #3b5998;
}

/* LinkedIn (Child of social-link) */
.company_profile_social-link.company_profile_linkedin {
  background-color: #0077b5;
}

/* Copy Link Button (Child of modal-content) */
.company_profile_modal-content .company_profile_copy-link {
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.company_profile_copy-link:hover {
  background-color: #5a1a8a;
}

/* Toast Notification (Parent) */
.company_profile_toast {
  position: fixed;
  top: 20px;
  right: 0px;
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* Toast Show (Child of toast) */
.company_profile_toast.show {
  transform: translateX(0);
}

/* Toast Icon (Child of toast) */
.company_profile_toast .company_profile_toast-icon {
  font-size: 16px;
}

/* Jobs Title (Child of jobs-section) */
.company_profile_jobs-section .company_profile_jobs-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

/* Jobs List (Child of jobs-section) */
.company_profile_jobs-section .company_profile_jobs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Job Card (Child of jobs-list) */
.company_profile_jobs-list .company_profile_job-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.company_profile_job-card:hover {
  box-shadow: 0 4px 16px rgba(123, 44, 191, 0.15);
  border-color: var(--company-brand-primary, #7b2cbf);
  transform: translateY(-2px);
}

/* Job Header (Child of job-card) */
.company_profile_job-card .company_profile_job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

/* Job Title (Child of job-header) */
.company_profile_job-header .company_profile_job-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--company-brand-primary, #7b2cbf);
  margin: 0;
  line-height: 1.3;
}

.company_profile_job-card .company_profile_job-header-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

/* Job Location (Child of job-card) */
.company_profile_job-card .company_profile_job-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* Job Type Badge (Child of job-card) */
.company_profile_job-card .company_profile_job-type {
  display: inline-block;
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Job Skills (Child of job-card) */
.company_profile_job-card .company_profile_job-skills {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Job Posted Date (Child of job-card) */
.company_profile_job-card .company_profile_job-posted {
  font-size: 13px;
  color: #999;
}

/* Job Actions (Child of job-card) */
.company_profile_job-card .company_profile_job-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Job Detail Button (Child of job-actions) */
.company_profile_job-actions .company_profile_job-detail-btn {
  background: transparent;
  border: 2px solid var(--company-brand-primary, #7b2cbf);
  color: var(--company-brand-primary, #7b2cbf);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.company_profile_job-detail-btn:hover {
  background-color: var(--company-brand-primary, #7b2cbf);
  color: white;
  text-decoration: none;
}

/* Company Info Grid (Parent) */
.company_profile_company-info {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 20px;
  /* margin: 30px 0; */
}

/* Info Item (Child of company-info) */
.company_profile_company-info .company_profile_info-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--company-brand-primary, #7b2cbf);
}

/* Info Label (Child of info-item) */
.company_profile_info-item .company_profile_info-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--company-brand-primary, #7b2cbf);
  margin-bottom: 8px;
}

/* Info Value (Child of info-item) */
.company_profile_info-item .company_profile_info-value {
  font-size: 16px;
  color: #555;
}

/* Company Description Enhanced (Child of tab-content) */
.company_profile_tab-content .company_profile_description-enhanced {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--company-brand-primary, #7b2cbf);
  margin: 20px 0;
}

.company_profile_description-enhanced h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--company-brand-primary, #7b2cbf);
  margin-bottom: 15px;
}

.company_profile_description-enhanced p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company_profile_main-container {
    padding: 0 15px;
  }

  .company_profile_banner {
    height: 150px;
  }

  .company_profile_info-section {
    padding: 30px 15px 20px;
    margin-top: -50px;
  }

  .company_profile_info-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }


  .company_profile_logo img {
    width: 70px;
    height: 70px;
  }

  .company_profile_name {
    font-size: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .company_profile_share-button {
    align-self: center;
  }

  .company_profile_navigation-tabs {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .company_profile_nav-tab {
    font-size: 16px;
    padding: 12px 0;
  }

  .company_profile_job-card {
    padding: 20px;
  }

  .company_profile_job-title {
    font-size: 18px;
  }

  .company_profile_company-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .company_profile_job-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .company_profile_banner {
    height: 120px;
  }

  .company_profile_info-section {
    margin-top: -40px;
    padding: 25px 15px 15px;
  }




  .company_profile_name {
    font-size: 20px;
  }

  .company_profile_services,
  .company_profile_location,
  .company_profile_employee-count {
    font-size: 14px;
  }

  .company_profile_navigation-tabs {
    gap: 20px;
  }

  .company_profile_nav-tab {
    font-size: 14px;
  }

  .company_profile_share-button {
    font-size: 14px;
    padding: 6px 12px;
  }

  .company_profile_job-card {
    padding: 16px;
  }

  .company_profile_job-title {
    font-size: 16px;
  }

  .company_profile_jobs-title {
    font-size: 20px;
  }

  .company_profile_job-detail-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .company_profile_job-header .company_profile_job-title {
    font-size: 17px;
    font-weight: bold;
  }

  .company_profile_info-wrapper .company_profile_details {
    width: 100%;
    text-align: left;
  }

  .company_profile_details .company_profile_name {
    font-size: 22px;
    font-weight: bold;
    text-align: left;
    display: flex;
    justify-content: flex-start;
  }

  .company_profile_navigation-tabs .company_profile_nav-tab {
    font-size: 16px;
    padding: 10px 0;
  }

  .company_profile_info-section .company_profile_navigation-tabs {
    justify-content: flex-start;
  }

  .company_profile_info-wrapper .company_profile_share-button {
    position: absolute;
    right: 10px;
  }
}

/* tracking page */

/* Header Tracking CV */
.header_tracking_cv {
  background: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container_tracking_cv {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.header_wrapper_tracking_cv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_section_tracking_cv {
  display: flex;
  align-items: center;
}

.logo_img_tracking_cv {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.language_section_tracking_cv {
  display: flex;
  align-items: center;
}

.tracking_content_wrapper_tracking_cv {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

/* Title */
.tracking_title_tracking_cv {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

/* Input Group */
.tracking_input_group_tracking_cv {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

.tracking_input_group_tracking_cv:focus-within {
  box-shadow: 0 6px 20px rgba(23, 162, 184, 0.25);
  transform: translateY(-2px);
}

.tracking_input_tracking_cv {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  font-size: 0.875rem;
  color: #2c3e50;
  outline: none;
  background: white;
}

.tracking_input_tracking_cv::placeholder {
  color: #95a5a6;
}

.tracking_button_tracking_cv {
  padding: 0.75rem 2rem;
  background: #5a189a;
  color: white;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tracking_button_tracking_cv:hover {
  background: #5a189a;
  transform: scale(1.02);
}

.tracking_button_tracking_cv:active {
  transform: scale(0.98);
}

/* Main Content Tracking */
.main_content_tracking_cv {
  padding: 4rem 0;
}

.row_tracking_cv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0rem;
}

.col_lg_4_tracking_cv,
.col_lg_8_tracking_cv {
  width: 94%;
  margin: 0 auto;
}

/* Cards */
.card_tracking_cv {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(90, 24, 154, 0.1);
}

/* Timeline */
.section_title_tracking_cv {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline_list_tracking_cv {
  position: relative;
}

.timeline_item_tracking_cv {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
  border-left: 3px solid #e8eef5;
}

.timeline_item_tracking_cv:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline_dot_tracking_cv {
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  background: #e0e7ef;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.timeline_item_tracking_cv.active_tracking_cv {
  border-left-color: #5a189a;
}

.timeline_item_tracking_cv.active_tracking_cv .timeline_dot_tracking_cv {
  background: #5a189a;
  box-shadow: 0 0 0 6px rgba(90, 24, 154, 0.15);
}

.timeline_title_tracking_cv {
  font-size: 0.8125rem;
  color: #2c3e50;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.timeline_item_tracking_cv.active_tracking_cv .timeline_title_tracking_cv {
  color: #5a189a;
  font-weight: 700;
}

.timeline_date_tracking_cv {
  font-size: 0.6875rem;
  color: #9aa5b1;
}

/* Status Badge */
.status_badge_tracking_cv {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  color: #2e7d32;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.2);
  margin-bottom: 1.5rem;
}

.status_badge_tracking_cv i {
  margin-right: 0.5rem;
}

.main_title_tracking_cv {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.subtitle_tracking_cv {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Progress Steps */
.progress_section_tracking_cv {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem 0;
  position: relative;
  padding: 1rem 0;
}

.progress_section_tracking_cv::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: #e8eef5;
  z-index: 0;
}

.progress_step_tracking_cv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 80px;
  position: relative;
  z-index: 1;
}

.step_icon_tracking_cv {
  width: 56px;
  height: 56px;
  background: #e8eef5;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #9aa5b1;
  transition: all 0.3s ease;
}

.progress_step_tracking_cv.completed_tracking_cv .step_icon_tracking_cv {
  background: #5a189a;
  color: white;
  box-shadow: 0 6px 18px rgba(90, 24, 154, 0.4);
}

.step_label_tracking_cv {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 0.25rem;
}

.progress_step_tracking_cv.completed_tracking_cv .step_label_tracking_cv {
  color: #5a189a;
  font-weight: 700;
}

.step_date_tracking_cv {
  font-size: 0.6875rem;
  color: #9aa5b1;
  text-align: center;
}

/* Match Section */
.match_section_tracking_cv {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border-radius: 12px;
  margin-top: 1rem;
}

.match_header_tracking_cv {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.recommended_badge_tracking_cv {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  color: #2e7d32;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.recommended_badge_tracking_cv i {
  margin-right: 0.375rem;
}

.match_title_tracking_cv {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2c3e50;
  flex: 1;
  min-width: 180px;
}

.scores_grid_tracking_cv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.score_card_tracking_cv {
  text-align: center;
  padding: 1.25rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(90, 24, 154, 0.1);
}

.score_card_tracking_cv:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.25);
}

.score_value_tracking_cv {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5a189a 0%, var(--company-brand-primary, #7b2cbf) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
}

.score_label_tracking_cv {
  font-size: 0.8125rem;
  color: #5a6c7d;
  font-weight: 600;
}

/* Summary */
.summary_box_tracking_cv {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(90, 24, 154, 0.1);
}

.summary_title_tracking_cv {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e50;
}

.summary_text_tracking_cv {
  font-size: 0.8125rem;
  color: #5a6c7d;
  line-height: 1.7;
}

/* Responsive Design */
@media (min-width: 992px) {
  .row_tracking_cv {
    grid-template-columns: 380px 1fr;
  }

  .scores_grid_tracking_cv {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .header_tracking_cv {
    padding: 0.75rem 0;
  }

  .logo_img_tracking_cv {
    height: 32px;
  }

  .tracking_content_wrapper_tracking_cv {
    padding: 1.5rem 1rem;
  }

  .col_lg_4_tracking_cv,
  .col_lg_8_tracking_cv {
    width: 100%;
    margin: 0 auto;
  }

  .tracking_title_tracking_cv {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tracking_input_tracking_cv {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tracking_button_tracking_cv {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .main_content_tracking_cv {
    padding: 2rem 0;
  }

  .card_tracking_cv {
    padding: 1.5rem;
  }

  .main_title_tracking_cv {
    font-size: 1.5rem;
  }

  .progress_section_tracking_cv {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 1.5rem -1.5rem;
    padding: 1rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #5a189a #e8eef5;
  }

  .progress_section_tracking_cv::-webkit-scrollbar {
    height: 6px;
  }

  .progress_section_tracking_cv::-webkit-scrollbar-track {
    background: #e8eef5;
    border-radius: 3px;
  }

  .progress_section_tracking_cv::-webkit-scrollbar-thumb {
    background: #5a189a;
    border-radius: 3px;
  }

  .progress_section_tracking_cv::before {
    left: 40px;
    right: 40px;
  }

  .progress_step_tracking_cv {
    min-width: 100px;
    flex-shrink: 0;
  }

  .step_icon_tracking_cv {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .step_label_tracking_cv {
    font-size: 0.6875rem;
    white-space: nowrap;
  }

  .step_date_tracking_cv {
    font-size: 0.625rem;
  }

  .summary_box_tracking_cv {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container_tracking_cv {
    padding: 1rem;
  }

  .logo_img_tracking_cv {
    height: 28px;
  }

  .tracking_content_wrapper_tracking_cv {
    padding: 1rem 0.5rem;
  }

  .tracking_title_tracking_cv {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tracking_input_tracking_cv {
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .tracking_button_tracking_cv {
    padding: 0.75rem 1.5rem;
  }

  .row_tracking_cv {
    gap: 1.5rem;
    display: flex;
    flex-direction: column-reverse;
  }

  .card_tracking_cv {
    padding: 1rem;
  }

  .section_title_tracking_cv {
    font-size: 1.125rem;
  }

  .main_title_tracking_cv {
    font-size: 1.25rem;
  }

  .progress_section_tracking_cv {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 1rem 0;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
  }

  .progress_section_tracking_cv::before {
    left: 35px;
    right: 35px;
  }

  .progress_step_tracking_cv {
    min-width: 100px;
    flex-shrink: 0;
  }

  .step_icon_tracking_cv {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }

  .step_label_tracking_cv {
    font-size: 0.625rem;
    white-space: nowrap;
  }

  .step_date_tracking_cv {
    font-size: 0.5625rem;
  }

  .score_value_tracking_cv {
    font-size: 1.75rem;
  }
}


/* ============================================================
   AGENCY CVs PAGE  –  parent → child, all classes prefixed -agency
   ============================================================ */

/* ── Stats row (parent) ── */
.agency-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

/* stat card */
.agency-stat-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.125rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #eeeeee;
}

/* stat card icon */
.agency-stat-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.agency-stat-card__icon--total    { background: #f3ecff; color: #771BC8; }
.agency-stat-card__icon--pending  { background: #fef9ec; color: #b07d10; }
.agency-stat-card__icon--confirmed{ background: #edfaf4; color: #1a7a52; }
.agency-stat-card__icon--rejected { background: #fdf2f2; color: #b83232; }

/* stat card body */
.agency-stat-card__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.agency-stat-card__value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
}

.agency-stat-card__label {
  font-size: 0.75rem;
  color: #7a7a8a;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* ── Table card (parent) ── */
.agency-table-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  border: 1px solid #eeeeee;
  overflow: hidden;
}

/* table card header */
.agency-table-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #f3f3f5;
  background: #fdfdfd;
}

/* table card title */
.agency-table-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  /* color: #771BC8; */
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* actions row (child of header) */
.agency-table-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* search wrap */
.agency-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.agency-search-wrap__icon {
  position: absolute;
  left: 0.6rem;
  color: #aaaaaa;
  font-size: 0.75rem;
  pointer-events: none;
}

.agency-search-wrap__input {
  padding: 0.4rem 0.75rem 0.4rem 1.85rem;
  border: 1px solid #e4e4e8;
  border-radius: 8px;
  font-size: 0.8rem;
  width: 200px;
  background: #fafafa;
  color: #374151;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.agency-search-wrap__input:focus {
  border-color: #771BC8;
  box-shadow: 0 0 0 3px rgba(119,27,200,0.08);
  outline: none;
  background: #fff;
}

/* filter toggle button */
.agency-btn-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: #f6f0ff;
  color: #771BC8;
  border: 1px solid #e0d0f5;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.agency-btn-filter:hover,
.agency-btn-filter.active {
  background: #771BC8;
  color: #fff;
  border-color: #771BC8;
}

/* upload button */
.agency-btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: #771BC8;
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
}

.agency-btn-upload:hover {
  background: #5e15a0;
  color: #fff;
  transform: translateY(-1px);
}

/* table card body */
/* .agency-table-card__body {
  padding: 0.875rem 1.25rem 1.125rem;
} */

/* ── Table responsive wrapper (parent of table) ── */
.agency-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #f0f0f2;
}

.agency-table-responsive::-webkit-scrollbar {
  height: 5px;
}

.agency-table-responsive::-webkit-scrollbar-track {
  background: #f0f0f4;
  border-radius: 3px;
}

.agency-table-responsive::-webkit-scrollbar-thumb {
  background: #771BC8;
  border-radius: 3px;
}

.agency-table-responsive::-webkit-scrollbar-thumb:hover {
  background: #5e15a0;
}

/* ── Table ── */
.agency-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.825rem;
  min-width: 860px;
}

/* table head (parent) */
.agency-table__head {
  background: #b6b6b625;
}

.agency-table__head tr {
  background: #b6b6b625;
}

/* table header cells */
.agency-table__th {
  padding: 0.7rem 0.875rem;
  color: #444455;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  font-size: 0.7875rem;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #e0e0e5;
}

.agency-table__th--num     { width: 40px; text-align: center; }
.agency-table__th--actions { text-align: center; }

/* table body rows */
.agency-table__body .agency-table__row {
  /* background: #b6b6b625; */
  /* border-bottom: 1px solid #ebebef; */
  transition: background 0.15s;
}

.agency-table__body .agency-table__row:nth-child(even) {
  background: rgba(182,182,182,0.1);
}

.agency-table__body .agency-table__row:last-child {
  border-bottom: none;
}

.agency-table__body .agency-table__row:hover {
  background: rgba(119,27,200,0.04);
}

/* table cell */
.agency-table__td {
  padding: 0.65rem 0.875rem;
  vertical-align: middle;
  color: #444455;
}

.agency-table__td--num     { text-align: center; font-weight: 600; color: #771BC8; }
.agency-table__td--actions { text-align: center; }

/* ── File cell (child of agency-table__td) ── */
.agency-file-cell {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.agency-file-cell__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.agency-file-cell__icon--pdf { background: #fdeaea; color: #c0392b; }
.agency-file-cell__icon--doc { background: #e8f0fd; color: #2563eb; }

.agency-file-cell__info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.agency-file-cell__name {
  font-weight: 600;
  font-size: 0.79rem;
  color: #1a1a2e;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agency-file-cell__size {
  font-size: 0.71rem;
  color: #aaaabb;
}

/* ── Candidate cell (child of agency-table__td) ── */
.agency-candidate-cell {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.agency-candidate-cell__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #771BC8;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.agency-candidate-cell__info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.agency-candidate-cell__name {
  font-weight: 600;
  font-size: 0.8rem;
  color: #1a1a2e;
  white-space: nowrap;
}

.agency-candidate-cell__email {
  font-size: 0.71rem;
  color: #aaaabb;
}

/* ── Position badge ── */
.agency-position-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  background: #f2eaff;
  color: #6a1db0;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Visibility badge ── */
.agency-visibility {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.agency-visibility--public  { background: #eaf7ef; color: #1a7a52; }
.agency-visibility--private { background: #f2f2f5; color: #777788; }

/* ── Status badge ── */
.agency-status {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.agency-status--pending   { background: #fef8ec; color: #b07d10; }
.agency-status--confirmed { background: #edf9f3; color: #1a7a52; }
.agency-status--rejected  { background: #fdf1f1; color: #b83232; }

/* ── AI badge ── */
.agency-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.agency-ai--done   { background: #eeeeff; color: #3730a3; }
.agency-ai--queued { background: #fef8ec; color: #b07d10; }

/* ── Availability badge ── */
.agency-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.agency-availability .fa-circle { font-size: 0.42rem; vertical-align: middle; }

.agency-availability--available   { background: #edf9f3; color: #1a7a52; }
.agency-availability--placed      { background: #eeeeff; color: #3730a3; }
.agency-availability--unavailable { background: #fdf1f1; color: #b83232; }

/* ── Date cell ── */
.agency-date {
  font-size: 0.77rem;
  color: #888899;
  white-space: nowrap;
}

/* ── Action buttons (child of agency-table__td--actions) ── */
.agency-action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.agency-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.825rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s, transform 0.1s;
}

.agency-action-btn:hover {
  transform: translateY(-1px);
}

.agency-action-btn--view          { background: #f0f0f3; color: #555566; }
.agency-action-btn--view:hover    { background: #555566; color: #fff; }

.agency-action-btn--whatsapp          { background: #e6f9ee; color: #1a8a3c; }
.agency-action-btn--whatsapp:hover    { background: #1a8a3c; color: #fff; }

.agency-action-btn--whatsapp-share       { background: #e8f8f0; color: #0e7a40; }
.agency-action-btn--whatsapp-share:hover { background: #0e7a40; color: #fff; }

.agency-action-btn--email         { background: #eeeeff; color: #4242b8; }
.agency-action-btn--email:hover   { background: #4242b8; color: #fff; }

.agency-action-btn--share         { background: #fff3ea; color: #b05218; }
.agency-action-btn--share:hover   { background: #b05218; color: #fff; }

.agency-action-btn--delete        { background: #fdf1f1; color: #b83232; }
.agency-action-btn--delete:hover  { background: #b83232; color: #fff; }

/* ── Bulk action bar ── */
.agency-bulk-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: #faf5ff;
  border: 1px solid #e2d4f8;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.agency-bulk-bar--hidden {
  display: none;
}

.agency-bulk-bar__count {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #444455;
  flex: 1;
}

.agency-bulk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.agency-bulk-btn--share {
  background: #fff;
  color: #771BC8;
  border-color: #d0aff5;
}

.agency-bulk-btn--share:hover {
  background: #771BC8;
  color: #fff;
  border-color: #771BC8;
}

.agency-bulk-btn--download {
  background: #fff;
  color: #2563eb;
  border-color: #bfdbfe;
}

.agency-bulk-btn--download:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.agency-bulk-btn--delete {
  background: #b83232;
  color: #fff;
  border-color: #b83232;
}

.agency-bulk-btn--delete:hover {
  background: #951f1f;
  border-color: #951f1f;
}

/* ── Checkbox column ── */
.agency-table__th--check,
.agency-table__td--check {
  width: 44px;
  min-width: 44px;
  padding: 0.7rem 0.25rem 0.7rem 0.875rem;
  text-align: center;
  vertical-align: middle;
}

.agency-row-check,
.agency-check-all {
  width: 16px;
  height: 16px;
  accent-color: #771BC8;
  cursor: pointer;
  vertical-align: middle;
}

/* ── Active filter chips bar (child of agency-table-card) ── */
.agency-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem;
  border-bottom: 1px solid #f0f0f4;
  background: #fafafa;
}

.agency-active-filters--hidden {
  display: none;
}

/* individual chip */
.agency-active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.45rem 0.22rem 0.65rem;
  background: #fff;
  border: 1px solid #e0e0e8;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 500;
  color: #444455;
}

/* chip remove button */
.agency-active-filter-chip__remove {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e8e8f0;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #666677;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.agency-active-filter-chip__remove:hover {
  background: #b83232;
  color: #fff;
}

/* clear all */
.agency-active-filters__clear {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  background: none;
  border: none;
  font-size: 0.74rem;
  font-weight: 600;
  color: #771BC8;
  cursor: pointer;
  border-radius: 20px;
  transition: background 0.15s;
}

.agency-active-filters__clear:hover {
  background: #f2eaff;
}

/* ── Share Modal ── */
.agency-share-modal .modal-content {
  border-radius: 14px;
  border: none;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}

.agency-share-modal .modal-header {
  border-bottom: 1px solid #f0f0f4;
  padding: 1rem 1.25rem;
}

.agency-share-modal .modal-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #771BC8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.agency-share-modal .modal-body {
  padding: 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 62vh;
  overflow-y: auto;
}

/* share group (parent) */
.agency-share-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agency-share-group__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #444455;
  text-transform: uppercase;
}

/* pill options (child) */
.agency-share-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.agency-share-option {
  display: inline-flex;
  cursor: pointer;
}

.agency-share-option input[type="checkbox"] {
  display: none;
}

.agency-share-option__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  background: #f5f5f8;
  border: 1.5px solid #e4e4e8;
  border-radius: 20px;
  font-size: 0.775rem;
  font-weight: 500;
  color: #555566;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.agency-share-option input:checked + .agency-share-option__pill {
  background: #f2eaff;
  border-color: #771BC8;
  color: #771BC8;
  font-weight: 600;
}

.agency-share-option__pill:hover {
  border-color: #771BC8;
  color: #771BC8;
  background: #faf5ff;
}

.agency-share-option__company {
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  margin-left: 0.25rem;
}

.agency-share-option input:checked + .agency-share-option__pill .agency-share-option__company {
  color: #9b59d4;
}

/* modal footer */
.agency-share-modal .modal-footer {
  border-top: 1px solid #f0f0f4;
  padding: 0.875rem 1.25rem;
  gap: 0.5rem;
}

.agency-share-cancel {
  padding: 0.45rem 1rem;
  background: #fff;
  border: 1px solid #e4e4e8;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #444455;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.agency-share-cancel:hover {
  border-color: #771BC8;
  color: #771BC8;
}

.agency-share-send {
  padding: 0.45rem 1.125rem;
  background: #771BC8;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.agency-share-send:hover {
  background: #5e15a0;
}

/* share modal scrollbar */
.agency-share-modal .modal-body::-webkit-scrollbar {
  width: 4px;
}

.agency-share-modal .modal-body::-webkit-scrollbar-thumb {
  background: #771BC8;
  border-radius: 3px;
}

/* ── Upload Modal ── */
.agency-upload-modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 45px rgba(15, 23, 42, 0.18);
}

.agency-upload-modal .modal-header {
  border-bottom: 1px solid #f0f0f4;
  padding: 1.1rem 1.4rem;
}

.agency-upload-modal .modal-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.agency-upload-modal .modal-title i {
  color: #771BC8;
}

.agency-upload-modal .modal-body {
  padding: 1.25rem 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* visibility choice */
.agency-upload-visibility {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.agency-upload-visibility__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
}

.agency-upload-visibility__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.agency-upload-visibility__option {
  display: inline-flex;
  align-items: stretch;
  cursor: pointer;
}

.agency-upload-visibility__option input[type="radio"] {
  display: none;
}

.agency-upload-visibility__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  min-width: 150px;
  transition: border-color 0.16s, background 0.16s, box-shadow 0.16s;
}

.agency-upload-visibility__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
}

.agency-upload-visibility__desc {
  font-size: 0.75rem;
  color: #6b7280;
}

.agency-upload-visibility__option input[type="radio"]:checked + .agency-upload-visibility__pill {
  border-color: #771BC8;
  background: #f5ecff;
  box-shadow: 0 0 0 1px rgba(119, 27, 200, 0.08);
}

.agency-upload-visibility__help {
  font-size: 0.75rem;
  color: #6b7280;
}

/* drag & drop zone */
.agency-upload-dropzone {
  position: relative;
  border-radius: 18px;
  border: 2px dashed #d6c3ff;
  background: #faf5ff;
  padding: 2.2rem 1.5rem;
  text-align: center;
  color: #4b2bb2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.agency-upload-dropzone--hover {
  background: #f2e8ff;
  border-color: #771BC8;
}

.agency-upload-dropzone__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f4e6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  color: #771BC8;
  font-size: 1.35rem;
}

.agency-upload-dropzone__title {
  font-size: 0.96rem;
  font-weight: 700;
}

.agency-upload-dropzone__subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.agency-upload-dropzone__browse {
  margin-top: 0.4rem;
  padding: 0.45rem 1.2rem;
  border-radius: 8px;
  border: none;
  background: #771BC8;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(119, 27, 200, 0.25);
}

.agency-upload-dropzone__browse i {
  font-size: 0.85rem;
}

.agency-upload-dropzone__hint {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: #9ca3af;
}

/* selected files list – row pills, flex-wrap */
.agency-upload-files {
  margin-top: 0.6rem;
  border-radius: 14px;
  border: 1px solid #e8e4f4;
  background: #F7F5FC;
  padding: 0.6rem 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-height: 220px;
  overflow-y: auto;
  align-content: flex-start;
}

.agency-upload-files::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.agency-upload-files::-webkit-scrollbar-thumb {
  background: #c4b5e0;
  border-radius: 4px;
}

.agency-upload-file {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  border-radius: 14px;
  background: #F7F5FC;
  border: 1px solid #e0dcec;
  box-shadow: 0 2px 6px rgba(119, 27, 200, 0.06);
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  flex-shrink: 0;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.agency-upload-file:hover {
  border-color: #d0c8e8;
  box-shadow: 0 3px 10px rgba(119, 27, 200, 0.1);
}

.agency-upload-file__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.agency-upload-file__icon {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  background: #771BC8;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(119, 27, 200, 0.25);
}

.agency-upload-file__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.agency-upload-file__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.25;
}

.agency-upload-file__size {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
}

.agency-upload-file__badge {
  font-size: 0.7rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}

.agency-upload-file__remove {
  width: 26px;
  height: 26px;
  border: none;
  background: #e5e7eb;
  color: #6b7280;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.agency-upload-file__remove:hover {
  background: #b91c1c;
  color: #fff;
  transform: scale(1.08);
}

.agency-upload-empty {
  padding: 0.6rem 0.65rem;
  font-size: 0.8rem;
  color: #9ca3af;
  width: 100%;
  text-align: center;
}

.agency-upload-modal .modal-footer {
  border-top: 1px solid #f0f0f4;
  padding: 0.9rem 1.4rem;
}

.agency-upload-cancel {
  padding: 0.45rem 1.1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}

.agency-upload-cancel:hover {
  border-color: #771BC8;
  color: #771BC8;
}

.agency-upload-confirm {
  padding: 0.45rem 1.25rem;
  background: #771BC8;
  border-radius: 8px;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.agency-upload-confirm:hover {
  background: #5e15a0;
}

/* ── Table empty state ── */
.agency-table__empty-td {
  padding: 0;
}

.agency-table-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 3.5rem 1rem;
  text-align: center;
}

.agency-table-empty__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #c8c8d8;
  margin-bottom: 0.5rem;
}

.agency-table-empty__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #555566;
  margin: 0;
}

.agency-table-empty__text {
  font-size: 0.8rem;
  color: #9999aa;
  margin: 0;
}

/* ── Share modal searchable select ── */
.agency-share-search-select {
  border: 1px solid #e4e4e8;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}

.agency-share-search-select__input-wrap {
  position: relative;
  border-bottom: 1px solid #f0f0f4;
  background: #fafafa;
}

.agency-share-search-select__input-wrap i {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaaaaa;
  font-size: 0.7rem;
  pointer-events: none;
}

.agency-share-search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  border: none;
  font-size: 0.8rem;
  color: #374151;
  background: transparent;
  outline: none;
}

.agency-share-search-input::placeholder {
  color: #b0b0bb;
}

.agency-share-search-select__list {
  max-height: 130px;
  overflow-y: auto;
  padding: 0.4rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.agency-share-search-select__list::-webkit-scrollbar {
  width: 4px;
}

.agency-share-search-select__list::-webkit-scrollbar-thumb {
  background: #771BC8;
  border-radius: 3px;
}

.agency-share-search-select__empty {
  font-size: 0.78rem;
  color: #aaaaaa;
  padding: 0.5rem 0.25rem;
  width: 100%;
  text-align: center;
}

.agency-share-selected-count {
  font-size: 0.72rem;
  color: #771BC8;
  font-weight: 600;
  margin-top: 0.3rem;
  min-height: 1rem;
}

/* ── Date range inputs (in offcanvas) ── */
.agency-filter-date-range {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 0.5rem;
}

.agency-filter-date-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.agency-filter-date-label {
  font-size: 0.72rem;
  color: #888899;
  font-weight: 500;
}

/* ── Filter text input (in offcanvas) ── */
.agency-filter-input {
  width: 100%;
  padding: 0.4rem 0.75rem;
  border: 1px solid #e4e4e8;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #374151;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.agency-filter-input:focus {
  border-color: #771BC8;
  box-shadow: 0 0 0 3px rgba(119,27,200,0.08);
  outline: none;
  background: #fff;
}

/* ── Pagination (parent) ── */
.agency-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  padding: 10px;
}

.agency-pagination__info {
  font-size: 0.78rem;
  color: #888899;
}

.agency-pagination__controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* prev / next buttons */
.agency-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.8rem;
  background: #fff;
  border: 1px solid #e4e4e8;
  border-radius: 7px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #444455;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.agency-pagination__btn:hover:not(:disabled) {
  background: #771BC8;
  border-color: #771BC8;
  color: #fff;
}

.agency-pagination__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* page number buttons (child of agency-pagination__controls) */
.agency-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.agency-pagination__page {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid #e4e4e8;
  background: #fff;
  font-size: 0.775rem;
  font-weight: 600;
  color: #444455;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.agency-pagination__page:hover {
  border-color: #771BC8;
  color: #771BC8;
}

.agency-pagination__page--active {
  background: #771BC8;
  border-color: #771BC8;
  color: #fff;
}

/* ── Filter Offcanvas (Bootstrap) ── */
.agency-offcanvas {
  width: 320px !important;
}

.agency-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f0f0f4;
  padding: 1rem .7rem;
}

.agency-offcanvas .offcanvas-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #771BC8;
}

.agency-offcanvas .offcanvas-body {
  padding: 1rem .7rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

/* filter group (parent) */
.agency-filter-group {
  display: flex;
  flex-direction: column;
}

.agency-filter-group__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #444455;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

/* filter option checkboxes (child) */
.agency-filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s;
}

.agency-filter-option:hover {
  background: #f6f0ff;
}

.agency-filter-option input[type="checkbox"] {
  accent-color: #771BC8;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.agency-filter-option__text {
  font-size: 0.8125rem;
  color: #374151;
  font-weight: 500;
}

/* offcanvas footer actions */
.agency-offcanvas-footer {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid #f0f0f4;
  margin-top: auto;
}

.agency-offcanvas-footer .agency-btn-apply {
  flex: 1;
  padding: 0.5rem 1rem;
  background: #771BC8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.agency-offcanvas-footer .agency-btn-apply:hover {
  background: #5e15a0;
}

.agency-offcanvas-footer .agency-btn-reset {
  padding: 0.5rem 1rem;
  background: #fff;
  color: #444455;
  border: 1px solid #e4e4e8;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.agency-offcanvas-footer .agency-btn-reset:hover {
  border-color: #771BC8;
  color: #771BC8;
}
.agency-amount {
  font-weight: 500;
}
/* ============================================================
   AGENCY CVs  –  Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .agency-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .agency-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .agency-stat-card {
    padding: 0.75rem 0.5rem;
    gap: .5rem;
  }
  .agency-stat-card__icon {
    width: 30px;
    height: 30px;
    font-size: .8rem;
  }
  .agency-table-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .agency-table-card__actions {
    width: 100%;
  }

  .agency-search-wrap {
    flex: 1;
  }

  .agency-search-wrap__input {
    width: 100%;
  }

  .agency-pagination {
    /* flex-direction: column; */
    /* align-items: center; */
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .agency-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: .5rem;
  }

  .agency-amount , .agency-table__company {
    font-size: 0.75rem;
  }

  .agency-stat-card__value {
    font-size: 1rem;
  }
.agency-table__td {
  padding: 0.6rem;
  vertical-align: middle;
  color: #444455;
}
  .agency-table-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .agency-btn-filter,
  .agency-btn-upload {
    width: 100%;
    justify-content: center;
  }

  .agency-offcanvas {
    width: 80% !important;
  }
}

/* ============================================================
   PROFILE CV PAGE  –  parent before child, prefix profile_cv
   ============================================================ */

.profile_cv {
  background: #f3f5f8;
  padding: 0 0 2rem;
}

.profile_cv .profile_cv__wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Sidebar (parent) ── */
.profile_cv .profile_cv__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 1.25rem;
  align-self: flex-start;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  /* padding: 0.5rem 0.35rem 0.5rem 0; */
  background: #f3f5f8;
  border-radius: 16px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
}

.profile_cv .profile_cv__sidebar::-webkit-scrollbar {
  width: 5px;
}

.profile_cv .profile_cv__sidebar::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 4px;
  margin: 0.25rem 0;
}

.profile_cv .profile_cv__sidebar::-webkit-scrollbar-thumb {
  background: #771BC8;
  border-radius: 4px;
}

.profile_cv .profile_cv__sidebar::-webkit-scrollbar-thumb:hover {
  background: #5e15a0;
}

.profile_cv .profile_cv__sidebar .profile_cv__header {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  text-align: center;
}

.profile_cv .profile_cv__sidebar .profile_cv__header .profile_cv__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #f4e6ff;
  color: #771BC8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__header .profile_cv__name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.75rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.profile_cv .profile_cv__sidebar .profile_cv__contact .profile_cv__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #374151;
  margin-bottom: 0.4rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__contact .profile_cv__contact-item i {
  color: #771BC8;
  width: 1rem;
  flex-shrink: 0;
}

.profile_cv .profile_cv__sidebar .profile_cv__contact .profile_cv__contact-item a {
  color: #374151;
  text-decoration: none;
  word-break: break-all;
}

.profile_cv .profile_cv__sidebar .profile_cv__contact .profile_cv__contact-item a:hover {
  color: #771BC8;
}

.profile_cv .profile_cv__sidebar .profile_cv__status-wrap {
  text-align: center;
}

.profile_cv .profile_cv__sidebar .profile_cv__status {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.profile_cv .profile_cv__sidebar .profile_cv__status--confirmed {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.profile_cv .profile_cv__sidebar .profile_cv__status--rejected {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.profile_cv .profile_cv__sidebar .profile_cv__status--pending {
  background: #fef9c3;
  color: #a16207;
  border: 1px solid #fde047;
}

.profile_cv .profile_cv__sidebar .profile_cv__actions {
  display: flex;
  gap: 0.5rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__actions .profile_cv__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.profile_cv .profile_cv__sidebar .profile_cv__actions .profile_cv__btn--confirm {
  background: #16a34a;
  color: #fff;
}

.profile_cv .profile_cv__sidebar .profile_cv__actions .profile_cv__btn--confirm:hover {
  background: #15803d;
}

.profile_cv .profile_cv__sidebar .profile_cv__actions .profile_cv__btn--reject {
  background: #b91c1c;
  color: #fff;
}

.profile_cv .profile_cv__sidebar .profile_cv__actions .profile_cv__btn--reject:hover {
  background: #991b1b;
}

.profile_cv .profile_cv__sidebar .profile_cv__social {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.profile_cv .profile_cv__sidebar .profile_cv__social .profile_cv__social-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.5rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__social .profile_cv__social-links {
  display: flex;
  gap: 0.5rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__social .profile_cv__social-links .profile_cv__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.profile_cv .profile_cv__sidebar .profile_cv__social .profile_cv__social-links .profile_cv__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile_cv .profile_cv__sidebar .profile_cv__social .profile_cv__social-links .profile_cv__social-link--linkedin {
  background: #0a66c2;
}

.profile_cv .profile_cv__sidebar .profile_cv__social .profile_cv__social-links .profile_cv__social-link--github {
  background: #24292f;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-row .profile_cv__cv-link {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #771BC8;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-row .profile_cv__cv-link:hover {
  text-decoration: underline;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-row .profile_cv__cv-link i {
  font-size: 1.25rem;
  color: #c0392b;
  flex-shrink: 0;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-download {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3ecff;
  color: #771BC8;
  border: 1px solid #e0d0f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-download:hover {
  background: #771BC8;
  color: #fff;
  border-color: #771BC8;
}

.profile_cv .profile_cv__sidebar .profile_cv__cv-doc .profile_cv__cv-date {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.35rem;
}

/* ── Main content (parent) ── */
.profile_cv .profile_cv__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile_cv .profile_cv__main .profile_cv__card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-head i {
  color: #771BC8;
  font-size: 1rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-head .profile_cv__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__summary {
  margin: 0;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__skills .profile_cv__skill-tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: #f3f4f6;
  color: #374151;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__experience {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__experience .profile_cv__exp-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f4;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__experience .profile_cv__exp-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__experience .profile_cv__exp-item .profile_cv__exp-role {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__experience .profile_cv__exp-item .profile_cv__exp-company {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__experience .profile_cv__exp-item .profile_cv__exp-period {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.15rem;
}

/* Education */
.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__education {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__education .profile_cv__edu-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f4;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__education .profile_cv__edu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__education .profile_cv__edu-item .profile_cv__edu-degree {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__education .profile_cv__edu-item .profile_cv__edu-school {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__education .profile_cv__edu-item .profile_cv__edu-period {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.15rem;
}

/* Projects */
.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__projects {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__projects .profile_cv__project-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f4;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__projects .profile_cv__project-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__projects .profile_cv__project-item .profile_cv__project-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__projects .profile_cv__project-item .profile_cv__project-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.25rem;
  line-height: 1.45;
}

.profile_cv .profile_cv__main .profile_cv__card.profile_cv__card--projects.profile_cv__card--hidden {
  display: none;
}

/* Professional skills (soft) */
.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__pro-skills {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__pro-skills li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #1f2937;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__pro-skills li:last-child {
  margin-bottom: 0;
}

/* Languages */
.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__languages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__languages .profile_cv__lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__languages .profile_cv__lang-item:last-child {
  border-bottom: none;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__languages .profile_cv__lang-item .profile_cv__lang-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}

.profile_cv .profile_cv__main .profile_cv__card .profile_cv__card-body .profile_cv__languages .profile_cv__lang-item .profile_cv__lang-level {
  font-size: 0.8125rem;
  color: #6b7280;
  padding: 0.15rem 0.5rem;
  background: #f3f4f6;
  border-radius: 20px;
}

/* Profile CV responsive */
@media (max-width: 992px) {
  .profile_cv .profile_cv__wrap {
    grid-template-columns: 1fr;
  }
}

/* create job by guest */
  /* ----- Tips sidebar (advanced) ----- */

  .jobs-tips-sidebar-head-gest {
    margin-bottom: 0.5rem;
}

.jobs-tips-sidebar-badge-gest {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a36b6;
    background: rgba(122, 54, 182, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.4rem;
}

.jobs-tips-sidebar-title-gest {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.jobs-tips-sidebar-title-gest .fa-graduation-cap {
    color: #7a36b6;
}

.jobs-tips-sidebar-intro-gest {
    font-size: 0.7rem;
    line-height: 1.45;
    color: #64748b;
    margin-bottom: 0;
}

.jobs-tips-sidebar-list-gest {
    margin: 0 0 0.5rem 0;
    padding-left: 1.2rem;
    list-style: decimal;
}

.jobs-tips-sidebar-item-gest {
    padding: 0.4rem 0;
    border-bottom: 1px solid #eef1f7;
    line-height: 1.45;
}

.jobs-tips-sidebar-item-gest:last-child {
    border-bottom: none;
}

.jobs-tips-sidebar-item-label-gest {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.15rem;
}

.jobs-tips-sidebar-item-desc-gest {
    display: block;
    font-size: 0.68rem;
    color: #64748b;
    line-height: 1.45;
}

.jobs-tips-sidebar-footer-gest {
    font-size: 0.62rem;
    color: #94a3b8;
    padding: 0.4rem 0.45rem;
    background: rgba(148, 163, 184, 0.08);
    border-radius: 8px;
    border-left: 3px solid #cbd5e1;
}

/* ----- Custom Questions Modal (guest) ----- */
.jobs-custom-questions-modal-gest
    .modal-content.jobs-custom-questions-modal-content-gest {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.jobs-custom-questions-modal-header-gest {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.jobs-custom-questions-modal-title-wrap-gest {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jobs-custom-questions-modal-icon-gest {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 54, 182, 0.25);
    color: #7a36b6;
    border-radius: 8px;
    font-size: 12px;
}

.jobs-custom-questions-modal-title-gest {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
}

.jobs-custom-questions-modal-body-gest {
    padding: 12px;
}

.jobs-custom-questions-modal-description-gest {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 7px 10px;
    margin-bottom: 7px;
}

.jobs-custom-questions-modal-description-text-gest {
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: #6b7280;
}

.jobs-custom-questions-modal-list-wrap-gest {
    min-height: 60px;
}

.jobs-custom-questions-row-gest {
    display: grid;
    grid-template-columns: 1fr 130px 40px;
    gap: 10px;
    align-items: start;
    margin-bottom: 10px;
}

.jobs-custom-questions-row-gest .form-control,
.jobs-custom-questions-row-gest .form-select {
    font-size: 0.9rem;
    padding: 0.45rem 0.6rem;
}

.jobs-custom-questions-row-gest .btn {
    padding: 0.45rem 0.55rem;
    line-height: 1;
}

.jobs-custom-questions-add-btn-gest {
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem;
}

.jobs-custom-questions-modal-footer-gest {
    padding: 10px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jobs-custom-questions-btn-secondary-gest,
.jobs-custom-questions-btn-primary-gest {
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem;
}
.jobs-custom-questions-btn-primary-gest {
    background: #7a36b6;
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(122, 54, 182, 0.35);
}
.jobs-custom-questions-btn-primary-gest:hover {
    background: #6a2c96;
    color: #fff;
    box-shadow: 0 6px 16px rgba(122, 54, 182, 0.4);
}
.jobs-custom-questions-add-btn-gest {
    background: #fff;
    color: #7a36b6;
    border: 1px solid #7a36b6;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem !important;
}
.jobs-custom-questions-add-btn-gest:hover {
    background: #7a36b6;
    color: #fff;
}
@media (max-width: 576px) {
    .jobs-custom-questions-row-gest {
        grid-template-columns: 1fr;
    }
}

/* job details */

  /* ─── Top actions ───────────────────────────────────────── */
  .job-details-cards__top-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.job-details-cards__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    box-sizing: border-box;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        color 0.15s ease;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #7a2cbff0;
}
.job-details-cards__nav-btn:hover {
    background: #f8f9fb;
    border-color: #cbd5e0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.job-details-cards__nav-btn--fill {
    background: #7a2cbff0;
    border-color: #7a2cbff0;
    color: #fff;
}
.job-details-cards__nav-btn--fill:hover {
    background: #6517a1f0;
    border-color: #7a2cbff0;
    color: #fff;
    box-shadow: 0 2px 8px rgba(83, 74, 183, 0.28);
}

/* ─── Two-column row ────────────────────────────────────── */
.job-details-cards__dash-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2.2vw, 10px);
    align-items: flex-start;
    margin-bottom: clamp(14px, 2.5vw, 10px);
}
.job-details-cards__dash-col {
    flex: 1 1 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}
@media (min-width: 768px) {
    .job-details-cards__dash-col {
        flex: 1 1 calc(50% - 8px);
    }
}
.job-details-cards__card--stretch {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
}

/* ─── Cards ─────────────────────────────────────────────── */
.job-details-cards__card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
}
.job-details-cards__hdr {
    display: block;
    padding: 13px 16px;
    background: #fff;
    border-bottom: 1px solid #eef0f3;
}
.job-details-cards__hdr-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
    color: #1a202c;
    margin: 0;
}
.job-details-cards__hdr-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: #8b96a8;
    display: block;
    margin-top: 3px;
}

.job-details-cards__body {
    padding: 14px 16px;
    flex: 1;
}
.job-details-cards__body--tight-top {
    padding-top: 10px;
}

/* ─── Job summary tiles ─────────────────────────────────── */
.job-details-cards ._model_thank_info_card {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
.job-details-cards ._model_thank_info_row {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #fafbfc;
    border-radius: 9px;
    border: 1px solid #eef0f3;
    box-shadow: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
    box-sizing: border-box;
}
.job-details-cards ._model_thank_info_row:hover {
    border-color: #c4bcef;
    box-shadow: 0 2px 8px rgba(83, 74, 183, 0.07);
}
.job-details-cards ._model_thank_info_icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0eeff 0%, #e6e0ff 100%);
    color: #7a2cbff0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}
.job-details-cards ._model_thank_info_label {
    font-size: 0.72rem;
    color: #8b96a8;
    font-weight: 400;
    min-width: 38px;
    flex: 1;
}
.job-details-cards ._model_thank_info_value {
    font-weight: 500;
    font-size: 0.813rem;
    color: #1a202c;
    text-align: right;
    line-height: 1.35;
    word-break: break-word;
}
.job-details-cards ._model_thank_job_title_em {
    color: #7a2cbff0;
    font-weight: 600;
}
.job-details-cards ._model_thank_status {
    background: #fff;
    color: #7a2cbff0;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #7a2cbff0;
    white-space: nowrap;
}

/* ─── Applicant URL ──────────────────────────────────────── */
.job-details-cards ._model_thank_link_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 10px;
    border: none;
    overflow: visible;
}
.job-details-cards ._model_thank_link_input {
    flex: 1 1 180px;
    min-width: 0;
    border: 1px solid #e2e8f0;
    outline: none;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.75rem;
    color: #333;
    background: #fafbfc;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-weight: 400;
    transition: border-color 0.15s;
}
.job-details-cards ._model_thank_link_input:focus {
    border-color: #7a2cbff0;
}
.job-details-cards ._model_thank_btn_copy_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #7a2cbff0;
    font-family: inherit;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.job-details-cards ._model_thank_btn_copy_link:hover {
    background: #f8f9fb;
    border-color: #c4bcef;
    box-shadow: 0 1px 4px rgba(83, 74, 183, 0.08);
}
._model_thank_hint {
    font-size: 0.74rem;
    color: #8b96a8;
    line-height: 1.5;
    display: flex;
    gap: 6px;
    align-items: flex-start;
    font-weight: 400;
    margin-bottom: 0;
}
._model_thank_hint i {
    color: #7a2cbff0;
    opacity: 0.8;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ─── Promote zone ───────────────────────────────────────── */
.job-details-cards__promote-zone {
    margin-top: 0;
}
.job-details-cards__split {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.job-details-cards__half {
    flex: 1 1 0;
    min-width: 0;
    align-self: flex-start;
}
.job-details-cards__card--fill {
    height: auto;
    width: 100%;
}
@media (max-width: 767px) {
    .job-details-cards__split {
        flex-direction: column;
    }
}

/* ─── Post preview ───────────────────────────────────────── */
.job-details-cards ._model_thank_social_preview {
    background: #fafbfc;
    border: 1px solid #eef0f3;
    border-radius: 9px;
    padding: 12px 14px;
    max-height: min(400px, 58vh);
    overflow-y: auto;
    font-size: 0.8rem;
    line-height: 1.65;
    color: #4a5568;
    font-weight: 400;
}
.job-details-cards ._model_thank_social_preview::-webkit-scrollbar {
    width: 4px;
}
.job-details-cards
    ._model_thank_social_preview::-webkit-scrollbar-track {
    background: transparent;
}
.job-details-cards
    ._model_thank_social_preview::-webkit-scrollbar-thumb {
    background: #d1d8e4;
    border-radius: 4px;
}

.job-details-cards
    ._model_thank_social_preview.job-details-cards__preview-no-border {
    border: none;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}
.job-details-cards ._model_thank_post_copy_source {
    min-width: 0;
}
._model_thank_post_lead {
    font-size: 0.88rem;
    font-weight: 600;
    color: #7a2cbff0;
    margin-bottom: 4px;
}
._model_thank_post_meta {
    font-size: 0.72rem;
    color: #8b96a8;
    margin-bottom: 12px;
    font-weight: 400;
}
._model_thank_post_h {
    font-size: 0.76rem;
    font-weight: 600;
    color: #7a2cbff0;
    margin: 12px 0 5px;
}
._model_thank_post_copy_source ul {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
._model_thank_post_copy_source li {
    font-size: 0.78rem;
}
.job-details-cards ._model_thank_post_copy_source strong {
    font-weight: 600;
    color: #2d3748;
}

/* ─── Footer toolbar ─────────────────────────────────────── */
.job-details-cards__footer-tools {
    padding: 11px 16px;
    border-top: 1px solid #eef0f3;
    background: #fafbfc;
}
.job-details-cards ._model_thank_share_toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.job-details-cards ._model_thank_btn_copy_post,
.job-details-cards ._model_thank_btn_share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 16px;
    font-size: 0.79rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #7a2cbff0;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
    white-space: nowrap;
}
.job-details-cards ._model_thank_btn_copy_post:hover,
.job-details-cards ._model_thank_btn_share:hover {
    background: #f8f9fb;
    border-color: #c4bcef;
    box-shadow: 0 1px 4px rgba(83, 74, 183, 0.08);
}
.job-details-cards #_model_thank_btn_linkedin,
.job-details-cards #_model_thank_btn_facebook {
    background: #fff;
    color: #7a2cbff0;
    border-color: #e2e8f0;
}
.job-details-cards #_model_thank_btn_linkedin:hover,
.job-details-cards #_model_thank_btn_facebook:hover {
    background: #f8f9fb;
    border-color: #c4bcef;
}

/* ─── AI suggestion blocks ───────────────────────────────── */
.job-details-cards
    ._model_thank_ai_suggest
    + ._model_thank_ai_suggest {
    margin-top: 12px;
}
.job-details-cards ._model_thank_ai_block {
    border-radius: 10px;
    padding: 0;
    border: 1px solid #eef0f3;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}
.job-details-cards ._model_thank_ai_block--linkedin {
    border-left: 3px solid #7a2cbff0;
}
.job-details-cards ._model_thank_ai_block--facebook {
    border-left: 3px solid #7a2cbff0;
}

.job-details-cards ._model_thank_ai_title {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 12px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #1a202c;
    border-bottom: 1px solid #eef0f3;
    background: #fafbfc;
}
.job-details-cards
    ._model_thank_ai_block--facebook
    ._model_thank_ai_title {
    color: #1a202c;
}
._model_thank_ai_title_icon {
    color: #7a2cbff0;
}

.job-details-cards ._model_thank_ai_hint {
    font-size: 0.73rem;
    color: #8b96a8;
    padding: 8px 12px;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    border-bottom: 1px solid #eef0f3;
}
.job-details-cards ._model_thank_ai_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}
.job-details-cards ._model_thank_ai_row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: #fff;
    border-bottom: 1px solid #f2f4f7;
    flex-wrap: wrap;
    transition: background 0.12s;
}
.job-details-cards ._model_thank_ai_row:last-child {
    border-bottom: none;
}
.job-details-cards ._model_thank_ai_row:hover {
    background: #fafbfc;
}

.job-details-cards ._model_thank_ai_check {
    accent-color: #7a2cbff0;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
}
.job-details-cards ._model_thank_ai_label {
    flex: 1;
    min-width: 0;
}
.job-details-cards ._model_thank_ai_code {
    font-size: 0.74rem;
    color: #7a2cbff0;
    font-weight: 400;
}
.job-details-cards ._model_thank_ai_link {
    font-size: 0.72rem;
    padding: 5px 11px;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #7a2cbff0;
    transition:
        background 0.13s ease,
        border-color 0.13s ease;
}
.job-details-cards ._model_thank_ai_link:hover {
    background: #f8f9fb;
    border-color: #c4bcef;
    color: #7a2cbff0;
}
.job-details-cards ._model_thank_ai_toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 12px;
    background: #fafbfc;
    border-top: 1px solid #eef0f3;
}
.job-details-cards ._model_thank_btn_ai {
    padding: 7px 13px;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #7a2cbff0;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.job-details-cards ._model_thank_btn_ai:hover {
    background: #f8f9fb;
    border-color: #c4bcef;
    box-shadow: 0 1px 4px rgba(83, 74, 183, 0.08);
}

.job-details-cards ._model_thank_btn_ai--muted {
    background: #fff;
    color: #7a2cbff0;
    border: 1px solid #e2e8f0;
}
.job-details-cards ._model_thank_btn_ai--muted:hover {
    background: #f8f9fb;
    border-color: #c4bcef;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 575px) {
    .job-details-cards ._model_thank_share_toolbar > * {
        flex: 1 1 auto;
        min-height: 44px;
        justify-content: center;
    }
}

/* ─── Copied state ───────────────────────────────────────── */
.btn-copied {
    background: #eeedfe !important;
    border-color: #afa9ec !important;
    color: #7a2cbff0 !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* unlock profile — parent before child */
.unlock-profile {
    --scvs-primary: #7a2cbf;
    --scvs-primary-rgb: 122, 44, 191;
    --scvs-primary-hover: #6524a3;
    --scvs-primary-tint: rgba(122, 44, 191, 0.1);
    --scvs-primary-border: rgba(122, 44, 191, 0.22);
    --scvs-bg: #f4f2f8;
    --scvs-surface: #ffffff;
    --scvs-border: #e6e2ee;
    --scvs-text: #1a1523;
    --scvs-muted: #6b6578;
    --scvs-success: #22c55e;
    --scvs-warning: #eab308;
    --scvs-danger: #ef4444;
    --scvs-radius: 8px;
    --scvs-shadow: 0 2px 10px rgba(26, 21, 35, 0.05);
    font-size: 0.8125rem;
    padding: 0 0 1.5rem;
}

.unlock-profile .unlock-profile__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 0.85rem;
    align-items: start;
}

.unlock-profile .unlock-profile__main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.unlock-profile .unlock-profile__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
}

.unlock-profile .unlock-profile__row > .unlock-profile__card {
    align-self: start;
    height: auto;
}

.unlock-profile .unlock-profile__card--education {
    align-self: start;
}

.unlock-profile .unlock-profile__card--skills .unlock-profile__skills-grid {
    flex: 0 0 auto;
}

.unlock-profile .unlock-profile__aside {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.unlock-profile .unlock-profile__card {
    background: var(--scvs-surface);
    border: 1px solid var(--scvs-border);
    border-radius: var(--scvs-radius);
    box-shadow: var(--scvs-shadow);
    padding: 0.85rem 1rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    border-top: 2px solid var(--scvs-primary);
}

.unlock-profile .unlock-profile__card:not(.unlock-profile__card--header):hover {
    border-color: var(--scvs-primary-border);
    box-shadow: 0 4px 16px rgba(var(--scvs-primary-rgb), 0.08);
}

.unlock-profile .unlock-profile__card--header {
    position: relative;
    padding: 1rem 1.15rem;
    border: 1px solid var(--scvs-primary-border);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fbf9ff 55%, #f6f1ff 100%);
}

.unlock-profile .unlock-profile__card--header::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: -1.25rem;
    width: 62%;
    height: 140%;
    background:
        radial-gradient(circle at 30% 25%, rgba(122, 44, 191, 0.22) 0%, rgba(122, 44, 191, 0) 60%),
        repeating-radial-gradient(circle at 30% 25%, rgba(122, 44, 191, 0.1) 0 2px, rgba(122, 44, 191, 0) 2px 7px);
    border-radius: 28px;
    transform: rotate(8deg);
    pointer-events: none;
    opacity: 0.75;
}

.unlock-profile .unlock-profile__header--hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem 1.1rem;
    align-items: center;
}

.unlock-profile .unlock-profile__avatar-wrap {
    position: relative;
}

.unlock-profile .unlock-profile__avatar {
    border-radius: 12px;
    border: 1px solid var(--scvs-border);
    filter: none;
    background: #fff;
}

.unlock-profile .unlock-profile__score {
    right: -8px;
    bottom: -10px;
    min-width: 2rem;
    height: 2rem;
    font-size: 0.62rem;
    border-width: 3px;
}

.unlock-profile .unlock-profile__name-row {
    align-items: center;
    gap: 0.4rem 0.5rem;
    margin-bottom: 0.25rem;
}

.unlock-profile .unlock-profile__name {
    font-size: 1rem;
    font-weight: 800;
}

.unlock-profile .unlock-profile__verified {
    width: 1.15rem;
    height: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(122, 44, 191, 0.12);
    border: 1px solid rgba(122, 44, 191, 0.25);
    color: var(--scvs-primary);
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__verified .fa-solid {
    font-size: 0.68rem;
}

.unlock-profile .unlock-profile__meta {
    font-size: 0.66rem;
}

.unlock-profile .unlock-profile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.6rem;
}

.unlock-profile .unlock-profile__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.5rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: #2b2b2b;
    background: #fff;
    border: 1px solid var(--scvs-border);
    border-radius: 999px;
    line-height: 1.2;
}

.unlock-profile .unlock-profile__chip--success {
    color: #166534;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.unlock-profile .unlock-profile__card--section {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 0.8rem 0.95rem 0.9rem;
    border-top: 2px solid var(--scvs-primary);
}

.unlock-profile .unlock-profile__card--unlock {
    padding: 1.1rem 1rem 1rem;
    border: none;
    background: linear-gradient(
        145deg,
        #8b3fd4 0%,
        var(--scvs-primary) 42%,
        #4f46b5 100%
    );
    box-shadow: 0 8px 24px rgba(var(--scvs-primary-rgb), 0.28);
    overflow: hidden;
}

.unlock-profile .unlock-profile__card--unlock:hover {
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(var(--scvs-primary-rgb), 0.32);
}

.unlock-profile .unlock-profile__card--contacts {
    padding: 0.95rem 1rem 1.05rem;
    background: var(--scvs-surface);
}

.unlock-profile .unlock-profile__unlock-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    text-align: left;
}

.unlock-profile .unlock-profile__unlock-shield {
    position: relative;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.unlock-profile .unlock-profile__unlock-shield-shape {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    transform: rotate(45deg);
}

.unlock-profile .unlock-profile__unlock-shield-icon {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.92);
}

.unlock-profile .unlock-profile__unlock-shield-lock {
    position: absolute;
    z-index: 2;
    right: 0.15rem;
    bottom: 0.1rem;
    font-size: 0.72rem;
    color: #fff;
}

.unlock-profile .unlock-profile__unlock-copy {
    min-width: 0;
    flex: 1;
}

.unlock-profile .unlock-profile__unlock-title {
    margin: 0 0 0.3rem;
    font-size: 0.88rem;
    text-align: center;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
}

.unlock-profile .unlock-profile__unlock-desc {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}

.unlock-profile .unlock-profile__unlock-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.unlock-profile .unlock-profile__unlock-avatars {
    display: inline-flex;
    align-items: center;
}

.unlock-profile .unlock-profile__unlock-avatars img {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
    margin-left: -0.45rem;
    background: #fff;
}

.unlock-profile .unlock-profile__unlock-avatars img:first-child {
    margin-left: 0;
}

.unlock-profile .unlock-profile__unlock-trust-text {
    margin: 0;
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.unlock-profile .unlock-profile__contacts-title {
    margin: 0 0 0.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e2a44;
}

.unlock-profile .unlock-profile__contacts-desc {
    margin: 0 0 0.75rem;
    font-size: 0.65rem;
    color: var(--scvs-muted);
    line-height: 1.4;
}

.unlock-profile .unlock-profile__card--actions {
    padding: 0.85rem;
}

.unlock-profile .unlock-profile__card--cv-strip {
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--scvs-primary-border);
    background: linear-gradient(135deg, #fbf9ff 0%, #f3effa 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.unlock-profile .unlock-profile__cv-strip-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    flex: 1;
}

.unlock-profile .unlock-profile__cv-strip-ico {
    width: 1.9rem;
    height: 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--scvs-primary);
    background: rgba(122, 44, 191, 0.12);
    border: 1px solid rgba(122, 44, 191, 0.22);
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__cv-strip-text {
    margin: 0;
    font-size: 0.62rem;
    color: #3d4a63;
    line-height: 1.35;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.unlock-profile .unlock-profile__cv-strip-btn {
    flex-shrink: 0;
    padding: 0.42rem 0.8rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: #fff;
    background: var(--scvs-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(var(--scvs-primary-rgb), 0.22);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.unlock-profile .unlock-profile__cv-strip-btn:hover {
    background: var(--scvs-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(var(--scvs-primary-rgb), 0.26);
}

.unlock-profile .unlock-profile__card--locked-cv {
    padding: 0.95rem 1rem 1rem;
    background: var(--scvs-surface);
    box-shadow: 0 4px 18px rgba(26, 21, 35, 0.07);
}

.unlock-profile .unlock-profile__locked-cv-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
}

.unlock-profile .unlock-profile__locked-cv-icon {
    width: 1.65rem;
    height: 1.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
    border-radius: 8px;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__locked-cv-title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e2a44;
    line-height: 1.2;
}

.unlock-profile .unlock-profile__locked-cv-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.unlock-profile .unlock-profile__locked-cv-copy {
    flex: 1;
    min-width: 0;
}

.unlock-profile .unlock-profile__locked-cv-text {
    margin: 0;
    font-size: 0.68rem;
    color: var(--scvs-muted);
    line-height: 1.5;
    max-width: 11rem;
}

.unlock-profile .unlock-profile__locked-cv-art {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unlock-profile .unlock-profile__locked-cv-doc {
    position: relative;
    width: 3.5rem;
    height: 4rem;
    padding: 0.55rem 0.45rem 0.7rem;
    background: linear-gradient(180deg, #f8f7fc 0%, #ece9f4 100%);
    border: 1px solid var(--scvs-border);
    border-radius: 8px;
    opacity: .7;
    box-shadow: 0 6px 14px rgba(var(--scvs-primary-rgb), 0.1);
}

.unlock-profile .unlock-profile__locked-cv-doc-line {
    display: block;
    height: 4px;
    margin-bottom: 0.35rem;
    background: #d8d2e6;
    border-radius: 999px;
}

.unlock-profile .unlock-profile__locked-cv-doc-line--short {
    width: 72%;
}

.unlock-profile .unlock-profile__locked-cv-pdf {
    position: absolute;
    right: -0.35rem;
    bottom: 0.55rem;
    padding: 0.12rem 0.35rem;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--scvs-primary);
    border-radius: 4px;
    line-height: 1.2;
}

.unlock-profile .unlock-profile__locked-cv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.62rem 1rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: #fff;
    background: var(--scvs-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(var(--scvs-primary-rgb), 0.28);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.unlock-profile .unlock-profile__locked-cv-btn:hover:not(:disabled) {
    background: var(--scvs-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--scvs-primary-rgb), 0.32);
}

.unlock-profile .unlock-profile__locked-cv-btn:disabled {
    opacity: 0.9;
    cursor: default;
    transform: none;
}

.unlock-profile .unlock-profile__card--benefits {
    padding: 0.95rem 1rem;
    background: linear-gradient(135deg, #faf8fd 0%, #f3effa 100%);
    border: 1px solid var(--scvs-primary-border);
}

.unlock-profile .unlock-profile__benefits-title {
    margin: 0 0 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--scvs-primary);
    line-height: 1.3;
}

.unlock-profile .unlock-profile__benefits-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.unlock-profile .unlock-profile__benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.unlock-profile .unlock-profile__benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.66rem;
    font-weight: 500;
    color: #3d4a63;
    line-height: 1.35;
}

.unlock-profile .unlock-profile__benefits-item .fa-check {
    width: 1rem;
    height: 1rem;
    margin-top: 0.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: #fff;
    background: var(--scvs-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__benefits-badge {
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: radial-gradient(
        circle at 30% 25%,
        #b57ae8 0%,
        var(--scvs-primary) 55%,
        #5b21a8 100%
    );
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(var(--scvs-primary-rgb), 0.35);
}

.unlock-profile .unlock-profile__benefits-badge .fa-award {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

.unlock-profile .unlock-profile__locked-cv-file {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.65rem;
    background: var(--scvs-bg);
    border: 1px dashed var(--scvs-border);
    border-radius: 10px;
    margin-bottom: 0.65rem;
}

.unlock-profile .unlock-profile__locked-cv-file .fa-file-pdf {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--scvs-primary);
    background: #fff;
    border: 1px solid var(--scvs-primary-border);
    border-radius: 8px;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__locked-cv-filename {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--scvs-text);
    line-height: 1.2;
}

.unlock-profile .unlock-profile__locked-cv-filehint {
    font-size: 0.6rem;
    color: var(--scvs-muted);
    margin-top: 0.15rem;
}

.unlock-profile .unlock-profile__locked-cv-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.unlock-profile .unlock-profile__locked-cv-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--scvs-primary);
    background: transparent;
    border: 1px solid var(--scvs-primary-border);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.unlock-profile .unlock-profile__locked-cv-action:hover {
    background: var(--scvs-primary-tint);
    border-color: var(--scvs-primary);
    color: var(--scvs-primary-hover);
}

.unlock-profile .unlock-profile__locked-cv-action--primary {
    color: #fff;
    background: var(--scvs-primary);
    border-color: var(--scvs-primary);
}

.unlock-profile .unlock-profile__locked-cv-action--primary:hover {
    color: #fff;
    background: var(--scvs-primary-hover);
    border-color: var(--scvs-primary-hover);
}

.unlock-profile .unlock-profile__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.85rem 1.15rem;
}

.unlock-profile .unlock-profile__avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--scvs-primary-tint);
    filter: blur(4px);
}

.unlock-profile .unlock-profile__avatar--blurred {
    filter: blur(4px);
}

.unlock-profile .unlock-profile__score {
    position: absolute;
    right: -4px;
    bottom: -4px;
    min-width: 1.65rem;
    height: 1.65rem;
    padding: 0 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 500;
    color: #fff;
    background: var(--scvs-primary);
    border: 2px solid var(--scvs-surface);
    border-radius: 999px;
}

.unlock-profile .unlock-profile__identity {
    min-width: 0;
}

.unlock-profile .unlock-profile__name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}

.unlock-profile .unlock-profile__name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--scvs-text);
    line-height: 1.2;
}

.unlock-profile .unlock-profile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.unlock-profile .unlock-profile__badge {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1.4;
}

.unlock-profile .unlock-profile__badge--start {
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
}

.unlock-profile .unlock-profile__badge--applied {
    color: #fff;
    background: var(--scvs-success);
}

.unlock-profile .unlock-profile__title {
    margin: 0 0 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--scvs-muted);
}

.unlock-profile .unlock-profile__meta {
    margin: 0;
    font-size: 0.68rem;
    color: var(--scvs-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.unlock-profile .unlock-profile__meta .fa-location-dot {
    color: var(--scvs-primary);
    font-size: 0.65rem;
}

.unlock-profile .unlock-profile__meta-sep {
    opacity: 0.5;
}

.unlock-profile .unlock-profile__card--personal {
    padding: 0.85rem 1rem 1rem;
}

.unlock-profile .unlock-profile__section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 0.75rem;
    padding: 0 0 0.55rem;
    border: none;
    border-bottom: 1px solid var(--scvs-border);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.unlock-profile .unlock-profile__section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--scvs-primary);
}

.unlock-profile .unlock-profile__chevron {
    font-size: 0.65rem;
    color: var(--scvs-muted);
    transition: transform 0.2s ease;
}

.unlock-profile .unlock-profile__section-toggle[aria-expanded="false"] .unlock-profile__chevron {
    transform: rotate(-90deg);
}

.unlock-profile .unlock-profile__section-body[hidden] {
    display: none;
}

.unlock-profile .unlock-profile__info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
    margin: 0;
}

.unlock-profile .unlock-profile__info-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    margin: 0;
}

.unlock-profile .unlock-profile__info-icon {
    width: 2.15rem;
    height: 2.15rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
    border-radius: 8px;
}

.unlock-profile .unlock-profile__info-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.unlock-profile .unlock-profile__info-label {
    font-size: 0.62rem;
    font-weight: 500;
    color: #5b6b8a;
    line-height: 1.3;
}

.unlock-profile .unlock-profile__info-value {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--scvs-text);
    line-height: 1.35;
}

.unlock-profile .unlock-profile__info-item--wide {
    grid-column: 1 / -1;
}

.unlock-profile .unlock-profile__block-title {
    margin: 0 0 0.6rem;
    padding-bottom: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--scvs-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid var(--scvs-border);
    line-height: 1.3;
}

.unlock-profile .unlock-profile__block-title .fa-solid {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
    border-radius: 5px;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__timeline {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0 0.65rem;
    align-items: start;
}

.unlock-profile .unlock-profile__timeline--single .unlock-profile__timeline-rail {
    align-self: start;
}

.unlock-profile .unlock-profile__timeline--inline {
    align-items: flex-start;
}

.unlock-profile .unlock-profile__timeline-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.unlock-profile .unlock-profile__timeline-icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
    border-radius: 6px;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__timeline-line {
    flex: 1;
    width: 2px;
    min-height: 1.5rem;
    margin-top: 0.35rem;
    background: linear-gradient(var(--scvs-primary-border), var(--scvs-border));
    border-radius: 2px;
}

.unlock-profile .unlock-profile__timeline--single .unlock-profile__timeline-line,
.unlock-profile .unlock-profile__timeline--inline .unlock-profile__timeline-line {
    display: none;
}

.unlock-profile .unlock-profile__timeline-body {
    min-width: 0;
    padding-bottom: 0.15rem;
    flex: 1;
}

.unlock-profile .unlock-profile__card--section .unlock-profile__tags,
.unlock-profile .unlock-profile__card--section .unlock-profile__lang-list,
.unlock-profile .unlock-profile__card--section .unlock-profile__skills-grid {
    flex: 1;
}

.unlock-profile .unlock-profile__timeline-entry {
    position: relative;
    padding-left: 0.65rem;
    margin-bottom: 0.75rem;
}

.unlock-profile .unlock-profile__timeline-entry::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--scvs-border);
}

.unlock-profile .unlock-profile__timeline-entry:last-of-type {
    margin-bottom: 0;
}

.unlock-profile .unlock-profile__timeline-company {
    margin: 0 0 0.2rem;
    font-size: 0.65rem;
    color: var(--scvs-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.unlock-profile .unlock-profile__timeline-company .fa-solid,
.unlock-profile .unlock-profile__timeline-company .fa-graduation-cap {
    color: var(--scvs-primary);
    font-size: 0.6rem;
}

.unlock-profile .unlock-profile__timeline-role {
    margin: 0 0 0.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--scvs-text);
    line-height: 1.35;
}

.unlock-profile .unlock-profile__timeline-type {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--scvs-muted);
}

.unlock-profile .unlock-profile__timeline-date {
    margin: 0;
    font-size: 0.65rem;
    color: var(--scvs-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.unlock-profile .unlock-profile__timeline-date .fa-solid {
    color: var(--scvs-primary);
    font-size: 0.6rem;
}

.unlock-profile .unlock-profile__view-more {
    margin-top: 0.35rem;
    padding: 0;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--scvs-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.unlock-profile .unlock-profile__view-more:hover {
    color: var(--scvs-primary-hover);
}

.unlock-profile .unlock-profile__skills-more {
    margin-top: 0.55rem;
    padding: 0;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--scvs-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.unlock-profile .unlock-profile__skills-more:hover {
    color: var(--scvs-primary-hover);
}

.unlock-profile .unlock-profile__view-more,
.unlock-profile .unlock-profile__skills-more {
    display: inline-flex;
  
    gap: 0.35rem;
}

.unlock-profile .unlock-profile__more-ico {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.unlock-profile .unlock-profile__view-more.is-expanded .unlock-profile__more-ico,
.unlock-profile .unlock-profile__skills-more.is-expanded .unlock-profile__more-ico {
    transform: rotate(180deg);
}

.unlock-profile .unlock-profile__skills-count {
    display: inline;
    min-width: 0;
    height: auto;
    padding: 0;
    background: transparent;
    color: var(--scvs-primary);
}

.unlock-profile .unlock-profile__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-width: 0;
}

.unlock-profile .unlock-profile__tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
    border-radius: 999px;
    line-height: 1.3;
}

.unlock-profile .unlock-profile__card--skills .unlock-profile__block-title {
    margin-bottom: 0.35rem;
}

.unlock-profile .unlock-profile__skills-meta {
    margin: 0 0 0.55rem;
    font-size: 0.62rem;
    color: var(--scvs-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.unlock-profile .unlock-profile__skills-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    font-size: 0.58rem;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    background: var(--scvs-primary);
    border-radius: 999px;
}

.unlock-profile .unlock-profile__skills-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    flex: 1;
}

.unlock-profile .unlock-profile__skill {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    height: 2.35rem;
    padding: 0 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--scvs-text);
    background: linear-gradient(135deg, #fff 0%, var(--scvs-primary-tint) 100%);
    border: 1px solid var(--scvs-primary-border);
    border-radius: 6px;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.unlock-profile .unlock-profile__skill:hover {
    border-color: var(--scvs-primary);
    box-shadow: 0 2px 8px rgba(var(--scvs-primary-rgb), 0.12);
    transform: translateY(-1px);
}

.unlock-profile .unlock-profile__skill .fa-solid,
.unlock-profile .unlock-profile__skill .fa-brands {
    width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: var(--scvs-primary);
    background: #fff;
    border: 1px solid var(--scvs-primary-border);
    border-radius: 4px;
    flex-shrink: 0;
}

.unlock-profile .unlock-profile__skill span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.unlock-profile .unlock-profile__lang-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.unlock-profile .unlock-profile__lang-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.72rem;
    border-bottom: 1px dashed var(--scvs-border);
}

.unlock-profile .unlock-profile__lang-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.unlock-profile .unlock-profile__lang-name {
    font-weight: 600;
    color: var(--scvs-text);
}

.unlock-profile .unlock-profile__lang-level {
    font-size: 0.65rem;
    color: var(--scvs-muted);
    padding: 0.12rem 0.4rem;
    background: var(--scvs-bg);
    border-radius: 999px;
}

.unlock-profile .unlock-profile__unlock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    margin: 0;
    padding: 0.62rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--scvs-primary);
    background: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.unlock-profile .unlock-profile__unlock-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
}

.unlock-profile .unlock-profile__unlock-btn:disabled {
    opacity: 0.92;
    cursor: default;
    transform: none;
}

.unlock-profile .unlock-profile__contacts {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
}

.unlock-profile .unlock-profile__contact {
    width: 100%;
    max-width: 2.35rem;
    aspect-ratio: 1;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.72rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.unlock-profile .unlock-profile__contact--locked {
    color: var(--scvs-primary);
    background: var(--scvs-primary-tint);
    border: 1px solid var(--scvs-primary-border);
    cursor: not-allowed;
    opacity: 0.85;
}

.unlock-profile .unlock-profile__contact--active {
    color: var(--scvs-primary);
    background: #fff;
    border: 1px solid var(--scvs-primary);
    cursor: pointer;
    opacity: 1;
}

.unlock-profile.is-unlocked .unlock-profile__card--unlock {
    background: linear-gradient(
        145deg,
        #22c55e 0%,
        #16a34a 55%,
        #15803d 100%
    );
}

.unlock-profile .unlock-profile__pipeline {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.65rem;
    padding: 0.4rem;
    background: var(--scvs-bg);
    border-radius: 8px;
}

.unlock-profile .unlock-profile__step {
    flex: 1;
    min-width: 1.65rem;
    height: 1.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    border-radius: 6px;
    border: 1px solid var(--scvs-border);
    background: var(--scvs-surface);
    color: var(--scvs-muted);
}

.unlock-profile .unlock-profile__step--current {
    color: #fff;
    background: var(--scvs-primary);
    border-color: var(--scvs-primary);
}

.unlock-profile .unlock-profile__step--done {
    color: #fff;
    background: var(--scvs-success);
    border-color: var(--scvs-success);
}

.unlock-profile .unlock-profile__step--star {
    color: #fff;
    background: var(--scvs-warning);
    border-color: var(--scvs-warning);
}

.unlock-profile .unlock-profile__quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.unlock-profile .unlock-profile__action {
    flex: 1;
    max-width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid var(--scvs-border);
    border-radius: 8px;
    background: var(--scvs-surface);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.unlock-profile .unlock-profile__action--reject {
    color: var(--scvs-danger);
}

.unlock-profile .unlock-profile__action--reject:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.35);
}

.unlock-profile .unlock-profile__action--flag {
    color: var(--scvs-primary);
}

.unlock-profile .unlock-profile__action--flag:hover {
    background: var(--scvs-primary-tint);
    border-color: var(--scvs-primary-border);
}

.unlock-profile .unlock-profile__autoload {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.unlock-profile .unlock-profile__autoload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.unlock-profile .unlock-profile__autoload-track {
    position: relative;
    width: 2.5rem;
    height: 1.35rem;
    flex-shrink: 0;
    background: #d1d5db;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.unlock-profile .unlock-profile__autoload-track::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.unlock-profile .unlock-profile__autoload-input:checked + .unlock-profile__autoload-track {
    background: var(--scvs-primary);
}

.unlock-profile .unlock-profile__autoload-input:checked + .unlock-profile__autoload-track::after {
    transform: translateX(1.15rem);
}

.unlock-profile .unlock-profile__autoload-input:focus-visible + .unlock-profile__autoload-track {
    outline: 2px solid var(--scvs-primary);
    outline-offset: 2px;
}

.unlock-profile .unlock-profile__autoload-label {
    font-size: 0.65rem;
    font-style: italic;
    color: var(--scvs-muted);
}

.unlock-profile.is-unlocked .unlock-profile__avatar {
    filter: none;
}

.unlock-profile.is-unlocked .unlock-profile__name {
    color: var(--scvs-primary);
}

@media (max-width: 1199.98px) {
    .unlock-profile .unlock-profile__layout {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
        gap: 1rem;
    }
}

@media (max-width: 991.98px) {
    .unlock-profile .unlock-profile__layout {
        grid-template-columns: 1fr;
    }



    .unlock-profile .unlock-profile__card--unlock,
    .unlock-profile .unlock-profile__card--contacts,
    .unlock-profile .unlock-profile__card--locked-cv,
    .unlock-profile .unlock-profile__card--benefits {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .unlock-profile .unlock-profile__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .unlock-profile .unlock-profile__card {
        padding: 1rem 1.1rem;
    }

    .unlock-profile .unlock-profile__card--header {
        padding: 0.95rem 1rem;
    }

    .unlock-profile .unlock-profile__card--header::after {
        width: 80%;
        opacity: 0.6;
    }

    .unlock-profile .unlock-profile__header--hero {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .unlock-profile .unlock-profile__avatar {
        width: 72px;
        height: 72px;
    }

    .unlock-profile .unlock-profile__name {
        font-size: 0.95rem;
    }

    .unlock-profile .unlock-profile__timeline {
        grid-template-columns: 1.85rem minmax(0, 1fr);
    }

    .unlock-profile .unlock-profile__timeline-icon {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.65rem;
    }

    .unlock-profile .unlock-profile__card--cv-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }

    .unlock-profile .unlock-profile__cv-strip-text {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }

    .unlock-profile .unlock-profile__cv-strip-btn {
        width: 100%;
    }

    .unlock-profile .unlock-profile__info-grid {
        gap: 0.5rem;
    }

    .unlock-profile .unlock-profile__info-item--wide {
        grid-column: 1;
    }

    .unlock-profile .unlock-profile__pipeline {
        flex-wrap: wrap;
    }

    .unlock-profile .unlock-profile__step {
        flex: 0 1 calc(20% - 0.3rem);
        min-width: 1.75rem;
        height: 1.75rem;
        font-size: 0.6rem;
    }
}

@media (max-width: 479.98px) {


    .unlock-profile .unlock-profile__skill span {
        white-space: normal;
    }

    .unlock-profile .unlock-profile__name-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .unlock-profile .unlock-profile__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .unlock-profile .unlock-profile__meta-sep {
        display: none;
    }

    .unlock-profile .unlock-profile__unlock-hero {
        gap: 0.6rem;
    }

    .unlock-profile .unlock-profile__unlock-shield {
        width: 2.85rem;
        height: 2.85rem;
    }

    .unlock-profile .unlock-profile__locked-cv-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .unlock-profile .unlock-profile__locked-cv-art {
        align-self: flex-end;
    }

    .unlock-profile .unlock-profile__locked-cv-text {
        max-width: none;
    }


    .unlock-profile .unlock-profile__benefits-badge {
        align-self: center;
    }

    .unlock-profile .unlock-profile__contacts {
        gap: 0.5rem;
    }

    .unlock-profile .unlock-profile__contact {
        max-width: 2.5rem;
        font-size: 0.75rem;
    }

    .unlock-profile .unlock-profile__quick-actions {
        justify-content: center;
    }
}
