.company-logo {
  width: 70px;
}

.light-logo,
.dark-logo {
  display: none;
}

#sending-notification,
#sent-notification {
  background-color: #fff;
  width: fit-content;
  padding: 7px;
  border-radius: 3px;
}

.remove-button {
  margin-left: 5px;
  cursor: pointer;
}

.error {
  display: block;
  height: 20px;
  font-size: 12px;
  color: red;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3rem;
}

.line-clamp-2 {
  overflow-wrap: anywhere;
}

.message-container div {
  font-size: 12px;
  height: 30px;
  padding: 5px;
}

.err-message {
  position: fixed;
  min-width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

/* ============ success message ============ */
.success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4caf50;
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: #ffffff;
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4caf50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}

.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }

  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }

  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }

  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

/* ============ success message end ============ */

.circle {
  position: relative;
  width: 80px;
  height: 80px;
  border: 5px solid red;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
}

.cross {
  position: relative;
  width: 55px;
  height: 55px;
}

.cross::before,
.cross::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 5px;
  background-color: red;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-show-pass {
  font-size: 15px;
  color: #999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.password-field {
  width: 100%;
  position: relative;
}

.fc-daygrid-dot-event,
.fc .fc-timegrid-event,
.fc-daygrid-block-event {
  cursor: pointer;
}

.custom-col {
  width: 60%;
}

@media (max-width: 990px) {
  .custom-col {
    width: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 1s linear infinite;
}

.sortable-ghost {
  opacity: 0.4;
  background: #f8d7da;
}

.sortable-chosen {
  border: 2px dashed #aaa;
  background-color: #f0f0f0;
  min-height: 150px !important;
}

.fixed-cell {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #f0f0f0 !important;
}

.fixed-cell-ii {
  position: sticky;
  left: 67px;
  z-index: 1;
  background-color: #f0f0f0 !important;
}

.fixed-cell-iii {
  position: sticky;
  left: 227px;
  z-index: 1;
  background-color: #f0f0f0 !important;
}

.jobLinkEditBtn,
.save-link,
.cancel-edit {
  border: none;
  background: none;
}

.referral-link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: none;
  padding: 5px;
  border-radius: 0.375rem;
  background-color: #fff;
}

.choices .choices__list--multiple .choices__item {
  text-transform: none !important;
}

.kanban-column {
  width: auto !important;
  min-width: 14rem !important;
  max-width: 19rem !important;
}

.kanban-title-badge {
  margin-right: 0.5rem;
}

.duplicate {
  background-color: #fa3b1d !important;
  color: #fff !important;
}

/* Added by Hassan */
/* Updated Resume Styling */
.resume-container {
  width: 8.27in;
  margin: auto;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 14px;
}

.resume-container h4 {
  font-size: 16px;
}

.h2-resume {
  font-size: 1.5em;
  color: #3756a6;
  margin-bottom: 5px;
}

.h2-resume::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-top: 5px;
  margin-bottom: 15px;
}

.resume-header {
  text-align: center;
  margin-bottom: 20px;
}

.resume-header h1 {
  font-size: 2em;
  margin: 0;
}

.resume-header p {
  font-size: 0.9em;
  color: #666;
}

.section {
  margin-bottom: 20px;
}

.section-title {
  font-weight: bold;
  color: #3756a6;
  margin-bottom: 5px;
}

.experience-item,
.additional-item,
.education-item,
.project-item {
  margin-bottom: 10px;
}

.job-title {
  font-weight: bold;
}

.company-details {
  font-size: 0.9em;
  color: #555;
}

/* .ul-resume {
      list-style-type: disc;
      padding-left: 20px;
      margin-top: 5px;
  } */

/* B.ul-resumelet points */
/* .experience-item .ul-resume,
  .additional-item .ul-resume {
      list-style-type: disc;
      margin: 5px 0;
  } */

/* 14/ 11/ 2024 - Added by Hassan */
/* Card Hover Effect */
.card-hover {
  position: relative;
  overflow: hidden;
}

.bg-holder {
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
}

.card-hover:hover .bg-holder {
  transform: scale(1.1);
  /* Slight zoom effect */
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-hover:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.hover-overlay .btn:hover {
  background-color: #0056b3;
}

.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-left: 14px;
}

.grid-view>div {
  display: flex;
  align-items: start;
  gap: 7px;
}

.circle-icon {
  height: 12px;
  width: 12px;
  margin-top: 5px;
  margin-right: 5px;
  flex-shrink: 0;
}

/* 14/11/2024  */

.jobs-list-editable {
  position: relative;
}

.jobs-list-editable::before {
  content: attr(data-placeholder);
  color: #aaa;
  background-color: rgb(250, 250, 250);
  padding: 4px 8px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: calc(100% - 8px);
  pointer-events: none;
  display: block;
  text-align: left;
}

.jobs-list-editable.has-content::before,
.jobs-list-editable:focus::before {
  display: none;
}

.jobs-list-sticky-tabs {
  top: 65px;
  transition: background-color 0.3s ease;
  padding-left: 10px;
}

.sticky-tabs-bg {
  padding-top: 10px;
  background-color: #fff;
}

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

/* 19/11/2024 */
.keywords-tabs-section,
.keywords-data-section {
  height: 10vh;
}

@media (max-width: 755px) {
  .keywords-tabs-section {
    height: 15vh;
  }
}

@media (max-width: 573px) {
  .keywords-tabs-section {
    height: 10vh;
  }
}

footer {
  font-size: 0.8rem;
}

.highlighted {
  position: relative;
  z-index: 1;
  background: inherit;
}

.highlighted::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74%;
  height: 74%;
  background: rgba(243, 156, 18, 0.3);
  border-radius: 50%;
  z-index: -1;
  filter: blur(5px);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  70% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.experience-textarea+.tox {
  min-height: 130px;
}

div.dt-datetime div.dt-datetime-buttons a {
  cursor: pointer;
}

.fixedHeader-floating th {
  font-size: 0.8rem !important;
}

.create-bucket-input .choices__inner {
  min-height: 104px;
}

.resume-template-font-gradient {
  background: linear-gradient(90deg,
      rgba(2, 0, 36, 1) 0%,
      rgba(9, 32, 121, 1) 28%,
      rgba(0, 164, 215, 1) 100%);
  transition: background 0.5s ease;
}

.card-hover:hover .resume-template-font-gradient {
  background: linear-gradient(45deg,
      rgba(0, 165, 215, 0.737) 0%,
      rgba(9, 31, 121, 0.674) 28%,
      rgba(24, 39, 172, 0.587) 100%);
}

/* custom card with animation */
.promptCard {
  width: 500px;
}

.promptCard p {
  font-size: 17px;
  font-weight: 800;
  line-height: 20px;
  color: black;
}

.promptCard p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: black;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.promptCard1 {
  display: block;
  position: relative;
  max-width: 562px;
  background: linear-gradient(247deg, #4a5975, #bebebe9f);
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.promptCard1:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(45deg, black, #95949471);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.promptCard1:hover:before {
  transform: scale(31);
}

.promptCard1:hover p {
  transition: all 0.3s ease-out;
  color: #fff;
}

.custom-select .choices .choices__inner {
  padding: 0.4rem 1rem;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.progress-container::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #e0e0e0;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.progress-step .step-number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.progress-step .step-label {
  color: #6c757d;
  font-size: 0.8rem;
  text-align: center;
}

.progress-step.active .step-number {
  background-color: #007bff;
}

.progress-step.completed .step-number {
  background-color: #007bff;
}

/* .tab-pane {
  padding: 20px;
}

.form-label {
  font-weight: 600;
} */

.btn-primary,
.btn-success {
  min-width: 100px;
}

/* New progress line coloring */
.progress-container.step-1::before {
  background-color: #e0e0e0;
}

.progress-container.step-2::before {
  background: linear-gradient(to right, #007bff 41%, #e0e0e0 50%);
}

.progress-container.step-3::before {
  background: linear-gradient(to right, #007bff 90%, #e0e0e0 0%);
}

/* new card css */
.existing-item-card {
  background-color: #fff;
  border-radius: 8.5px;
  color: #333;
  height: 312px;
  width: 239px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

/* Image Section */
.image-section {
  height: 80%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-height: 100%;
  max-width: 100%;
}

.border-between {
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.text-section {
  height: 20%;
  padding: 10px 20px;
  box-sizing: border-box;
}

.shadow-success-100:before {
  background-color: rgba(37, 176, 3, 0.3);
}

.shadow-warning-100:before {
  background-color: rgba(229, 120, 11, 0.3);
}

.shadow-danger-100:before {
  background-color: rgba(250, 59, 29, 0.3);
}

.btn-add-feedback {
  border: 1px solid #4f74b9;
  border-radius: 50%;
  background: none;
  padding: 3px 11px;
  color: #4f74b9;
}

.btn-add-feedback:hover {
  border: 1px solid #4f74b9;
  background-color: #4e6288;
  color: #fff;
}

.active-btn-add-feedback {
  background-color: #4f74b9;
  border: 1px solid #4f74b9;
  color: #fff;
}

.arrow-right-icon {
  font-size: 12px;
}

.custom-yellow-badge {
  line-height: 1.49;
  background-color: #fffdb8;
  color: #d1a200;
  border: 1px solid #ffe485;
}

.error-border {
  border: 1px solid red !important;
}

.info-icon {
  display: flex;
  align-items: center;
}

.info-icon:hover {
  cursor: pointer;
}

.update-response-icon:hover,
.update-status-icon:hover {
  cursor: pointer;
}

/* custom resume loading css */
/* From Uiverse.io by Nawsome */
.loader {
  position: relative;
  width: 445px;
  height: 163px;
  margin-bottom: 10px;
  border: 1px solid #d3d3d3;
  padding: 15px;
  background-color: #e3e3e3;
  padding-top: 26px;
  overflow: hidden;
}

.loader:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(110deg,
      rgba(227, 227, 227, 0) 0%,
      rgba(227, 227, 227, 0) 40%,
      rgba(227, 227, 227, 0.5) 50%,
      rgba(227, 227, 227, 0) 60%,
      rgba(227, 227, 227, 0) 100%);
  animation: gradient-animation_2 1.2s linear infinite;
}

.loader .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.loader .wrapper>div {
  background-color: #cacaca;
}

.loader .circleCustom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.loader .button {
  display: inline-block;
  height: 32px;
  width: 75px;
}

.loader .line-1 {
  position: absolute;
  top: 11px;
  left: 58px;
  height: 10px;
  width: 110px;
}

.loader .line-2 {
  position: absolute;
  top: 34px;
  left: 58px;
  height: 10px;
  width: 355px;
}

.loader .line-3 {
  position: absolute;
  top: 57px;
  left: 0px;
  height: 10px;
  width: 100%;
}

.loader .line-4 {
  position: absolute;
  top: 80px;
  left: 0px;
  height: 10px;
  width: 82%;
}

@keyframes gradient-animation_2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.btn-magic {
  color: white;
  background: radial-gradient(circle,
      rgb(128 75 234 / 58%) 0%,
      rgb(123 59 249 / 70%) 50%,
      rgb(158 120 234) 100%);
  transition: background-color 0.3s ease;
}

.btn-magic:hover {
  color: white;
  background-color: rgb(105, 79, 156);
}

.btn-magic:hover .magic-icon {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.custom-accordion-button::after {
  background-image: url('../img/icons/caretdown.png') !important;
  /* background-size: 1.25rem;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out; */
}

.custom-accordion-button:not(.collapsed)::after {
  background-image: url('../img/icons/caretup.png') !important;
  transform: rotate(359deg) !important;
}

/* custom generating text animation css */
.AnimatedCard {
  /* color used to softly clip top and bottom of the .words container */
  position: fixed;
  min-width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  padding: 1rem 2rem;
  border-radius: 1.25rem;
  z-index: 9999;
}

.AnimatedLoader {
  color: rgb(124, 124, 124);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 25px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 40px;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
}

.AnimatedWordsDiv {
  overflow: hidden;
  position: relative;
}

.AnimatedWordsDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--bg-color) 10%,
      transparent 30%,
      transparent 70%,
      var(--bg-color) 90%);
  z-index: 20;
}

.AnimatedWord {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #956afa;
  animation: spin_4991 6s infinite;
}

@keyframes spin_4991 {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}

.popup-container {
  position: absolute;
  display: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transform: translate(-50%, -110%);
  transition:
    opacity 0.3s,
    transform 0.3s;
  opacity: 0;
  z-index: 10000;
}

.popup-container.visible {
  opacity: 1;
  transform: translate(-50%, -120%);
}

.popup-container.position-below {
  transform: translate(-50%, 10px);
}

.popup-container.position-below.visible {
  transform: translate(-50%, 0);
}

.popup-container.position-below .popup-arrow {
  bottom: auto;
  top: -8px;
  transform: translateX(-50%) rotate(180deg);
}

.popup-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 16px;
  height: 8px;
  transform: translateX(-50%);
  fill: white;
}

.input-group {
  display: flex;
  gap: 8px;
  background: white;
  padding: 12px;
  border-radius: 5px;
  align-items: center;
  min-width: 250px;
}

.rephrase-input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  min-width: 200px;
  flex: 1;
  outline: none;
}

.rephrase-input:focus {
  border-color: #034e059d;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.rephrase-button {
  background: rgb(105, 79, 156);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.rephrase-button:hover {
  background: #014205b9;
}

.email-item {
  display: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.email-item:hover {
  background-color: #f8f9fa;
}

.email-item.active {
  background-color: #e9ecef;
  border-color: #ced4da;
}

.loading {
  text-align: center;
  padding: 20px;
}

#back-btn {
  display: none;
}

.notification-card:hover {
  cursor: pointer;
}

.notification-card.unread {
  background-color: #e7f1ff !important;
}

.dt-highlighted {
  background-color: #b2f0f5 !important;
}

#notificationsContainer .simplebar-content {
  padding: 0 !important;
}

#statusFilter_notif .nav-link {
  color: #696f8c;
}

#statusFilter_notif .nav-link.active {
  color: #0085ff;
  border-bottom: 1px solid #0085ff;
}

.modal-bg-ellipse {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.announcement-left,
.announcement-right {
  position: absolute;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.announcement-left {
  left: 0;
  transform: translate(50%, -50%);
}

.announcement-right {
  right: -40px;
  transform: translate(-100%, -50%);
}

.card-badge-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.border-tiffany-blue {
  border-color: #00bfb3 !important;
}

.border-gold-drop {
  border-color: #f57c00 !important;
}

.border-sunset-orange {
  border-color: #ff6550 !important;
}

.text-tiffany-blue {
  color: #00bfb3 !important;
}

.text-gold-drop {
  color: #f57c00 !important;
}

.text-sunset-orange {
  color: #ff6550 !important;
}

.kanban-column-underline-secondary-light,
.kanban-column-underline-warning-light,
.kanban-column-underline-dark-subtle,
.kanban-column-underline-tiffany-blue,
.kanban-column-underline-success-light,
.kanban-column-underline-gold-drop,
.kanban-column-underline-sunset-orange,
.kanban-column-underline-success-dark {
  position: relative;
}

.kanban-column-underline-secondary-light::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #cbd0dd;
}

.kanban-column-underline-warning-light::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #ffcc85;
}

.kanban-column-underline-dark-subtle::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #8a94ad;
}

.kanban-column-underline-tiffany-blue::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #00bfb3;
}

.kanban-column-underline-success-light::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #90d67f;
}

.kanban-column-underline-gold-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #f57c00;
}

.kanban-column-underline-sunset-orange::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #ff6550;
}

.kanban-column-underline-success-dark::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 5px;
  background-color: #23890b;
}

.cursor-pointer {
  cursor: pointer;
}

#customEditor:empty:before {
  content: attr(data-placeholder);
  color: #6c757d;
  pointer-events: none;
}

@media (min-width: 575.98px) {
  #pipelineOffcanvas {
    width: 85%;
  }
}

@media (max-width: 1200px) {
  .flex-direction {
    flex-direction: column !important;
  }
}

@media (max-width: 900px) {
  #mark-complete-btn {
    margin-top: 0.5rem;
  }
}

@media (max-width: 800px) {
  body {
    background-color: white;
  }

  .content {
    padding-bottom: 0px !important;
  }

  .card-body>.d-flex.align-items-start {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .card-body>.d-flex.align-items-start>.ms-4,
  .card-body>.d-flex.align-items-start>.ms-4>h1 {
    margin: 0px !important;
  }

  .card-body h1 {
    font-size: 24px;
  }

  .card-body button {
    font-size: 16px;
    width: 100%;
  }

  #mainContent {
    display: unset !important;
    gap: 0 !important;
  }

  .inner-container {
    width: 100% !important;
    margin-top: 2.5rem;
    margin-bottom: 0 !important;
  }

  .action-buttons {
    display: flex;
    gap: 10px;
  }

  .icons {
    align-items: start;
  }

  .details-section {
    border: none !important;
    margin-bottom: 3rem !important;
  }

  .edit-job-preference,
  .edit-employment-details {
    width: unset !important;
  }

  .profile-card {
    gap: 15px;
  }

  .main-content {
    border: none !important;
  }

  .job-section-mobile {
    display: unset !important;
    justify-content: unset !important;
  }

  .profile-section {
    flex-direction: column;
    gap: 0 !important;
  }

  .margin-mobile {
    margin: 0 !important;
  }

  .padding-mobile {
    padding: 0 !important;
  }

  .width-mobile {
    width: unset !important;
  }

  .mobile-edit {
    right: 0px !important;
    width: 50px !important;
    border: none !important;
    background: none;
  }

  .image-container {
    margin-top: 0px !important;
  }
}

/* Styles of Candidates Pipeline */
.exsisting-notes-container {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.note-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.note-item {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.note-col {
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.note-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ecf8ff;
  border: 1px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.note-icon img {
  width: 24px;
}

.note-line {
  position: absolute;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 16px);
  /* Adjusted to account for gap between items */
  border-left: 2px dashed #e6e6e6;
  z-index: 0;
}

/* Remove line from last item */
.note-item:last-child .note-line {
  display: none;
}


.note-card {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.note-title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.note-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.note-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
}

.note-expiry {
  display: flex;
  align-items: center;
  gap: 4px;
}

.note-expiry i {
  color: #6b7280;
}

.note-expiry-expired {
  color: #f87171;
  font-weight: 500;
}

.note-date {
  white-space: nowrap;
}

.note-footer {
  font-weight: 600;
  background-color: #FEF6DA;
  padding: .5rem .75rem;
  font-size: 13px;
  color: #444;
}

.note-item {
  display: flex;
  align-items: stretch;
}

.note-col {
  flex: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.note-card {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.email-header h5 {
  margin-bottom: 0;
}

.btn-compose {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: .6rem;
  border: 0;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.btn-add-note,
.btn-add-task {
  border: 1px solid #CCCCF5;
  background: none;
  color: #0076fe;
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
}

#editor:focus {
  border: none;
}

.timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: stretch;
  margin-bottom: 16px;
}

.tl-col {
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tl-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF0E6;
  border: 1px solid #FFE2C8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* RIGHT CARD */
.email-card {
  background: #FFF7EF;
  padding: 1rem;
  margin-left: 20px;
}

.email-title {
  font-weight: 700;
  font-size: 15px;
  color: #1f2a37;
  margin: 0;
}

.email-date {
  font-size: 12px;
  color: #7a7a7a;
  white-space: nowrap;
}

.email-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.icon-envelope img {
  width: 34px;
}

.icon-envelope path,
.icon-envelope rect,
.icon-envelope polyline,
.icon-envelope line {
  stroke: #F4A22F;
}

.icon-envelope .fill {
  fill: #F4A22F;
}

@media (min-width: 576px) {
  .tl-col {
    padding-top: 2px;
  }
}

.custom-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #dee2e6;
}

.custom-tabs .tab {
  padding: 10px 14px;
  cursor: pointer;
  color: #6c757d;
  position: relative;
  user-select: none;
  transition: color 0.2s ease;
}

.custom-tabs .tab:hover {
  color: #007aff;
}

.custom-tabs .tab.active {
  color: #007aff;
  font-weight: 600;
}

.custom-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #007aff;
  border-radius: 13px 13px 0 0;
}

.item {
  background: #EDF8FF !important;
  color: #0076FE !important;
}

/* Tasks Timeline Styles */
.tasks-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.tasks-item {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.tasks-col {
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tasks-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff7ef;
  border: 1px solid #fa3b1d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.task-upcoming {
  background-color: #ECF8FF;
  width: 45px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.task-completed {
  background-color: #e6ffdf;
  width: 45px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #068307;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.tasks-icon img {
  width: 24px;
}

.tasks-line {
  position: absolute;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 16px);
  border-left: 2px dashed #e6e6e6;
  z-index: 0;
}

.tasks-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Status Colors */
.task-expired {
  background-color: #FFF9F4;
  border-left: 3px solid #F87171;
}

.tasks-item {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  min-width: 0;
}

.tasks-col {
  width: 56px;
  flex: 0 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tasks-card {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.popup {
  min-width: 120px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-toggle::after {
  display: none;
}

/* End of Styles of Candidates Pipeline */

/* Start of Kanban Feedback Modal Subtitle styling */
.modal-message {
  font-size: 0.93rem;
  color: #5f5f5f;
  font-weight: 400;
  line-height: 1.4;
}

.form-select option {
  color: #999;
  font-weight: 400;
}

.form-control::placeholder {
  color: #999;
  font-weight: 400;
}

.btn-submit {
  background-color: #0066ff;
  color: white;
  font-weight: 500;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  font-size: 13px;
}

.btn-submit:hover {
  background-color: #0056d2;
  color: white;
}

button,
a {
  cursor: pointer;
}

/* End of Kanban Feedback Modal Subtitle styling */

/* Start of Kanban Details Modal styling */

/* Tabs container */
.tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.tab {
  padding: 10px 10px;
  cursor: pointer;
  color: #6c757d;
  position: relative;
  user-select: none;
}

.tab.active {
  color: #007aff;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #007aff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

#modal-activities,
#modal-feedback,
#modal-notes {
  padding-right: 8px;
}

.feedback-card {
  background: #fff;
  padding: 8px 12px;
  font-family: system-ui, sans-serif;
  max-width: 420px;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.quote-icon {
  margin-right: 6px;
}

.feedback-title {
  flex: 1;
  font-size: 13px;
  color: #222;
}

.feedback-title strong {
  font-weight: 600;
}

.feedback-actions {
  display: flex;
  gap: 3px;
}

.feedback-actions button {
  padding: 0;
  border: none;
  background: none;
  height: min-content;
}

.feedback-actions img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.feedback-body,
.note-body {
  border-left: 3px solid #1a73e8;
  padding-left: 8px;
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.4;
}

.feedback-footer {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot-separator {
  margin: 0 4px;
}

#add-notes-btn button i {
  font-size: 0.85rem;
}

/* Textarea styling */
#add-note-form textarea {
  background-color: #f0f6ff;
  border: 1px solid #d0d7de;
  resize: none;
}

#add-note-form label {
  font-size: 0.9rem;
}

#add-note-form .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-size: 0.85rem;
}

#add-note-form .btn-outline-secondary {
  border-color: #d0d7de;
  font-size: 0.85rem;
}

/* End of Kanban Details Modal styling */

/* Start of User Profile styles */

.bg-warning-subtle-profile {
  background-color: #fff5e5;
  color: #f0ad4e;
}

.bg-purple-subtle {
  background-color: #f5f0ff;
  color: #7e57c2;
}

.bg-secondary-subtle-profile {
  background-color: #f0f0f0;
  color: #6c757d;
}

.badge.rounded-pill-profile {
  padding: 0.35em 0.65em;
  font-size: 12px;
  font-weight: 500;
}

/* End of User Profile styles */

/* Start of User and Admin Settings Profile styles */

.drag-drop-container {
  transition: all 0.3s ease;
}

.drag-drop-container:hover {
  border-color: #0076FE !important;
  background-color: #f0f7ff !important;
}

.drag-drop-container.dragover {
  border-color: #0076FE !important;
  background-color: #e6f0ff !important;
}

.icons p,
.icons a,
tr td {
  font-size: 13px;
}

.drag-drop-container {
  transition: all 0.3s ease;
}

.drag-drop-container:hover {
  border-color: #0076FE !important;
  background-color: #f0f7ff !important;
}

.drag-drop-container.dragover {
  border-color: #0076FE !important;
  background-color: #e6f0ff !important;
}

.icon-circle-candidate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #3874ff;
  border-radius: 50%;
  font-size: 12px;
}

#addReferenceBtn:hover {
  background: transparent !important;
  color: #3874ff;
}

.bg-warning-subtle-candidate {
  background-color: #fff5e5;
  color: #f0ad4e;
}

.bg-purple-subtle {
  background-color: #f5f0ff;
  color: #7e57c2;
}

.badge.rounded-pill-candidate {
  padding: 0.35em 0.65em;
  font-size: 12px;
  font-weight: 500;
}

/* End of User and Admin Settings Profile styles */

/* Start of User and Admin Settings tab styles */

.modal.confirm-layer {
  z-index: 1065;
}

.modal-backdrop.confirm-backdrop {
  z-index: 1060;
}


@media (max-width: 800px) {
  .container-settings {
    margin-bottom: 7rem !important;
  }
}

.nav-tabs .nav-link-settings {
  border: none;
  color: #6c757d;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
}

.nav-tabs .nav-link-settings.active {
  color: #0d6efd;
  background-color: white;
  border-bottom: 3px solid #0d6efd;
}

.nav-tabs .nav-link-settings:hover:not(.active) {
  background-color: #f8f9fa;
}

.card-settings {
  border-radius: 10px;
}

.toggle-password {
  cursor: pointer;
  color: #6c757d;
}

.toggle-password:hover {
  color: #0d6efd;
}

.form-control-settings:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.plan-box {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #fff;
}

.help-box {
  background: #007aff;
  color: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.help-box .btn {
  background-color: #fff;
  color: #007aff;
  font-weight: 600;
}

/* New styles for input groups */
.input-group-settings {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  border-left: 0;
  border-radius: 0 0.375rem 0.375rem 0 !important;
}

.form-control-settings {
  border-right: 0;
  padding: 0.375rem 1rem !important;
}

.form-control-settings.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 1rem);
  background-image: none;
}

.is-invalid~.invalid-feedback {
  display: block;
}

.invalid-feedback-message {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

@media (max-width: 768px) {

  .plan-box,
  .help-box {
    margin-top: 1rem;
  }
}

/* End of User and Admin Settings tab styles */

/* Footer Styles */
#notificationsContainer {
  overflow-y: auto;
  height: calc(100vh - 200px);
  -webkit-overflow-scrolling: touch;
}

#notificationsOffcanvas {
  overflow: visible;
}

/* End Footer Styles */

/* Start of Mobile Popup styles */
#mobilePopup {
  position: fixed;
  top: 20px;
  right: -400px;
  width: 100%;
  max-width: 265px;
  background: #fff8f0;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px;
  opacity: 0;
  z-index: 9999;
  transition: all 0.6s ease-in-out;
}

#mobilePopup.show {
  right: 20px;
  opacity: 1;
}

#mobilePopup img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

#mobilePopup h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

#mobilePopup p {
  font-size: 14px;
  color: #333;
  margin: 0;
  text-align: justify;
}

#mobilePopup .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
  color: #555;
}

/* End of Mobile Popup styles */

/* Admin DashBoard Styles  */
.date-trigger {
  cursor: pointer;
}

.popup-date-card {
  display: none;
}

.btn-date-apply {
  background-color: #1677ff;
  color: #fff;
}

.btn-date-apply:hover {
  background-color: #0f5ed7;
  color: #fff;
}

#datePopup[style*="display: block"] {
  top: unset !important;
  left: unset !important;
  transform: none !important;
  right: 0;
}

@media (max-width: 786px) {
  .table-signup {
    margin-bottom: 6rem !important;
  }

}

/* New SignUp Page Styles */
.signup-card {
  transform: translateY(-35%) !important;
}

.signup-form-container {
  height: 45rem;
}

.signup-card {
  right: 16px !important;
}

@media (max-width: 1200px) {
  .signup-container {
    flex-direction: column !important;
  }

  .signup-card {
    transform: translateY(-55%) !important;
  }

  .signup-form-container {
    height: 35rem;
  }
}

@media (max-width: 992px) {
  .signup-card {
    position: static !important;
    transform: none !important;
    margin-top: -20rem;
    margin-bottom: 2rem;
  }

  .testimonial-section {
    text-align: center;
  }

  .client-images {
    justify-content: center;
  }

  .hero-content-signup {
    text-align: center;
  }

  .hero-image-signup {
    visibility: hidden;
  }

  .signup-form-container {
    height: 65rem;
  }
}

@media (max-width: 768px) {
  .sm-margin {
    margin-bottom: 1rem;
  }
}

@media (max-width: 778px) {
  .signup-form-container {
    height: 75rem;
  }
}

@media (max-width: 576px) {

  .hero-content-signup {
    margin-top: 1.5rem !important;
  }

  .signup-form-container {
    height: 80rem;
  }
}

/* SignIn Page Styles */
.person-review-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-height: 90vh;
  object-fit: contain;
}

.person-review-container {
  background: #e7e7e7;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* Pipeline style */
.email-card {
  width: 100%;
}

.timeline-item {
  width: 100%;
}

.email-body {
  width: 100%;
  word-wrap: break-word;
}

.email-attachment {
  width: 100%;
}

.timeline li:after, .timeline li::before {
  content: none !important;
}

.file-preview-card {
  width: fit-content;
}

.nav-link:has(.nav-item-count:not(:empty)) {
  font-weight: bold !important;
}

.nav-link:has(.nav-item-count:not(:empty)) .flex-1,
.nav-link:has(.nav-item-count:not(:empty)) .nav-item-count {
  font-weight: bold !important;
}

.deep-search-toggle {
  transition: all 0.2s ease;
  z-index: 3;
}

.deep-search-toggle.active {
  color: #007bff !important;
}

.deep-search-toggle .fas.fa-crosshairs {
  font-size: 0.75rem;
}

.search-results-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.email-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  min-height: 42px;
  padding: 0.375rem 0.75rem;
  border: 1px solid #d1d7e0;
  border-radius: 0.375rem;
  background-color: #fff;
}

.email-chips-container:focus-within {
  border-color: #3874ff;
  box-shadow: 0 0 0 0.2rem rgba(56, 116, 255, 0.25);
}

.email-chip {
  display: inline-flex;
  align-items: center;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 1rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  margin: 0.125rem;
}

.email-chip .email-address {
  margin-right: 0.25rem;
}

.email-chip .remove-chip {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
  font-size: 0.75rem;
  line-height: 1;
}

.email-chip .remove-chip:hover {
  color: #dc3545;
}

.email-chip-input {
  flex: 1;
  min-width: 120px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
}

.email-chip-input::placeholder {
  color: #6c757d;
}

.invalid-email {
  border-color: #dc3545 !important;
  background-color: #f8d7da !important;
}

/* Bulk Action Modal Styles */
.bulk-modal .modal-content {
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  background: #fff;
}

.bulk-modal .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: none;
  font-size: 20px;
  opacity: 0.7;
}

.bulk-modal .modal-body {
  text-align: center;
}

.bulk-modal .modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.bulk-modal .modal-icon img {
  width: 64px;
  height: 64px;
}

.bulk-modal .modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.bulk-modal .modal-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.bulk-modal .modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.bulk-modal .btn-cancel {
  padding: 10px 26px;
  background: #EEF2F6;
  color: #505F79;
  border-radius: 8px;
  font-weight: 500;
  border: none;
}

.bulk-modal .btn-confirm {
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
}

/* Specific button colors for different actions */
.btn-confirm-delete {
  background: #FF6A00;
  color: #fff;
}

.btn-confirm-archive {
  background: #007bff;
  color: #fff;
}

.btn-confirm-star {
  background: #ffc107;
  color: #000;
}

.btn-confirm-unstar {
  background: #6c757d;
  color: #fff;
}

.btn-confirm-recover {
  background: #28a745;
  color: #fff;
}

.btn-confirm-unarchive {
  background: #17a2b8;
  color: #fff;
}

/* Undo Notification Styles */
.undo-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #262626;
  color: white;
  padding: 12px 20px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  min-width: 300px;
  max-width: 500px;
}

.undo-notification.show {
  transform: translateX(-50%) translateY(0);
}

.undo-notification .message {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.undo-notification .undo-btn {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.undo-notification .undo-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.undo-notification .countdown {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}

.undo-notification .countdown::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 10s linear;
}

.undo-notification.show .countdown::after {
  transform: scale(1);
}

/* Gmail-style recipient display */
.recipient-display {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.recipient-compact {
  padding: 2px 6px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.recipient-compact:hover {
  background-color: #f0f0f0;
}

.recipient-details-popup {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 12px;
  min-width: 250px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-top: 5px;
}

.recipient-display:hover .recipient-details-popup {
  opacity: 1;
  visibility: visible;
}

.recipient-details-popup::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 15px;
  width: 10px;
  height: 10px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.recipient-type {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.recipient-list {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
}

.search-footer {
  background-color: #f8f9fa;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.search-results-header {
  background-color: #f8f9fa;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.search-pagination {
  background-color: #f8f9fa;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

@media (min-width: 992px) {
  .email-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
  }

  .email-content.scrollbar {
    height: calc(100vh - 180px);
    overflow-y: auto;
  }

  .email-container {
    position: relative;
  }
}