@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

:root {
  --bg-color: #ffffff;
  --bg-color2: #f6f6f6;
  --text-color: #000000;
  --card-bg: #fafafa;
  --card-bg2: #ffffff;
  --border-color: #dee2e6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --accent-color: #4a6cf7;
  --header-bg: #ffffff;
  --footer-bg: #f8f9fa;
  --icon-color: #000000;
  --theme-icon-color: #666666;
  --transition-speed: 0.4s;
  --icon-bg-color: #ffffff;
  --fa-bg-color: #f5f5f5;
  --input-search-bg: #ffffff;
  --nav-border: #eaeaea;
  --text-span: #00000080;
  --fa-bg-color2: #00000080;
  --bell-bg: #f7f7f7;
  --details-bg1: #ffffff;
  --details-bg2: #fafafa;
  --export-bg: #000000cc;
  --export-cl: #ffffff;
  --status-btn: #eaeaea;
  --form-border: #eaeaea;
  --form-label: #000000;
  --editor-text: #475569;
  --select-up-border: #f2f2f2;
  --select-up-bg: #ffffff;
  --slt-text: #00000033;
  --table-bg: #ffffff;
  --tr-bg-color: #ffffff;
  --text3-color: #000000b2;
  --icon3-bg: #000000b2;
}

.dark-mode {
  --bg-color: #121212;
  --bg-color2: #121212;
  --text-color: #ffffff;
  --card-bg: #ffffff33;
  --card-bg2: #ffffff33;
  --border-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --accent-color: #6c8eff;
  --header-bg: #1a1a1a;
  --footer-bg: #1a1a1a;
  --icon-color: #ffffff;
  --theme-icon-color: #ffffff;
  --icon-bg-color: #ffffff4d;
  --fa-bg-color: #ffffff4d;
  --input-search-bg: #ffffff33;
  --nav-border: #eaeaea1a;
  --text-span: #ffffff80;
  --fa-bg-color2: #00000080;
  --bell-bg: #ffffff;
  --details-bg1: #ffffff0d;
  --details-bg2: #ffffff33;
  --export-bg: #ffffff;
  --export-cl: #000000;
  --status-btn: #ffffff33;
  --form-border: #ffffff;
  --form-label: #ffffff;
  --editor-text: #ffffff;
  --select-up-border: #ffffff;
  --select-up-bg: #ffffff4d;
  --slt-text: #ffffff;
  --table-bg: #ffffff33;
  --tr-bg-color: #ffffff4d;
  --text3-color: #ffffff;
  --icon3-bg: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color var(--transition-speed),
    color var(--transition-speed), border-color var(--transition-speed),
    box-shadow var(--transition-speed);
  font-family: "Sora", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-size: 14px;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-icon {
  font-size: 1.5rem;
  color: var(--theme-icon-color);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-icon:hover {
  transform: scale(1.1);
}

.theme-icon.active {
  color: var(--theme-icon-color);
}

.theme-icon.hidden {
  display: none;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.job-application {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.job-application .carousel-section {
  position: fixed;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.job-application .home-banner .carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 400px;
  width: 100%;
  height: 100vh;
}

.job-application .carousel-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  padding: 10px 15px;
}

.job-application .carousel-indicators {
  position: absolute;
  bottom: 50px;
  left: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.job-application .carousel-indicators li {
  border: 3px solid #ffffff33;
  width: 56px;
  color: #ffffff33;
  transition: all 0.3s ease;
}

.job-application .carousel-indicators .active {
  border: 3px solid #006bff;
  color: #006bff;
  width: 56px;
}

.job-application .carousel-indicators .active {
  opacity: 1;
}

.job-application .home-banner .card {
  background-color: transparent;
  border: none;
}

.job-application .home-banner h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 10px;
  color: #ffffff;
  margin-bottom: 30px;
}

.job-application .content-section {
  flex: 1;
  margin-left: 50%;
  padding: 40px;
  overflow-y: auto;
  max-height: 100vh;
}

.job-application .content-section h1 {
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 40px;
}

.job-application .content-section h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 12px;
}

.job-application .content-section p {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 30px;
}

.job-application .content-section-lists {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.job-application .content-section-lists-left {
  color: #006bff;
}

.job-application .content-section-lists-right {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
}

.job-application .content-section-line {
  border: 1px solid #eaeaea;
  margin-bottom: 40px;
}

.pry_btn a {
  text-decoration: none;
}

.pry_btn button {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.pry_btn button:hover {
  background-color: #1d7cff;
}

.job-application .content-section-application-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #ff0000;
  margin-top: 10px;
}

.get-started {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding-top: 80px;
}

.get-started-logo {
  margin-bottom: 50px;
}

.get-started h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 50px;
}

.get-started-rows .form-group {
  position: relative;
  margin-bottom: 20px;
}

.get-started-rows .form-input {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid #ffffff33;
  background-color: transparent;
  border-radius: 32px;
  font-size: 16px;
  outline: none;
  height: 63px;
  color: #ffffff;
}

.get-started-rows .form-label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #ffffff;
  pointer-events: none;
  transition: all 0.3s ease;
}

.get-started-rows .form-input:focus {
  border: 1px solid #ffffff;
}

.get-started-rows .form-input:focus + .form-label,
.get-started-rows .form-input:not(:placeholder-shown) + .form-label {
  top: -15px;
  left: 30px;
  font-size: 12px;
  color: #ffffff;
}

.get-started-check .checkbox-container {
  display: flex;
  align-items: flex-start;
  padding: 15px;
}

.get-started-check .custom-checkbox {
  position: relative;
  margin-right: 15px;
  flex-shrink: 0;
}

.get-started-check .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.get-started-check .checkmark {
  height: 18px;
  width: 18px;
  border-radius: 9px;
  background-color: #ffffff33;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-started-check .custom-checkbox input:checked ~ .checkmark {
  background-color: #006bff;
  border-color: #006bff;
}

.get-started-check .checkmark:after {
  content: "";
  display: none;
  width: 4px;
  height: 8px;
  border: solid #006bff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.get-started-check .custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.get-started-check .checkbox-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  user-select: none;
}

.get_started-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 20px;
}

.get_started-nav-left a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.application-details-nav {
  padding: 30px;
}

.application-details-nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.application-details-nav-active {
  display: flex;
  align-items: center;
  gap: 10px;
}

.application-details-nav-regular {
  display: flex;
  align-items: center;
  gap: 10px;
}

.application-details-nav-active-num {
  background-color: #1d7cff;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.application-details-nav-regular-num {
  background-color: #d9d9d9;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.application-details-nav-active-info {
  font-weight: 600;
  font-size: 16px;
}

.application-details-nav-regular-info {
  font-weight: 600;
  font-size: 16px;
  color: #00000080;
}

.application-details-progress {
  margin-bottom: 40px;
}

.application-details-progress .progress-bar {
  background-color: #006bff;
  height: 3px;
}

.application-details-progress .progress {
  height: 3px;
  background-color: #0000000d;
}

.application-details-field .form-group {
  position: relative;
  margin-bottom: 20px;
}

.application-details-field .date-input {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid var(--form-border);
  background-color: transparent;
  border-radius: 32px;
  font-size: 16px;
  outline: none;
  height: 63px;
  color: var(--form-label);
}

.application-details-field .date-input:focus {
  border: 1px solid var(--form-border);
}

.application-details-field .date-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--form-label);
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
  padding: 0 4px;
}

.application-details-field .date-input:focus + .date-label,
.date-input:not(:placeholder-shown) + .date-label {
  top: 0;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}

.application-details-field .date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--form-label);
  font-size: 18px;
  pointer-events: none;
}

.application-details-field .date-input:focus ~ .date-icon {
  color: var(--form-label);
}

.application-details-field
  input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

.application-details-field input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.application-details-select .form-group {
  position: relative;
  margin-bottom: 20px;
}

.application-details-select .select-wrapper {
  position: relative;
  width: 100%;
}

.application-details-select .select-wrapper::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #000000;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.application-details-select select {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid #eaeaea;
  background-color: transparent;
  border-radius: 32px;
  font-size: 16px;
  outline: none;
  height: 63px;
  color: #000000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.application-details-select select:focus {
  outline: none;
  border-color: #000000;
}

.application-details-select label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 5px;
  color: #000000;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.application-details-select select:focus + label,
.application-details-select select:valid + label,
.application-details-select select.active + label {
  top: 0;
  font-size: 12px;
  color: #000000;
}

.application-details-field2 .form-group {
  position: relative;
  margin-bottom: 20px;
}

.application-details-field2 .form-input {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid #eaeaea;
  background-color: transparent;
  border-radius: 32px;
  font-size: 16px;
  outline: none;
  height: 63px;
  color: #000000;
}

.application-details-field2 .form-label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #000000;
  pointer-events: none;
  transition: all 0.3s ease;
}

.application-details-field2 .form-input:focus {
  border: 1px solid #000000;
}

.application-details-field2 .form-input:focus + .form-label,
.application-details-field2 .form-input:not(:placeholder-shown) + .form-label {
  top: -10px;
  left: 30px;
  font-size: 12px;
  color: #000000;
  background-color: #ffffff;
  padding: 3px;
}

.application_d-btn {
  margin-top: 50px;
  margin-bottom: 50px;
}

.application-details-img-mobile {
  display: none;
}

.application-details-img {
  margin-bottom: 50px;
}

.application_d-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

#page1-back {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
}

#page1-continue {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

#page1-continue:hover {
  background-color: #1d7cff;
}

#page2-back {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
}

#page2-continue {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

#page2-continue:hover {
  background-color: #1d7cff;
}

#page3-back {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
}

#page3-continue {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

#page3-continue:hover {
  background-color: #1d7cff;
}

#page4-back {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
}

#page4-continue {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

#page4-continue:hover {
  background-color: #1d7cff;
}

.skill-add {
  text-align: right;
  margin-bottom: 20px;
}

.skill-add button {
  outline: none;
  border: none;
  width: 26px;
  height: 26px;
  top: 3px;
  left: 3px;
  background-color: #0d0c0c;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
}

.upload-container {
  position: relative;
  margin-bottom: 20px;
}

.upload-container .upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d9d9d9;
  border-radius: 30px;
  background-color: #006bff;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 200px;
}

.upload-container .upload-area:hover {
  background-color: #1d7cff;
  border-color: #d9d9d9;
}

.upload-container .upload-icon {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}

.upload-container .upload-label {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.upload-container .file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-container .file-info {
  margin-top: 15px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.upload-container .preview-container {
  margin-top: 20px;
  display: none;
  text-align: center;
}

.forget_pass a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: #006bff;
}

.forget_pass {
  margin-bottom: 50px;
}

.sidebar {
  width: 70px;
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  position: fixed;
  height: 95vh;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  margin: 10px;
  border-radius: 30px;
  padding: 15px;
}

::-webkit-scrollbar {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.nav-list {
  list-style: none;
  padding: 15px 0;
}

.nav-item {
  position: relative;
  margin-bottom: 20px;
}

.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #ffffff80;
  color: #00000080;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-list-links {
  position: relative;
  margin-bottom: 20px;
}

.nav-list-links:hover {
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.nav-list-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #ffffff80;
  color: #00000080;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.side_nav-links-menu {
  color: white;
  font-size: 10px;
  transition: all 0.3s ease;
  margin-top: 0px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  text-align: center;
}

.nav-list-links i {
  font-size: 20px;
}

.nav-list-links:hover i {
  transform: rotate(50deg);
  transition: all 0.3s ease;
}

.nav-list-links:hover .side_nav-links-menu {
  display: block;
}

.side_nav-links .active a {
  background-color: #ffffff;
  color: #000000;
}

.main-content {
  flex: 1;
  margin-left: 80px;
  transition: margin-left 0.3s ease;
  padding-bottom: 50px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-color);
}

.content {
  padding: 30px;
  overflow-y: auto;
  max-height: calc(100vh - 70px);
}

.search-bar {
  border: 1px solid var(--nav-border);
  border-radius: 33px;
  display: flex;
  align-items: center;
  height: 60px;
  background-color: var(--input-search-bg);
}

.search-bar input {
  outline: none;
  border: none;
  background-color: transparent;
  padding: 20px;
  width: 300px;
}

.search-bar input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color);
}

.search-bar i {
  background-color: var(--fa-bg-color);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--icon-color);
}

.nav-right .notification {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--nav-border);
  border-radius: 33px;
  height: 60px;
  padding-right: 20px;
  background-color: var(--input-search-bg);
}

.notification i {
  background-color: var(--fa-bg-color);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--icon-color);
}

.nav-right .notification-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006bff;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.notification-dte {
  font-weight: 400;
  font-size: 14px;
}

.notification-notification .notification-icon i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #006bff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-notification i {
  background-color: var(--fa-bg-color);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--icon-color);
}

.nav-right .notification-dts {
  font-weight: 400;
  font-size: 14px;
}

.notification-notification {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--nav-border);
  border-radius: 33px;
  height: 60px;
  padding-right: 20px;
  background-color: var(--input-search-bg);
}

.nav-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-right .profile-img img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.content h1 {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 50px;
}

.applied_table-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.applied_table-nav-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.applied_table-nav-left {
  font-weight: 500;
  font-style: Medium;
  font-size: 19.69px;
  color: #303030;
}

.applied_table-nav-rightL {
  font-weight: 400;
  font-size: 17.23px;
}

.applied_table-nav-rightR {
  border: none;
  outline: none;
  border: 1.23px solid #0000001a;
  padding: 9px;
  border-radius: 12px;
}

.applied_table-nav-rightR .form-select {
  border: none;
  outline: none;
}

.table-img {
  border: 1.23px solid #eaeaea;
  border-radius: 15px;
  padding: 10px;
  width: 71px;
}

.job-title-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.job-title-row-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 17.23px;
  margin-bottom: 10px;
}

.job-title-row-head2 {
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 9px;
}

.job-title-nav-time {
  background-color: #006bff;
  padding: 3px 18px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 14.77px;
  color: #ffffff;
}

.job-title-nav span {
  color: #006bff;
  font-size: 18px;
}

.job-title-nav-location {
  font-weight: 400;
  font-size: 16px;
}

.applied-p {
  font-weight: 400;
  font-size: 17.23px;
  margin-top: 15px;
}

.applied-p2 {
  font-weight: 400;
  font-size: 17.23px;
  margin-top: 15px;
  width: 250px;
}

.applied-action {
  border: none;
  outline: none;
  font-weight: 500;
  font-style: Medium;
  font-size: 19.69px;
  padding: 6px 36px;
  border-radius: 27px;
  color: #ffffff;
  background-color: #006bff;
  width: fit-content;
}

.applied_table td {
  padding-top: 20px;
  padding-bottom: 20px;
}

#myDIV .btn {
  font-weight: 600;
  font-size: 17.23px;
  line-height: 16px;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 12.3px;
  background-color: #d9d9d9;
  margin-right: 10px;
}

#myDIV .active {
  font-weight: 600;
  font-size: 17.23px;
  line-height: 16px;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 12.3px;
  background-color: #006bff;
}

#myDIV-left {
  color: #d9d9d9;
}

#myDIV-right {
  color: #006bff;
}

.btn:focus,
.btn.focus {
  box-shadow: none;
}

.applied-table-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  margin-top: 30px;
}

.applied_table .table th,
.table td {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.applied-action-btn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.applied-action-btn-view {
  font-size: 20px;
  color: #006bff;
  cursor: pointer;
}

.applied-action-btn-del {
  color: #e52936;
  font-size: 20px;
  cursor: pointer;
}

.job_offers-box {
  background-color: #e6f1ff;
  box-shadow: 0px 0px 20px 0px #e6f1ff;
  padding: 28px 37px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.job_offers-box:hover {
  background-color: #ffffff;
}

.job_offers-box-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.job_offers-box-nav-right {
  background-color: #ffffff;
  padding: 10px;
  border: 1.5px solid #eaeaea;
  border-radius: 18px;
  width: 112px;
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job_offers-box-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 19px;
}

.job_offers-box-titles-list {
  font-weight: 400;
  font-size: 20px;
  background-color: #006bff33;
  padding: 3px 30px;
  border-radius: 15px;
}

.job_offers-box-nav-right {
  margin-right: 50px;
}

.job_offers-box-post-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f3f3f3;
  padding: 21px 28px;
  border-radius: 45px;
}

.job_offers-box-post-date-left {
  font-weight: 400;
  font-size: 21px;
}

.job_offers-box-post-date-right a {
  text-decoration: none;
}

.job_offers-box-post-date-right a button {
  border: none;
  outline: none;
  background-color: #006bff;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  padding: 8px 30px;
  border-radius: 33px;
  color: #ffffff;
}

.my_profile_section-left .tab {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.reLine {
  position: absolute;
  top: 0px;
  left: 15px;
  z-index: -1;
}
.controls {
  display: none;
}

.info-button {
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  background-color: transparent;
  color: var(--text3-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: flex-start;
}

.info-button:focus {
  border: none;
  outline: none;
}

.info-button.active {
  border: none;
  outline: none;
  color: #006bff;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 15px;
  background-color: #006bff;
  color: #ffffff;
  transition: all 0.3s ease;
}

.my_profile_section-left {
  position: fixed;
}

.info-button:not(.active) .icon-container {
  background-color: #000000b2;
}

.my_profile_section-right .tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  box-shadow: 0px 0px 20px 0px #0000001a;
  padding: 50px;
  border-radius: 20px;
}

.profile-sec-btn {
  display: flex;
  align-items: end;
  justify-content: end;
  margin-top: 30px;
}

.profile-sec-btn button {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 10px 40px;
  border-radius: 22px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.profile-sec-btn button:hover {
  background-color: #000000;
}

.passBtn {
  margin-top: 40px;
}

.passBtn button {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 10px 40px;
  border-radius: 22px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.passBtn button:hover {
  background-color: #000000;
}

.tabcontent-head {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
}

.add-more-quall {
  margin-bottom: 50px;
}

.add-more-quall button {
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  color: #006bff;
}

.add-more-quall button span {
  width: 15px;
  height: 5px;
  border-radius: 50%;
  padding: 1px 5px;
  border: 1px solid #006bff;
  margin-left: 5px;
}

.profile_textarea textarea {
  outline: none;
  border: none;
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 20px;
}

.profile_textarea textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.upload-container2 {
  position: relative;
  margin-bottom: 80px;
}

.upload-container2 .upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d9d9d9;
  border-radius: 30px;
  background-color: transparent;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 200px;
}

.upload-container2 .upload-icon {
  font-size: 50px;
  color: #2424244d;
  margin-bottom: 5px;
}

.upload-container2 .upload-label {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.upload-container2 .file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-label-btn {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 5px 30px;
  border-radius: 23px;
  font-weight: 500;
  font-size: 16.75px;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.upload-label-p {
  font-weight: 400;
  font-size: 12px;
}

.ced-Btn button {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 10px 40px;
  border-radius: 22px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.ced-Btn button:hover {
  background-color: #000000;
}

.ced-Btn {
  text-align: right;
}

.dashboardPage-left-row {
  background-color: #369fff;
  box-shadow: 0px 11.12px 33.37px 0px #369fff66;
  padding: 16px 22px;
  border-radius: 22px;
  color: #ffffff;
  margin-bottom: 33px;
}

.dashboardPage-left-row-head {
  font-weight: 600;
  font-size: 22.25px;
}

.dashboardPage-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.dashboardPage-nav-left {
  font-weight: 800;
  font-size: 40px;
}

.dashboardPage-nav-left span {
  color: #006bff;
}

.dashboardPage-left-row-count {
  font-weight: 500;
  font-style: Medium;
  font-size: 14.07px;
  color: #f0f0f0;
  margin-bottom: 22px;
}

.dashboardPage-left-row-nav {
  display: flex;
  justify-content: space-between;
}

:root {
  --progress-bar-width: 50px;
  --progress-bar-height: 50px;
  --font-size: 13px;
}

.dashboardPage-left-row-nav-left .circular-progress {
  width: var(--progress-bar-width);
  height: var(--progress-bar-height);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboardPage-left-row-nav-left .inner-circle {
  position: absolute;
  width: calc(var(--progress-bar-width) - 10px);
  height: calc(var(--progress-bar-height) - 10px);
  border-radius: 50%;
  background-color: transparent;
}

.dashboardPage-left-row-nav-left .percentage {
  position: relative;
  font-size: var(--font-size);
  color: #171717;
  top: 8px;
}

.dashboardPage-left-row-nav-right i {
  font-size: 50px;
}

.recetAct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.recetAct-left {
  font-weight: 500;
  font-style: Medium;
  font-size: 26.7px;
  color: #303030;
}

.recetAct-left span {
  color: #006bff;
  margin-right: 5px;
}

.recetAct-right {
  font-weight: 500;
  font-style: Medium;
  font-size: 20.02px;
  color: #369fff;
}

.recetAct-right span {
  color: #8093a5;
  margin-right: 5px;
}

.recentAct-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.recentAct-left {
  color: #000000b2;
  font-size: 15.25px;
}

.recentAct-center {
  font-weight: 400;
  font-size: 15.25px;
  color: #000000b2;
}

.recentAct-right {
  background-color: #006bff33;
  padding: 2.35px 11.73px;
  border-radius: 11.73px;
  font-weight: 400;
  font-size: 14.07px;
}

.dash-circle-chats {
  padding-left: 30px;
}

.dashboardPage-rowRight-line {
  position: absolute;
  left: 20px;
  top: -150px;
}

.dashboardPage-rowRight-line img {
  height: 1000px;
}

.dashboardPage-rowRight-head {
  font-weight: 600;
  font-size: 26.7px;
  color: #303030;
  margin-bottom: 40px;
}

.dashboardPage-rowRight-sub {
  font-weight: 400;
  font-size: 15.57px;
  line-height: 24.47px;
  margin-bottom: 8px;
}

.dashboardPage-rowRight p {
  font-weight: 400;
  font-size: 13.35px;
  line-height: 24.47px;
  margin-bottom: 30px;
}

.cieclesss {
  position: relative;
}

.dashboardPage-rowRight-circleS {
  position: relative;
}

.dashboardPage-rowRight-circle1 {
  position: absolute;
  left: 50px;
}

.dashboardPage-rowRight-circle3 {
  position: absolute;
  left: 0px;
  top: 200px;
}

.dashboardPage-rowRight-circle2 {
  position: absolute;
  right: 20px;
  top: 40px;
  z-index: 1;
}

.circle-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-wrapper {
  position: relative;
}

.circle-background {
  background-color: #6463d6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.percentage {
  line-height: 1;
}

.label {
  margin-top: 5px;
}

.progress-ring {
  position: absolute;
  z-index: 0;
}

.progress-ring-circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring-background {
  fill: none;
  stroke: transparent;
}

.progress-ring-progress {
  fill: none;
  stroke: #6463d6;
  transition: stroke-dashoffset 0.5s ease;
}

/* First Circle: 152px × 156px - 85% Listings */
.circle-1 .circle-background {
  width: 152px;
  height: 156px;
}

.circle-1 .percentage {
  font-size: 24px;
}

.circle-1 .label {
  font-size: 12px;
}

.circle-1 .progress-ring {
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
}

.circle-1 .progress-ring-background,
.circle-1 .progress-ring-progress {
  stroke-width: 4;
}

.circle-1 .progress-ring-progress {
  stroke-dasharray: 440;
  stroke-dashoffset: 66;
}

/* Second Circle: 240px × 240px - 85% Saved */
.circle-2 .circle-background {
  width: 240px;
  height: 240px;
}

.circle-2 .percentage {
  font-size: 36px;
}

.circle-2 .label {
  font-size: 18px;
}

.circle-2 .progress-ring {
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
}

.circle-2 .progress-ring-background,
.circle-2 .progress-ring-progress {
  stroke-width: 4;
}

.circle-2 .progress-ring-progress {
  stroke-dasharray: 690.8;
  stroke-dashoffset: 103.62;
}

/* Third Circle: 179px × 184px - 92% Job Alert */
.circle-3 .circle-background {
  width: 179px;
  height: 184px;
}

.circle-3 .percentage {
  font-size: 28px;
}

.circle-3 .label {
  font-size: 14px;
}

.circle-3 .progress-ring {
  top: -22px;
  left: -22px;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
}

.circle-3 .progress-ring-background,
.circle-3 .progress-ring-progress {
  stroke-width: 4;
}

.circle-3 .progress-ring-progress {
  stroke-dasharray: 550;
  stroke-dashoffset: 44;
}

.dashboardPage-rowRight-bar {
  position: relative;
  bottom: -450px;
}

.dashboardPage-rowRight-bar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 47px;
}

.dashboardPage-rowRight-bar-nav-right {
  display: flex;
  gap: 10px;
}

.dashboardPage-rowRight-bar-nav-left {
  font-weight: 600;
  font-size: 26.7px;
  color: #303030;
}

.dashboardPage-rowRight-bar-nav-right-days {
  font-weight: 500;
  font-style: Medium;
  font-size: 15.57px;
  color: #bdbdbd;
}

.my_dash-bar-chat-row-progress {
  width: 20px;
  height: 200px;
  border-radius: 22px;
  background-color: #006bff;
  margin-left: 6px;
  margin-bottom: 10px;
}

.my_dash-bar-chat-row-days {
  font-weight: 500;
  font-size: 15.57px;
  color: #303030;
}

.my_dash-bar-chat {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.recruitment_Dashboard-top-row1 {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  padding: 23px 28px;
  border-radius: 21px;
  margin-bottom: 20px;
}

.recruitment_Dashboard-top-row2 {
  background-color: var(--card-bg);
  padding: 23px 28px;
  border-radius: 21px;
  margin-bottom: 20px;
  color: #000000;
}

.recruitment_Dashboard-top-row2:hover {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  color: #ffffff;
}

.recruitment_Dashboard-top-row-nav1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.recruitment_Dashboard-top-row-nav1-head {
  color: #ffffff;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
}

.recruitment_Dashboard-top-row-nav1-head2 {
  /* color: var(--text-color); */
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
}

.recruitment_Dashboard-top-row-nav1-btn a {
  text-decoration: none;
  color: #0d0c0c;
  font-size: 18px;
}

.recruitment_Dashboard-top-row-nav1-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
}

.recruitment_Dashboard-top-row-nav1-btn2 {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(icon-bg-color);
  border-radius: 50%;
}

.recruitment_Dashboard-top-row-nav2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruitment_Dashboard-top-row-nav2L {
  font-weight: 600;
  font-size: 60px;
  color: #ffffff;
}

.recruitment_Dashboard-top-row-nav2L2 {
  font-weight: 600;
  font-size: 60px;
  /* color: var(--text-color); */
}

.recruitment_Dashboard-top-row-nav2R {
  font-weight: 600;
  font-size: 60px;
  color: #ffffff;
  opacity: 10%;
}

.recruitment_Dashboard-top-row-nav2R2 {
  font-weight: 600;
  font-size: 60px;
  color: #d9d9d9;
  opacity: 50%;
}

.recruitment_Dashboard {
  margin-bottom: 40px;
}

.recruitment_post_activities-left {
  background-color: var(--card-bg);
  padding: 23px 28px;
  border-radius: 21px;
}

.recruitment_post_activities-left-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 36px;
}

.recruitment_post_activities-left-navL {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: var(--text-color);
  margin-top: 15px;
}

.recruitment_post_activities-left-nav-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.recruitment_post_activities-left-nav-detailsR a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
}

.recruitment_post_activities-left-nav-detailsR {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--fa-bg-color2);
  border-radius: 50%;
}

.recruitment_post_activities-left-nav-detailsL {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recruitment_post_activities-left-nav-detailsL1-img img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}

.recruitment_post_activities-left-nav-detailsL2-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: var(--text-color);
}

.recruitment_post_activities-left-nav-detailsL2 span {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-span);
}

.recruitment_post_activities-right {
  background-color: var(--card-bg);
  border-radius: 21px;
  border: 1px solid var(--nav-border);
  padding-bottom: 20px;
}

.recruitment_post_activities-details-Boxx {
  height: 240px;
  overflow: auto;
}

.recruitment_post_activities-right-nav {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.recruitment_post_activities-right-navL {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: var(--text-color);
}

.recruitment_post_activities-right-navR {
  color: #006bff;
  font-size: 25px;
}

.recruitment_post_activities-right-sub {
  padding: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: var(--text-color);
}

.recruitment_post_activities-details-tab {
  padding: 20px;
  background-color: var(--details-bg1);
  display: flex;
  align-items: center;
  gap: 50px;
}

.recruitment_post_activities-details-tab2 {
  padding: 20px;
  background-color: var(--details-bg2);
  display: flex;
  align-items: center;
  gap: 50px;
}

.recruitment_post_activities-details-tabAA {
  display: flex;
  gap: 20px;
  align-items: center;
}

.recruitment_post_activities-details-tabA {
  width: 60px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bell-bg);
  color: #000000;
}

.recruitment_post_activities-details-tabB-sub {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-span);
}

.recruitment_post_activities-details-tabB-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: var(--text-color);
}

.recruitment_post_activities-details-tabC {
  font-size: 20px;
  color: var(--text-color);
}

.recruite_navigation-lists a {
  text-decoration: none;
}

.recruite_navigation-active {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  width: 300px;
  border-radius: 21px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.recruite_navigation-regular {
  background-color: #fafafa;
  width: 300px;
  border-radius: 21px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
}

.recruite_navigation-regular:hover {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  color: #ffffff;
}

.recruite_navigation-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
}

.recruite_navigation-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0d0c0c;
}

.recruite_navigation-lists {
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
  gap: 20px;
}

.recruite_navigation {
  margin-bottom: 50px;
}

.navigation_inputs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 74px;
}

.dashboard-export {
  border: 1px solid var(--nav-border);
  border-radius: 33px;
  display: flex;
  align-items: center;
  height: 60px;
  color: var(--export-cl);
  padding: 20px;
  background-color: var(--export-bg);
}

.dashboard-export-icon i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #006bff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.sortRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 21px;
}

.sortRow-left {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: var(--text-color);
}

.recruit_box {
  background-color: var(--card-bg);
  padding: 80px 35px;
  border-radius: 21px;
}

.sortRow-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sortRow-rightB .status-btn {
  border: none;
  outline: none;
  height: 60px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: none;
  border-radius: 33px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.sortRow-rightB .status-posted {
  border: none;
  outline: none;
  background-color: var(--status-btn);
  color: var(--text-color);
}

.sortRow-rightB .status-expired {
  border: none;
  outline: none;
  background-color: var(--status-btn);
  color: var(--text-color);
}

.sortRow-rightB .icon-container {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #006bff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.3s ease;
}

.recruit_box .job-content {
  margin-top: 20px;
}

.recruit_box .expired-content {
  display: none;
}

.recruit_box-row {
  background-color: var(--card-bg2);
  padding: 39px 20px;
  border-radius: 30px;
  margin-bottom: 50px;
}

.recruit_box-row-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.recruit_box-row-nav-txt-head {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: var(--text-color);
}

.recruit_box-row-nav-txt span {
  color: var(--text-span);
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
}

.recruit_box-row-nav-img img {
  width: 70px;
  height: 60px;
  border-radius: 10px;
}

.recruit_box-row-sub {
  font-weight: 400;
  font-size: 14px;
  color: #006bff;
  margin-bottom: 10px;
}

.recruit_box-row p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: var(--text-span);
  margin-bottom: 20px;
}

.recruit_box-row-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit_box-row-priceL {
  font-weight: 800;
  font-size: 24px;
  color: var(--text-color);
}

.recruit_box-row-priceL span {
  font-weight: 400;
  font-size: 20px;
}

.recruit_box-row-priceR a {
  text-decoration: none;
  background-color: #006bff;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: #ffffff;
}

.recruit_box-row-priceR2 a {
  text-decoration: none;
  background-color: #ff0000;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #ffffff;
}

.postedContent-Nav {
  text-align: right;
}

.postedContent-Nav .navigation {
  display: flex;
  justify-content: right;
  align-items: end;
  gap: 8px;
  margin-top: 20px;
}

.postedContent-Nav .nav-item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  user-select: none;
}

.postedContent-Nav .nav-item:hover:not(.active) {
  background-color: #d9d9d9;
}

.postedContent-Nav .nav-item.active {
  background-color: #006bff;
  color: white;
  border-color: #006bff;
}

.postedContent-Nav .arrow {
  font-weight: bold;
  font-size: 18px;
}

.recruitHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}

.recruitHeader-head {
  font-weight: 800;
  font-size: 40px;
  color: var(--text-color);
}

.recruitHeader-btn a {
  text-decoration: none;
}

.recruitHeader-btn a button {
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  color: #ffffff;
}

.addJob_page-row-left {
  background-color: var(--card-bg);
  padding: 70px 40px;
  border-radius: 20px;
}

.addJob_page-row-right {
  background-color: var(--card-bg);
  padding: 70px 40px;
  border-radius: 20px;
}

.addJob_page-row-field .form-group {
  position: relative;
  margin-bottom: 20px;
}

.addJob_page-row-field .form-input {
  width: 100%;
  padding: 20px 25px;
  border: 1px solid var(--form-border);
  background-color: transparent;
  border-radius: 32px;
  font-size: 14px;
  outline: none;
  height: 63px;
  color: var(--form-label);
}

.addJob_page-row-field .form-label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--form-label);
  pointer-events: none;
  transition: all 0.3s ease;
}

.addJob_page-row-field .form-input:focus {
  border: 1px solid var(--form-border);
}

.addJob_page-row-field .form-input:focus + .form-label,
.addJob_page-row-field .form-input:not(:placeholder-shown) + .form-label {
  top: -20px;
  left: 30px;
  font-size: 12px;
  color: var(--form-label);
  padding: 3px;
}

.addJob_page-row-field-select .form-group {
  position: relative;
  margin-bottom: 20px;
}

.addJob_page-row-field-select .select-wrapper {
  position: relative;
  width: 100%;
}

.addJob_page-row-field-select .select-wrapper::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--form-label);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.addJob_page-row-field-select select {
  width: 100%;
  padding: 20px 25px;
  border: 1px solid var(--form-border);
  background-color: transparent;
  border-radius: 32px;
  font-size: 14px;
  outline: none;
  height: 63px;
  color: var(--form-label);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addJob_page-row-field-select select:focus {
  outline: none;
  border: 1px solid var(--form-border);
}

.addJob_page-row-field-select label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5px;
  color: var(--form-label);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.addJob_page-row-field-select select:focus + label,
.addJob_page-row-field-select select:valid + label,
.addJob_page-row-field-select select.active + label {
  top: -10px;
  font-size: 12px;
  color: var(--form-label);
}

.addJob_page-row-field-select .select-wrapper option {
  color: #000000;
}

.addJob_page-row-left p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.job_text-editor .wrap {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
}

.job_text-editor .toolbar {
  width: 100%;
  margin: 0 auto 10px;
}

.job_text-editor button {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: none;
  border: none;
  box-sizing: border-box;
  padding: 0;
  font-size: 14px;
  color: var(--editor-text);
  cursor: pointer;
  outline: none;
  border: 1px solid #e2e8f0;
}

.job_text-editor #bold,
.job_text-editor #italic,
.job_text-editor #underline {
  font-size: 18px;
}

.job_text-editor #underline,
.job_text-editor #align-right {
  margin-right: 17px;
}

.job_text-editor #align-left {
  margin-left: 17px;
}

.job_text-editor select {
  height: 30px;
  font-size: 14px;
  color: var(--editor-text);
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  margin: 0;
  outline: none;
  cursor: pointer;
}

.job_text-editor select > option {
  font-size: 14px;
  background: #fafafa;
  color: #000000;
}

.job_text-editor #fonts {
  width: 140px;
}

.job_text-editor .sp-replacer {
  background: #fcfcfc;
  padding: 1px 2px 1px 3px;
  border-radius: 3px;
  border-color: #a6a6a6;
  margin-top: -1px;
}

.job_text-editor .sp-replacer:hover {
  border-color: #a6a6a6;
  color: inherit;
}

.job_text-editor .sp-preview {
  width: 15px;
  height: 15px;
  border: none;
  margin-top: 2px;
  margin-right: 3px;
}

.job_text-editor .sp-preview-inner,
.job_text-editor .sp-alpha-inner,
.job_text-editor .sp-thumb-inner {
  border-radius: 3px;
}

.job_text-editor .editor {
  position: relative;
  width: 100%;
  height: 30vh;
  margin: 0 auto;
  border-radius: 3px;
  box-sizing: border-box;
  overflow: hidden;
  word-break: break-all;
  outline: none;
}

.job_text-editor {
  border: 1px solid #eaeaea;
  border-radius: 32px;
  padding: 10px;
  margin-bottom: 30px;
}

.addJob-btn button {
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
}

.addJob-btn button:hover {
  background-color: #1d7cff;
}

.addJob_page-upload {
  position: relative;
  margin-bottom: 40px;
}

.addJob_page-upload .upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--select-up-border);
  border-radius: 30px;
  background-color: var(--select-up-bg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 200px;
}

.addJob_page-upload .upload-icon {
  font-size: 50px;
  color: var(--text-color);
}

.addJob_page-upload .upload-label {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}

.addJob_page-upload .file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

#addJob-btn-mobile {
  display: none;
}

.recT-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.rect-nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rect-nav-leftA {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}

.rect-nav-leftB .form-select {
  border: none;
  outline: none;
  background-color: #000000;
  padding: 5px;
  color: #ffffff;
  border-radius: 5px;
}

.sortRow-candidate .tab {
  overflow: hidden;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.sortRow-candidate .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding-bottom: 5px;
  transition: 0.3s;
  font-weight: 400;
  font-size: 20px;
  color: var(--slt-text);
}

.sortRow-candidate .tab button.active {
  background-color: transparent;
  color: #006bff;
  font-weight: 500;
  font-size: 20px;
  border-bottom: 3px solid #006bff;
}

.candid__box .tabcontent {
  background-color: var(--card-bg);
  display: none;
  padding: 20px;
  border-top: none;
  border-radius: 21px;
}

.candid_table .tabcontent {
  display: none;
  padding: 20px;
  border-top: none;
}

.candid__box-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px #eaeaea80;
  border-radius: 30px;
  padding: 17px 15px 36px 17px;
  margin-bottom: 40px;
}

.candid__box-row:hover {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
}

.candid__box-top {
  background-color: var(--bg-color2);
  border-radius: 30px;
  padding: 20px;
}

.candid__box-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.candid__box-top-navL {
  background-color: #006bff;
  padding: 10px 14px;
  border-radius: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: #ffffff;
}

.candid__box-top-navR {
  font-size: 30px;
  color: var(--text-color);
}

.candid__box-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.candid__box-middleL-sub {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
}

.candid__box-middleL p {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color);
  margin-top: 5px;
}

.candid__box-middleL-head {
  font-weight: 500;
  font-size: 32px;
  line-height: 30px;
  color: var(--text-color);
}

.candid__box-middleL span {
  color: #00a611;
  font-weight: 500;
  font-size: 16px;
}

.candid__box-middleR {
  font-size: 40px;
  color: #00a611;
}

.candid__box-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.candid__box-footerL img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.candid__box-footerR-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #000000;
}

.candid__box-footerR-head span {
  color: #006bff;
}

.candid__box-footerR-mail {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.candid__box-footerR-dg {
  font-size: 16px;
  color: #000000;
}

.table-container {
  background-color: var(--table-bg);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.table-scroll {
  overflow-x: auto;
  padding: 10px;
}

.table-scroll table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
  min-width: 800px;
}

.table-scroll thead {
  background-color: #fafafa;
  color: #000000;
  border: 1px solid #f2f2f2;
}

.table-scroll th,
td {
  padding: 15px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table-scroll th {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.table-scroll th:first-child {
  border-radius: 20px 0 0 20px;
}

.table-scroll th:last-child {
  border-radius: 0 20px 20px 0;
}

.table-scroll td:first-child {
  border-radius: 20px 0 0 20px;
}

.table-scroll td:last-child {
  border-radius: 0 20px 20px 0;
}

.table-scroll tbody tr {
  transition: all 0.3s ease;
  background-color: var(--tr-bg-color);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-scroll tbody tr:hover {
  background-color: #006bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  border-radius: 20px;
}

.table-scroll .checkbox-cell {
  width: 50px;
  text-align: center;
  border-radius: 20px 0 0 20px;
}

.table-scroll input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #006bff;
}

.table-scroll tbody tr.checked {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%) !important;
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.table-scroll .profile-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-scroll .progress-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.table-scroll .progress-container {
  flex-grow: 1;
  height: 14px;
  background-color: #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.table-scroll .progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
  background-repeat: no-repeat;
  background-size: cover;
}

.table-scroll .progress-percentage {
  font-size: 14px;
  min-width: 40px;
  text-align: right;
  margin-top: 20px;
}

.table-scroll .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.table-logo {
  width: 50px;
  height: 50px;
}

.table-logo2 {
  width: 80px;
  height: 50px;
}

.table-scroll i {
  color: #006bff;
  font-weight: 600;
}

.score-finished {
  background-color: #006838;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}

.score-notstarted {
  background-color: #b1b1b1;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}

.score-started {
  background-color: #004099;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}

.score-expired {
  background-color: #ff0000;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #ffffff;
}

.table-deployed i {
  color: #006838;
}

.table-prog i {
  color: #ff7e07;
}

.table-not i {
  color: #ff0000;
}

.table-not2 i {
  color: #006bff;
}

.doc-up i {
  color: #000000;
}

.managementTeam-row .profile-cont {
  display: flex;
  position: relative;
  height: 60px;
}

.managementTeam-row .prof {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid white;
  transition: all 0.3s ease;
  position: absolute;
  cursor: pointer;
}

.managementTeam-row .prof:nth-child(1) {
  z-index: 5;
  left: 0;
}
.managementTeam-row .prof:nth-child(2) {
  z-index: 4;
  left: 40px;
}
.managementTeam-row .prof:nth-child(3) {
  z-index: 3;
  left: 70px;
}
.managementTeam-row .prof:nth-child(4) {
  z-index: 2;
  left: 110px;
}

.managementTeam-row .prof:hover {
  transform: scale(1.3);
  z-index: 10;
}

.managementTeam-row a {
  text-decoration: none;
}

.mamage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.profile-icnn i {
  font-size: 30px;
  color: #006bff;
}

.recruitHeader .profile-cont {
  display: flex;
  position: relative;
  right: 200px;
  height: 60px;
}

.recruitHeader .prof {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid white;
  transition: all 0.3s ease;
  position: absolute;
  cursor: pointer;
}

.recruitHeader .prof:nth-child(1) {
  z-index: 5;
  left: 0;
}
.recruitHeader .prof:nth-child(2) {
  z-index: 4;
  left: 30px;
}
.recruitHeader .prof:nth-child(3) {
  z-index: 3;
  left: 70px;
}
.recruitHeader .prof:nth-child(4) {
  z-index: 2;
  left: 110px;
}

.recruitHeader .prof:hover {
  transform: scale(1.3);
  z-index: 10;
}

.view-managementTeam {
  background-color: var(--bg-color2);
  border-radius: 20px;
  padding: 66px 84px;
}

.view-managementTeam-row {
  box-shadow: 0px 0px 20px 0px #eeeeee;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  color: #000000;
  margin-bottom: 50px;
}

.view-managementTeam-row:hover {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  color: #ffffff;
}

.view-managementTeam-row {
  position: relative;
}

.view-managementTeam-row-img {
  position: absolute;
  left: 0px;
  top: -30px;
}

.view-managementTeam-row-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ff0000;
  position: absolute;
  left: 40px;
  top: 50px;
}

.view-managementTeam-row-desg {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #006bff;
  margin-bottom: 29px;
}

.view-managementTeam-row:hover .view-managementTeam-row-desg {
  color: #ffffff;
}

.view-managementTeam-row-head {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 6px;
}

.view-managementTeam-row p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 19px;
}

.view-managementTeam-row-view {
  background-color: #006bff;
  padding: 10px 30px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.tm-add {
  position: relative;
}

.tm-add-btn {
  position: absolute;
  right: -25px;
  top: 20px;
}

.tm-add-btn i {
  font-size: 30px;
  color: #006bff;
}

.teamSwitch {
  display: flex;
  gap: 10px;
  margin-bottom: 83px;
}

.teamSwitch .switch-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.teamSwitch .switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.teamSwitch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
  border: 3px solid #000000;
}

.teamSwitch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 2px;
  background-color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.teamSwitch input:checked + .slider {
  background-color: #006bff;
}

.teamSwitch input:focus + .slider {
  box-shadow: 0 0 1px #006bff;
}

.teamSwitch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.teamSwitch span {
  font-weight: 400;
  font-size: 16px;
  margin-top: 2px;
}

.teamSwitch-btn button {
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  padding: 12px 40px;
  border-radius: 22px;
  background-color: #006bff;
}

.add-new-teamRight-nav {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  padding-top: 36px;
  padding-left: 30px;
  padding-bottom: 24px;
  color: #ffffff;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
}

.add-new-teamRight-body {
  background-color: var(--card-bg);
  padding: 20px;
  height: 850px;
  overflow-y: auto;
}

.employmentAdd-rows .progress-container {
  width: 300px;
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  color: white;
  padding: 30px 20px;
  position: relative;
  border-radius: 21px;
  margin-bottom: 30px;
}

.employmentAdd-rows .progress-list {
  list-style: none;
}

.employmentAdd-rows .progress-item {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.employmentAdd-rows .progress-item:hover::before {
  left: 100%;
}

.employmentAdd-rows .progress-item.active {
  color: #ffffff;
  opacity: 50%;
}

.employmentAdd-rows .progress-item.completed {
  color: #ffffff;
}

.employmentAdd-rows .progress-icon {
  margin-right: 15px;
  font-size: 20px;
  width: 24px;
  text-align: center;
  transition: all 0.3s;
}

.employmentAdd-rows .progress-item:hover .progress-icon {
  transform: scale(1.2);
}

.employmentAdd-rows .content-container {
  padding: 40px;
  position: relative;
  background-color: var(--card-bg);
  border-radius: 21px;
}

.employmentAdd-rows .section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.employmentAdd-rows .section.active {
  display: block;
}

.employmentAdd-rows .navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.employmentAdd-rows .btn {
  padding: 12px 40px;
  border: none;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.employmentAdd-rows .btn-back {
  background: transparent;
  color: var(--text-color);
}

.employmentAdd-rows .btn-back:hover {
  transform: translateY(-2px);
}

.employmentAdd-rows .btn-continue {
  background: #006bff;
  color: white;
}

.employmentAdd-rows .btn-continue:hover {
  background: #1d7cff;
  transform: translateY(-2px);
}

.employmentAdd-rows .btn:disabled {
  background: transparent;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.employmentAdd-rows .file-upload-container {
  border: 1.94px solid #d9d9d9;
  border-radius: 29px;
  padding: 25px;
  text-align: center;
  background: #006bff;
  transition: all 0.3s;
}

.employmentAdd-rows .file-upload-container.dragover {
  border-color: #d9d9d9;
  background: #006bff;
}

.employmentAdd-rows .file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.employmentAdd-rows .upload-icon {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
}

.employmentAdd-rows .file-upload-text {
  margin-bottom: 15px;
}

.employmentAdd-rows .file-upload-text h3 {
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
}

.employmentAdd-rows .file-input {
  display: none;
}

.employmentAdd-rows .file-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.employmentAdd-rows .file-preview {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

.employmentAdd-rows .file-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.employmentAdd-rows .file-info {
  display: flex;
  flex-direction: column;
}

.employmentAdd-rows .file-name {
  font-weight: 500;
  color: #374151;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.employmentAdd-rows .file-size {
  font-size: 12px;
  color: #6b7280;
}

.employmentAdd-rows .file-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.employmentAdd-rows .file-action-btn {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.employmentAdd-rows .file-action-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.employmentAdd-rows .upload-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

.employmentAdd-rows .upload-status.success {
  background: #dcfce7;
  color: #166534;
  width: 100%;
}

.employmentAdd-rows .upload-status.error {
  background: #fee2e2;
  color: #991b1b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emplpp {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.emplpp2 {
  font-weight: 400;
  font-size: 14px;
  color: #ff0000;
  margin-bottom: 40px;
}

.employmentAdd-rows .content {
  padding: 30px;
}

.employmentAdd-rows .acknowledgment-item {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.employmentAdd-rows .acknowledgment-item:hover {
  transform: translateY(-2px);
}

.employmentAdd-rows .check-icon {
  font-size: 16px;
  margin-right: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.employmentAdd-rows .acknowledgment-item.chkactive .check-icon {
  color: #006bff;
}

.employmentAdd-rows .acknowledgment-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.learning_row {
  background-color: var(--card-bg);
  padding: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.learning_rows {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.learning_rows-box {
  background-color: var(--bg-color2);
  padding: 20px;
  border-radius: 30px;
}

.learning_rows-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.learning_rows-navL {
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 35px;
}

.learning_rows-box p {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 30px;
}

.learning_rows-box-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: #00a611;
}

.learning_rows-box a {
  text-decoration: none;
}
.add_skills-left {
  padding-right: 20px;
}

.add_skills-left a {
  text-decoration: none;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #006bff;
}

.t-action {
  display: flex;
  gap: 20px;
}

.t-actionL {
  cursor: pointer;
}

.t-actionL i {
  font-size: 20px;
  color: #000000;
}

.trActive {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  background-color: #00a61166;
  padding: 10px;
  color: #00a611;
  text-align: center;
}

.trClosed {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  background-color: #ff000066;
  padding: 10px;
  color: #ff0000;
  text-align: center;
}

.tra_cop {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  background-color: #00a61166;
  padding: 10px;
  color: #00a611;
  text-align: center;
}

.tra_inp {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  background-color: #ff7e0766;
  padding: 10px;
  color: #ff7e07;
  text-align: center;
}

.tra_pen {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  background-color: #ff000066;
  padding: 10px;
  color: #ff0000;
  text-align: center;
}

.view-payslip a {
  text-decoration: none;
  color: #000000;
}

.view-payslip a i {
  color: #000000;
}

.paySlip-nav {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  border-radius: 25px;
  padding: 15px 24px;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 50px;
}

.payslipNav-left-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.payslipNav-left-navR-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
}

.payslipNav-left-info {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.payslipNav-left-infoL {
  font-weight: 600;
  font-size: 18px;
}

.payslipNav-left-infoR {
  font-weight: 400;
  font-size: 18px;
}

.payslipNav-left-navR-sub {
  font-weight: 400;
  font-size: 16px;
}

.payslipNav-left-details td {
  border-top: none;
  border-bottom: none;
}

.payslipNav-right {
  background: linear-gradient(180deg, #006bff 0%, #004099 100%);
  color: #ffffff;
  border-radius: 25.95px;
  padding: 30px;
}

.payslipNav-right-sub {
  font-weight: 500;
  font-style: Medium;
  font-size: 27.3px;
  margin-bottom: 30px;
}

.payslipNav-right-nav {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.payslipNav-right-navL {
  font-weight: 600;
  font-size: 60px;
}

.payslipNav {
  margin-bottom: 50px;
}

.earningsTables td {
  border-top: none;
  border-bottom: none;
}

.earningsTables {
  margin-bottom: 70px;
}

.payslyp-payment {
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}

.payslyp-payment-head {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #006bff;
  margin-bottom: 50px;
}

.payslyp-payment-row p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
}

.payslyp-payment-input {
  border: 1px solid #eaeaea;
  padding: 15px;
  border-radius: 32px;
  margin-bottom: 40px;
}

.payslyp-payment-input .form-select {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: #00000033;
  font-weight: 400;
  font-size: 16px;
}

.payslyp-payment-input input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
}

.payslyp-payment-input input::placeholder {
  color: #00000033;
  font-weight: 400;
  font-size: 16px;
}

.payslp-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payslp-btn-left a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.payslp-btn-left a:hover {
  color: #006bff;
}

.payslp-btn-right button {
  border: none;
  outline: none;
  background-color: #006bff;
  padding: 12px 40px;
  border-radius: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.adminUploadd .upload-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.adminUploadd .upload-label {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.adminUploadd .upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
}

.adminUploadd #file-input {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .payslp-btn-right button {
    border: none;
    outline: none;
    background-color: #006bff;
    padding: 12px 20px;
    border-radius: 22px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
  }
  .payslipNav-right-navR {
    display: none;
  }
  .paySlip-nav {
    background: linear-gradient(180deg, #006bff 0%, #004099 100%);
    border-radius: 25px;
    padding: 15px 24px;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 50px;
  }
  .add_skills-left {
    padding-right: 0px;
  }
  .learning_rows-navL {
    font-weight: 500;
    font-style: Medium;
    font-size: 25px;
    line-height: 35px;
  }
  .learning_row {
    background-color: var(--card-bg);
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .employmentAdd-rows .content {
    padding: 20px;
  }
  .employmentAdd-rows .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .employmentAdd-rows .content-container {
    padding: 20px;
    position: relative;
    background-color: var(--card-bg);
    border-radius: 21px;
  }
  .content-container {
    padding: 20px;
    background-color: var(--card-bg);
    border: 1px solid #f2f2f2;
    border-radius: 21px;
  }
  .add-new-teamRight {
    margin-top: 40px;
  }

  .add-new-teamRight-body {
    background-color: var(--card-bg);
    padding: 10px;
  }
  .candid__box-middleL-head {
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    color: var(--text-color);
  }
  .theme-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .tm-add-btn i {
    font-size: 14px;
    color: #006bff;
  }

  .tm-add-btn {
    position: absolute;
    right: -15px;
    top: 20px;
  }
  .view-managementTeam {
    background-color: var(--bg-color2);
    border-radius: 20px;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
  }
  .recruitHeader .profile-cont {
    display: flex;
    position: relative;
    right: 0px;
    height: 60px;
  }
  .candid__box-middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .candid__box-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px #eaeaea80;
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 40px;
  }
  .candid__box .tabcontent {
    background-color: var(--card-bg);
    display: none;
    padding: 10px;
    border-top: none;
    border-radius: 21px;
  }
  .postedContent-Nav .nav-item {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    user-select: none;
  }
  .addJob_page-row-field-select select {
    width: 100%;
    padding: 20px 30px;
    border: 1px solid var(--form-border);
    background-color: transparent;
    border-radius: 32px;
    font-size: 10px;
    outline: none;
    height: 63px;
    color: var(--form-label);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #addJob-btn-desktop {
    display: none;
  }

  #addJob-btn-mobile {
    display: block;
  }
  .addJob_page-row-left {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 20px;
  }
  .addJob_page-row-right {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 20px;
  }
  .recruit_box-row-priceL {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);
  }
  .recruit_box {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 21px;
  }
  .recruite_navigation-active {
    background: linear-gradient(180deg, #006bff 0%, #004099 100%);
    width: 270px;
    border-radius: 21px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
  }
  .recruite_navigation-regular {
    background-color: #fafafa;
    width: 270px;
    border-radius: 21px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
  }
  .recruite_navigation-lists {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .recruitment_Dashboard-top-row-nav2R {
    font-weight: 600;
    font-size: 40px;
    color: #ffffff;
    opacity: 10%;
  }
  .recruitment_Dashboard-top-row-nav2R2 {
    font-weight: 600;
    font-size: 40px;
    color: #d9d9d9;
    opacity: 50%;
  }
  .recruitment_Dashboard-top-row-nav2L {
    font-weight: 600;
    font-size: 40px;
    color: #ffffff;
  }

  .recruitment_Dashboard-top-row-nav2L2 {
    font-weight: 600;
    font-size: 40px;
    color: var(--text-color);
  }

  .recruitment_post_activities-left {
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 21px;
  }
  .dash-circle-chats {
    padding-left: 0px;
  }
  .dashboardPage-rowRight-bar {
    position: relative;
    bottom: -50px;
  }
  .dashboardPage-rowRight-circle1 {
    position: relative;
    left: 0px;
  }

  .dashboardPage-rowRight-circle3 {
    position: relative;
    left: 0px;
    top: 0px;
  }

  .dashboardPage-rowRight-circle2 {
    position: relative;
    right: 0px;
    top: 0px;
  }
  .dashboardPage-rowRight-line {
    display: none;
  }
  .my_profile_section-right .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    box-shadow: 0px 0px 20px 0px #0000001a;
    padding: 20px;
    border-radius: 20px;
  }
  .my_profile_section-left {
    position: relative;
  }
  .job_offers-box-post-date-right a button {
    border: none;
    outline: none;
    background-color: #006bff;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    padding: 8px 30px;
    border-radius: 33px;
    color: #ffffff;
  }

  .job_offers-box-post-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f3f3f3;
    padding: 15;
    border-radius: 45px;
  }
  .job_offers-box {
    background-color: #e6f1ff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 30px;
  }
  .search-bar {
    border: 1px solid var(--nav-border);
    border-radius: 33px;
    display: flex;
    align-items: center;
    height: 40px;
    background-color: var(--input-search-bg);
  }

  .search-bar input {
    outline: none;
    border: none;
    background-color: transparent;
    padding: 10px;
    width: auto;
  }

  .search-bar input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
  }

  .search-bar i {
    background-color: var(--fa-bg-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--icon-color);
  }

  .nav-right .notification {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--nav-border);
    border-radius: 33px;
    height: 40px;
    padding-right: 10px;
    background-color: var(--input-search-bg);
  }

  .notification i {
    background-color: var(--fa-bg-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--icon-color);
  }

  .nav-right .notification-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006bff;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
  }

  .nav-right .notification-dts {
    font-weight: 400;
    font-size: 14px;
  }

  .nav-right {
    display: flex;
    gap: 20px;
  }

  .nav-right .profile-img img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }

  .side_nav-links-menu {
    color: white;
    font-size: 8px;
    transition: all 0.3s ease;
    margin-top: 0px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    text-align: center;
    line-height: 10px;
  }

  .job-application .carousel-section {
    width: 35%;
  }

  .job-application .content-section {
    margin-left: 35%;
  }

  .sidebar {
    width: 60px;
    padding: 10px;
  }

  .main-content {
    margin-left: 60px;
  }

  .top-nav {
    padding: 15px 20px;
  }

  .content {
    padding: 20px;
  }

  .application-details-img-mobile {
    display: block;
  }

  .application-details-img-desktop {
    display: none;
  }

  .get-started {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    min-height: 100vh;
    padding-top: 128px;
  }

  .job-application {
    flex-direction: column;
  }

  .job-application .carousel-section {
    position: relative;
    width: 100%;
    height: 90vh;
  }

  .job-application .content-section {
    margin-left: 0;
    max-height: none;
  }

  .job-application .carousel-logo {
    top: 15px;
    left: 15px;
  }
}
