:root {
  /* Brand palette (from provided image) */
  --brand-dark: #026E81;   /* deep teal */
  --brand-teal: #00ABBD;   /* teal */
  --brand-blue: #0099DD;   /* blue */
  --brand-accent: #FF9933; /* orange */
  --brand-light: #A1C7E0;  /* light blue */

  /* Project tokens */
  --primary: var(--brand-blue);
  --secondary: var(--brand-teal);
  --accent: var(--brand-accent);
  --muted: var(--brand-light);
  --dark: #222;
  --light: #fff;
  --gray: #f7f7f7;
  --border: #e0e0e0;
  --radius: 16px;
}

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

body {
  font-family: var(--font);
  /* background-color:unset !important; */
  color: var(--dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
}

header {
  background: var(--light);
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.2rem;
  max-width: 700px;
  width: 100%;
}

button.btn-dark.job-click {
  max-width: 203px;
  margin-left: 0;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1vw, 17px);
  transition: color 0.2s;
}
a.active {
  color: var(--primary);
}

.nav-sec {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

/* ----------navbar-css----------- */
#menu-icon, .back-arrow {
  background: #151a1f;
  padding: 6px;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-none {
  display: none;
}

.nav-sec {
  display: flex;
  gap: clamp(10px, 2vw, 30px);
  align-items: center;
}

.nav-group a {
  white-space: nowrap;
}

button.sign-btn {
  max-width: 135px !important;
  margin-left: 0;
}

button#menu-icon {
  display: none;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 34px;
  width: 100%;
}

.close-menu {
  position: absolute;
  left: 80%;
  right: 0;
}

.close-menu img {
  background-color: #000;
  padding: 10px;
}

.close-menu {
  display: none;
}


.btn-outline, .btn-dark, .btn-yellow, .btn-white, .btn-pink {
  border: none;
  outline: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  margin-left: 0.5rem;
  font-family: var(--font);
  font-size: clamp(13px, 1vw, 16px);
  transition: background 0.2s, color 0.2s;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  width: 100%;
  max-width: 168px;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--light);
}

.btn-dark {
  background: var(--dark);
  color: var(--light);
  font-size: clamp(13px, 1vw, 17px);
  border-radius: 15px;
  padding: clamp(12px, 1vw, 15px)  clamp(8px, 1vw, 15px);
  width: 100%;
}

button.purche-btn {
  max-width: 130px;
}

.btn-dark:hover {
  background: var(--primary);
  color: var(--light);
}

button.post-btn {
  max-width: 151px;
  width: 100%;
}

button.apply-btn {
  max-width: 130px;
}

.search-btn-group {
  display: inline-flex;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
  border-radius: 17px;
  padding: 6px 5px;
  align-items: center;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 12px 24px;
  background: #fff;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.search-btn i {
  font-size: 1.2em;
}

.search-btn.active {
  background: var(--accent);
  color: #222;
  border-radius: 15px;
}

.search-btn:not(.active):hover {
  background: #f7f7f7;
  color: var(--primary);
}

.btn-pink {
  background: var(--primary);
  color: var(--light);
}

.btn-pink:hover {
  background: #0088c7;
}

button.search-btn.active.job-search {
  box-shadow: unset;
  align-items: flex-start;
}

.hero {
  background: linear-gradient(120deg, rgba(161,199,224,0.25) 0%, rgba(0,153,221,0.15) 100%);
  padding: 3rem 0 2rem 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 350px;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(24px, 3.3vw, 65px);
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--primary);
}

.hero-text p {
  margin-bottom: 1.5rem;
  color: #444;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.search-form input, .search-form select {
  padding: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 1rem;
}

.hero-image {
  flex: 1 1 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.digital-rewards-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.jobs-deals {
  padding: 2.5rem 0 1.5rem 0;
}

.jobs-deals h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 800;
}

.cards-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  border-radius: var(--radius);
  flex: 1 1 220px;
  min-width: 290px;
  max-width: 393px;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-logo img {
  width: 100%;
  height: 100%;
}

.card-title {
  font-weight: 800;
  font-size: clamp(16px, 1.1vw, 19px);
  color: #000000;
}

.card-desc {
  color: #5E5E5E;
  font-size: 15px;
  white-space: nowrap;
  max-width: 354px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-bonus {
  font-weight: 700;
  color: #000000;
  font-size: clamp(13px, 1vw, 17px);
  display: flex;
  gap: 10px;
  align-items: self-start;
}

.card-bonus span {
  color: #5E5E5E;
  font-size: clamp(12px, 1vw, 15px);
  margin-left: 0.3rem;
  font-weight: 500;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(293px, 1fr));
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0;
  flex-wrap: wrap;
}

.reward-cards img {
  width: 100%;
}

.card-2 {
  background: #fbefff;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card h4 {
  font-size: clamp(18px, 1.2vw, 25px);
  font-weight: 700;
  color: #000000;
  text-align: center;
  padding: 20px 10px;
}

h4.text-left {
  text-align: left;
}

.list-item {
  background: #fff;
  border-radius: 12px;
  height: 48px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
  width: 90%;
  margin-left: 5%;
}

.list-item:last-child {
  margin-bottom: 0;
}

.profile-card {
  background: #fff;
  border-radius: 12px;
  width: 160px;
  height: 100px;
  margin: 10px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
  display: inline-block;
}

.reward-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.reduce-cost-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fffbe6;
  padding: clamp(15px, 2.4vw, 40px);
  flex-wrap: wrap-reverse;
  border-radius: 55px;
  justify-content: space-evenly;
}

.reduce-img {
  flex: 1 1 300px;
  max-width: 675px;
}

section.customers-sell {
  padding-block: 40px;
}

.reduce-img img {
  width: 100%;
}

.reduce-text {
  flex: 1 1 300px;
  max-width: 775px;
}

.reduce-text h2 {
  font-size: clamp(20px, 2.3vw, 45px);
  margin-bottom: 1rem;
  font-weight: 600;
}

.reduce-text ul {
  margin-bottom: 1rem;


}

.reduce-text li {
  margin-bottom: 0.5rem;
  list-style: none;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.customers-sell-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(161,199,224,0.25) 0%, rgba(0,153,221,0.15) 100%);
  padding: clamp(15px, 2.4vw, 40px);
  border-radius: 55px;
}

.customers-sell-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.customers-text {
  flex: 1 1 300px;
}

.customers-text h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.customers-text ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.customers-text li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.customers-img img {
  width: 220px;
  border-radius: var(--radius);
}

.testimonials {

  padding: 2.5rem 0;
  text-align: center;
}

h4.header-work {
  margin-bottom: 1.2rem;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 800;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f8ff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.95rem;
  color: #888;
}

.newsletter {
  background-color: #171617;
  color: var(--light);
  padding: 2rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 30px);
  flex-wrap: wrap;
  border-bottom: 1.2px solid #FFFFFF1A;
  padding-bottom: 75px;
}

.newsletter-content h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(18px, 2.2vw, 38px);
  font-weight: 700;
}

.newsletter-content form {
  display: flex;
  gap: 0.5rem;
  max-width: 725px;
  width: 100%;
  margin-left: auto;
  padding-inline: 10px;
}

.newsletter-content input[type="email"] {
  padding: 11px clamp(7px, 1vw, 16px);
  border-radius: var(--radius);
  border: none;
  font-size: clamp(12px, 1vw, 17px);
  width: 100%;
  font-weight: 500;
  outline: none;
}

.newsletter-content button {
  border-radius: var(--radius);
  border: none;
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(30px, 5vw, 102px);
}

.footer-logo {
  font-weight: 400;
  font-size: clamp(13px, 1vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-logo p {
  max-width: 445px;
}

.media-content {
  max-width: 260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
  max-width: 200px;
  width: 100%;
  align-items: end;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: clamp(13px, 1vw, 19px);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 0.7rem;

}

.footer-social a:hover {
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  height: 45px;
}

.footer-social a {
  border-radius: 50%;
}

.footer-copyright p {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
}

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

.container.hero-content {
  flex-wrap: wrap-reverse;
}

.search-bar-container {
  width: 100%;
  display: flex;
  justify-content: start;
  margin: 32px 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  gap: 1.2rem;
  min-width: 350px;
  max-width: 750px;
  width: 100%;
}

.search-input-group {
  display: flex;
  align-items: center;
  flex: 2;
  gap: 0.7rem;
}

.search-input-group i {
  color: #888;
  font-size: 1.2rem;
}

.search-input-group input {
  border: none;
  outline: none;
  background: transparent;
  font-size: clamp(13px, 1.1vw, 17px);
  color: #555;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
}

.search-divider {
  width: 1px;
  height: 2.2rem;
  background: #e0e0e0;
  margin: 0 0.5rem;
}

.search-category-group {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.search-category-group select {
  border: none;
  background: transparent;
  font-size: clamp(13px, 1.1vw, 17px);
  color: #888;
  font-family: 'Montserrat', Arial, sans-serif;
  padding-right: 1.2rem;
  appearance: none;
  cursor: pointer;
  width: 90%;
}
.category-down {
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none;
}
.job-search {
  box-shadow: unset;
  margin-left: 0;
}

.search-btn {
  background: #ff4fd8;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: clamp(13px, 1vw, 17px);

  font-weight: 600;
  padding: 11px clamp(10px, 2vw, 35px);
  margin-left: 1rem;
  box-shadow: 0 2px 12px #ff4fd87a;
  cursor: pointer;
  transition: background 0.2s;
}

.search-deal {
  background: unset;
  box-shadow: unset;
  color: #575257;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 600;
}

.search-btn:hover {
  background: #e03fc1;
}

.testimonial-slider {
  position: relative;
  max-width: 1100px;
  margin: clamp(15px, 3vw, 60px) auto 0 auto;
  text-align: center;
  background: transparent;
}

.testimonial-slide {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonial-slide.active {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.quote {
  font-size: 80px;
  color: #fbefff;
  font-family: serif;
  font-weight: bold;
  user-select: none;
}

.quote-left {
  margin-right: 20px;
}

.quote-right {
  margin-left: 20px;
}

.testimonial-content {
  flex: 1;
  text-align: center;
  position: relative;
}

.stars {
  color: #ffc107;
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: clamp(13px, 1vw, 20px);
  color: #222;
  margin-bottom: 32px;

  line-height: 1.5;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  padding-top: 45px;
}

.user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-name {
  font-weight: bold;
  color: #222;
  text-align: left;
}

.user-role {
  color: #888;
  font-size: 15px;
  font-weight: 500;
  color: #575257;
}

.underline {
  width: 80px;
  height: 3px;
  background: #d500f9;
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}

.slider-btn:hover {
  background: #fbefff;
}

.slider-btn.prev {
  left: -60px;
}

.slider-btn.next {
  right: -60px;
}

.recoment-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  padding-inline: 10px;
}

.search-bar.subscribe {
  justify-content: space-between;
  border-radius: 19px;
}

.newsletter-content p {
  font-size: clamp(12px, 1vw, 19px);
  font-weight: 500;
  color: #FFFFFF;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.media-content p {
  font-size: clamp(13px, 1vw, 20px);
  font-weight: 500;
  color: #FFFFFF;
}
.btn-gp {
  display: flex;
  align-items: center;
  gap: clamp(10px,1vw,15px);
  justify-content: end;
  width: 100%;
  max-width: 400px;
}
.testimonial-content h4 {
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 800;
  color: #000000;
}

button.slick-next.slick-arrow {
  opacity: 2.25 !important;
  background: url(../assets/images/Right_Arrow.png) no-repeat;
  height: 20px;
  width: 20px;
}

section.terminals {
  position: relative;
  padding: clamp(20px, 5vw, 80px) 10px clamp(20px, 6vw, 100px);
  max-width: 1200px;
  margin: auto;
}

.card-slider {
  max-width: 70%;
  position: unset;
  margin: auto;
}

.slick-slider.slick-initialized {
  position: unset;
}

.slick-prev {
  left: -25px;
  background: green;
  padding: 20px;
}

.slick-prev:before {
  content: "" !important;
}

.slick-next:before {
  content: "" !important;
}

button.slick-prev.slick-arrow {
  opacity: 2.25 !important;
  background: url(../assets/images/left-arrow.png) no-repeat;
  height: 20px;
  width: 20px;
  content: "" !important;
}

.bell-icon {
  height: 108px;
  width: 108px;
}

.bell-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* ---------------jobs page css start--------- */
.jon-bg {
  background: url(../assets/images/job-banner.png) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 407px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  gap: 12px;
}

.job-header h3 {
  font-size: clamp(20px, 2.5vw, 45px);
  font-weight: 800;
  line-height: 100%;
  color: #FFFFFF;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;

}

ul.breadcrumb-list li+li:before {
  padding: 8px;
  color: #F4F4F4;
  content: "|\00a0";
}

ul.breadcrumb-list li a {
  font-size: 18px;
  color: #F4F4F4;
  font-weight: 500;
  text-decoration: none;
}

ul.breadcrumb-list li {
  display: inline;
}

.explore-content {
  padding-bottom: 100px;
}

/*------------- login page css------------ */
/* Reset and Base Styles */
.login-bg {
  background: linear-gradient(180deg, #FFFCEE 0%, #F3DAF2 100%);
  min-height: 100vh;
  padding: clamp(10px, 1vw, 20px);
}

.login-form {
  width: 100%;
  max-width: 1334px;
  margin: auto;
}

/* Role Selector */
.role-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.role-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f5f5f5;
  color: #666;
}

.role-btn.active {
  background: #ffffff;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* Main Content Layout */
.login-main-content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dashboard-slider .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-inline: 5px;
}


.hero-title {
  font-size: clamp(24px, 3.6vw, 68px);
  font-weight: 700;
  line-height: 1.2;
  color: #333;

}

.hero-title .highlight {
  color: #ff6b9d;
}

.hero-description {
  font-size: clamp(14px, 1vw, 20px);
  color: #201D20;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
}

.service-link {
  font-size: 14px;
  max-width: unset;
  gap: 20px;
  width: 100%;
  flex-direction: row;
  padding-top: clamp(2px, 5vw, 94px);
}

.service-link a.footer-link {
  font-size: 16px;
  font-weight: 500;
  color: #FF47F9;
}

.footer-link:hover {
  text-decoration: underline;
}

.separator {
  color: #ff6b9d;
}

/* Right Section */
.right-section {
  display: flex;
  justify-content: center;
  max-width: 599px;
  flex: 1 1 400px;
  width: 100%;
}

.signin-card {
  background: white;
  padding: 30px clamp(10px, 2.2vw, 40px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;

}

.signin-title {
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 9px;

}

.signin-subtitle {
  font-size: clamp(13px, 1vw, 15px);
  color: #000000;
  font-weight: 400;
  margin-bottom: 36px;
}

/* Social Login Buttons */
.social-login {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;

}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px clamp(10px, 1vw, 20px);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  color: #201D20;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.social-btn:hover {
  background: #f8f9fa;
  border-color: #ccc;
}

.social-btn i {
  font-size: 16px;
}

.google-btn i {
  color: #4285f4;
}

.facebook-btn i {
  color: #1877f2;
}

/* Separator */
.separator-line {
  position: relative;
  text-align: center;
  margin-block: 26px 16px;
  display: table;
  white-space: nowrap;
  text-align: center;
}

.separator-line::before {
  background: linear-gradient(to bottom, #ECEEED, #ECEEED) no-repeat left center / 95% 2px;
  content: "";
  display: table-cell;
  width: 50%;
}

.separator-line::after {
  background: linear-gradient(to bottom, #ECEEED, #ECEEED) no-repeat right center / 95% 2px;
  content: "";
  display: table-cell;
  width: 50%;
}

.separator-text {
  background: white;
  padding: 0 15px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* Form Inputs */
.input-group {
  margin-bottom: 20px;
}

.signin-card .input-label {
  display: block;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: #575257;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.signin-card .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #ADA5AD;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
}

.password-toggle:hover {
  color: #333;
}

/* Forgot Password */
.forgot-password {
  text-align: left;
  margin-bottom: 30px;
}

.forgot-link {
  color: #FF47F9;
  text-decoration: none;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  text-align: left;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Sign In Button */
.signin-btn {
  width: 100%;
  padding: 14px 20px;
  background: #FF47F9;
  color: #FFFFFF;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 5px 9px 0px #FF47F936;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.signin-btn:hover {
  background: #FFFFFF;
  color: #FF47F9;
  transform: translateY(-1px);
  box-shadow: 0px 5px 9px 0px #FF47F936;
}

/* Sign Up Link */
.signup-link {
  text-align: center;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: #4F5043;
}
.signup-text {
  color: #FF47F9;
  text-decoration: underline;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: clamp(13px, 1vw, 15px);
  text-decoration: underline;
}
.signup-text:hover {
  text-decoration: underline;
}

/* Tab Container */
.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(25px, 4vw, 53px);
}

.tab-selector {
  position: relative;
  background: #EFE6D3;
  border-radius: 12px;
  padding: 4px;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tab Buttons */
.tab-btn {
  position: relative;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #666666;
  min-width: 140px;
  z-index: 1;
}

.tab-btn.active {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.tab-btn:hover:not(.active) {
  color: #333333;
}

.tab-btn:focus {
  outline: none;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

/* .tab-panel.active {
    display: block;
}  */

/* Content Card */
.content-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #F0F0F0;
}

.content-card h2 {
  color: #333333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.content-card p {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.content-card ul {
  list-style: none;
  padding: 0;
}

.hero-title span {
  font-size: clamp(24px, 3.6vw, 68px);
  font-weight: 800;
  color: #FF47F9;
}

.hero-title h2 {
  font-size: 68px;
  font-weight: 600;
  color: #000000;
}

.content-card li {
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.recommend-form {
  max-width: 583px;
  width: 100%;
}

.content-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.tab-selector:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tab-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Additional Styling for Better UX */
.tab-selector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F0E6 0%, #F8F0E6 100%);
  z-index: -1;
}

/* Focus States for Accessibility */
.tab-btn:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

/* Loading State */
.tab-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.tab-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* --verify - Sign In Form css -- */
.container-verify {
  max-width: 599px;
  margin: auto;
}

.email-form {
  display: flex;
}

.verify-section {
  border-radius: 34px;
  text-align: center;
  padding-block: clamp(20px, 2.1vw, 40px);
}

.email-content {
  max-width: 413px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-content button {
  max-width: 244px;
  margin: auto;
}

.verify-section .signup-link {
  padding-top: 16px;
}

.verify-section p.signin-subtitle {
  margin-bottom: clamp(14px, 1.2vw, 24px);
}

/* Reset and Base Styles */
.dropdown-wrapper {
  width: 100%;
}

.personal-form {
  border-radius: 34px;
  padding-block: clamp(15px, 2.2vw, 40px) 40px;
}

/* Dropdown Label */
.dropdown-label {
  display: block;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  color: #666666;
  margin-bottom: 8px;
}

/* Dropdown Container */
.dropdown-container {
  position: relative;
  width: 100%;
}

/* Dropdown Select */
.dropdown-select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  background: #ffffff;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
}

.dropdown-select:focus {
  outline: none;
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.dropdown-select:hover {
  border-color: #cccccc;
}
.dropdown-select option[value=""][disabled] {
  color: #999999;
}

/* Dropdown Icon */
.dropdown-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666666;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-select:focus+.dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* Custom Dropdown Styles */
.custom-dropdown-wrapper {
  width: 100%;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-trigger {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  background: #ffffff;
  font-size: 14px;
  color: #999999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.custom-dropdown-trigger:hover {
  border-color: #cccccc;
}

.custom-dropdown-trigger.active {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.custom-dropdown-trigger.active i {
  transform: rotate(180deg);
}

.custom-dropdown-trigger i {
  color: #666666;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Custom Dropdown Menu */
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.custom-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Custom Dropdown Items */
.custom-dropdown-item {
  padding: 12px 20px;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

.custom-dropdown-item.selected {
  background-color: #e3f2fd;
  color: #007AFF;
  font-weight: 500;
}

.custom-dropdown-item:first-child {
  border-radius: 12px 12px 0 0;
}

.custom-dropdown-item:last-child {
  border-radius: 0 0 12px 12px;
}

/* Selected text styling */
.selected-text {
  color: #333333;
}

.selected-text.placeholder {
  color: #999999;
}

/* Focus states for accessibility */
.dropdown-select:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

.custom-dropdown-trigger:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

/* Hover effects */
.dropdown-container:hover .dropdown-icon {
  color: #333333;
}

.personal-form button.signin-btn {
  margin-block: 24px 0;
}

/* Animation for dropdown opening */
@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-dropdown-menu.active {
  animation: dropdownSlideIn 0.3s ease;
}

/* Scrollbar styling for dropdown menu */
.custom-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Profile Picture Wrapper */
.profile-picture-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 0px;
}

.personal-detail p.signin-subtitle {
  margin-bottom: 10px;
}

/* Avatar Section */
.avatar-section {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-icon {
  font-size: 48px;
  color: #666666;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Upload Section */
.upload-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upload-label {
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
  color: #000000;
}

.upload-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #312C31;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}

.upload-btn:hover {
  background: #555555;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.upload-btn:active {
  transform: translateY(0);
}

/* Drag and Drop Styles */
.drag-drop-zone {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drag-drop-zone:hover {
  background: #d0d0d0;
}

.drag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.drag-overlay i {
  font-size: 24px;
  margin-bottom: 8px;
}

.drag-overlay span {
  font-size: 12px;
  font-weight: 500;
}

.drag-drop-zone.dragover .drag-overlay {
  opacity: 1;
  visibility: visible;
}

.drag-drop-zone.dragover {
  background: #d0d0d0;
  transform: scale(1.05);
}

.personal-detail {
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}


/* Animation for image upload */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.avatar-image {
  animation: fadeIn 0.3s ease;
}

/* Progress indicator */
.upload-progress {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.upload-progress-bar {
  height: 100%;
  background: #4CAF50;
  width: 0%;
  transition: width 0.3s ease;
}

/* Remove button (appears after upload) */
.remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #f44336;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.avatar-placeholder.has-image .remove-btn {
  opacity: 1;
  visibility: visible;
}

.remove-btn:hover {
  background: #d32f2f;
  transform: scale(1.1);
}

/* File size validation */
.file-info {
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}

.file-info.error {
  color: #f44336;
}

.file-info.success {
  color: #4CAF50;
}


/* Reset and Base Styles */

/* Profile Card */
.profile-card {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(10px, 2vw, 40px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.header-content {
  flex: 1;
}

.skip-link {
  color: #FF47F9;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.skip-link:hover {
  color: #ff5a8a;
}

/* Resume Upload Section */
.resume-upload-section {
  margin-bottom: 30px;
}

.upload-zone {
  border: 2px dashed #e0d5ff;
  border-radius: 12px;
  padding: 20px 10px;
  background-color: #F8EEF7;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: #ff6b9d;
  background: #fff0f5;
}

.upload-zone.dragover {
  border-color: #ff6b9d;
  background: #fff0f5;
  transform: scale(1.02);
}


.upload-content {
  flex: 1;
}

.upload-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.upload-info {
  font-size: 14px;
  color: #666666;
  font-weight: 400;
}

/* Uploaded File Display */
.uploaded-file {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  gap: 12px;
}

.uploaded-file i {
  color: #dc3545;
  font-size: 18px;
}

.file-name {
  flex: 1;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.remove-file {
  background: none;
  border: none;
  color: #666666;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.remove-file:hover {
  background: #e9ecef;
  color: #333333;
}

/* Form Sections */
.form-section {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #575257;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-input::placeholder {
  color: #999999;
}

/* Skills Input Container */
.skills-input-container {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 12px;
  background: #ffffff;
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.skills-input-container:focus-within {
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.individual {
  text-align: left;
}

.skill-tag {
  background-color: #F8EEF7;
  color: #2A252A;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #FFD5FE;
}

.remove-skill {
  background: none;
  border: none;
  color: #F535EF;
  cursor: pointer;
  padding: 2px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.3s ease;
}

.remove-skill:hover {
  background: #ff6b9d;
  color: white;
}

.skills-input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 120px;
  font-size: 14px;
  color: #333333;
  background: transparent;
}

.skills-input::placeholder {
  color: #999999;
}

/* Navigation Section */
.navigation-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(15px, 2.3vw, 40px);
  padding-top: 20px;
}

.back-link {
  color: #FF47F9;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #FF47F9;
}

.next-btn {
  background: #FF47F9;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 248px;
  width: 100%;
}

.resume-upload-section {
  margin-bottom: 30px;
  box-shadow: 0px 28px 45px 0px #0000001A;
  padding: clamp(10px, 1vw, 20px);
  border: 1.2px dashed #DFCDDD;
  border-radius: 10px;
}

.next-btn:hover {
  background: #FF47F9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.next-btn:active {
  transform: translateY(0);
}

.next-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading States */
.upload-zone.loading {
  pointer-events: none;
  opacity: 0.7;
}

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

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

/* Success States */
.upload-zone.success {
  border-color: #4CAF50;
  background: #f1f8e9;
}

.skill-tag.success {
  background: #e8f5e8;
  color: #4CAF50;
}

/* Error States */
.upload-zone.error {
  border-color: #f44336;
  background: #ffebee;
}

.skill-tag.error {
  background: #ffebee;
  color: #f44336;
}

/* Focus States for Accessibility */
.upload-zone:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

.next-btn:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

/* Animation for new skill tags */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.skill-tag {
  animation: slideIn 0.3s ease;
}

/* File upload progress */
.upload-progress {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 12px;
}

.upload-progress-bar {
  height: 100%;
  background: #ff6b9d;
  width: 0%;
  transition: width 0.3s ease;
}

.personal-detail .profile-card {
  background: unset !important;
  box-shadow: unset !important;
}

/* Reset and Base Styles */
.header-section {
  margin-bottom: 30px;
  text-align: center;
}

.card-description {
  font-size: 16px;
  color: #201D20;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0d5ff;
  border-radius: 12px;
  font-size: 14px !important;
  color: #000000 !important;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-input::placeholder {
  color: #999999;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  color: #333333;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-select:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 12px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.form-select:focus+.select-icon {
  transform: translateY(-50%) rotate(180deg);
}

.phone-input-wrapper {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.country-code-selector {
  display: flex;
  align-items: center;
  width: 100%;
}

input#phone-number {
  border: unset;
}

.flag-icon {
  width: 20px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.country-code-select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  padding: 12px 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 60px;
}

.country-code-select:focus {
  outline: none;
}

/* Navigation Section */
.contact-navigation-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.back-btn {
  background: none;
  border: none;
  color: #FF47F9;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.back-btn:hover {
  color: #FF47F9;
}

button.signin-btn.reset-btn {
  width: 100%;
  max-width: unset;
}

.contact-navigation-section .submit-btn {
  background: #FF47F9;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 248px;
  width: 100%;
}

.contact-navigation-section .submit-btn:hover {
  background: #FF47F9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.contact-navigation-section .submit-btn:active {
  transform: translateY(0);
}

.contact-navigation-section .submit-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading States */
.contact-navigation-section .submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-navigation-section .submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Success States */
.form-input.success {
  border-color: #4CAF50;
}

.form-select.success {
  border-color: #4CAF50;
}

/* Error States */
.form-input.error {
  border-color: #f44336;
}

.form-select.error {
  border-color: #f44336;
}

.error-message {
  color: #f44336;
  font-size: 12px;
  margin-top: 4px;
}

.contact-navigation-section .submit-btn:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

/* Hover Effects */
.form-input:hover {
  border-color: #cccccc;
}

.form-select:hover {
  border-color: #cccccc;
}

/* Animation for form submission */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: #f44336;
}

.form-group.has-success .form-input,
.form-group.has-success .form-select {
  border-color: #4CAF50;
}

/* Phone Input Component */
.phone-input-component {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Phone Label */
.phone-label {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 4px;
}

/* Phone Input Container - Single Pill Shape */
.phone-input-container {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.2px solid #CDCAD3;
  border-radius: 15px;
  padding: 0;
  width: 100%;
  min-height: 50px;
  position: relative;
}

.contact-header {
  padding-bottom: 15px;
}

/* Country Code Section (Left) */
.country-code-section {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  min-width: 120px;
  flex-shrink: 0;
}

/* Flag Container */
.flag-container {
  width: 24px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.flag-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* Country Code Selector */
.country-code-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.country-code-select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  padding: 4px 20px 4px 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 50px;
  font-weight: 500;
}

.country-code-select:focus {
  outline: none;
}

.country-code-select option {
  padding: 8px;
}

/* Dropdown Icon */
.dropdown-icon {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 10px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.country-code-select:focus+.dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* Vertical Separator */
.separator {
  width: 1px;
  height: 22px;
  background: #e0e0e0;
  margin: 7px 8px;
  flex-shrink: 0;
}

/* Phone Number Section (Right) */
.phone-number-section {
  flex: 1;
  padding: 12px 16px;
}

.phone-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333333;
  outline: none;
  padding: 0;
}

.phone-input::placeholder {
  color: #999999;
  font-weight: 400;
}

/* Focus States */
.phone-input-container:focus-within {
  border-color: #007AFF;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Hover Effects */
.phone-input-container:hover {
  border-color: #cccccc;
}

.country-code-select:hover+.dropdown-icon {
  color: #333333;
}

/* Active/Focus States */
.country-code-select:focus+.dropdown-icon {
  color: #007AFF;
}



/* Animation for dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.country-code-select:focus {
  animation: fadeIn 0.2s ease;
}

/* Custom styling for better cross-browser compatibility */
.country-code-select::-ms-expand {
  display: none;
}

/* Focus visible for accessibility */
.phone-input-container:focus-visible {
  outline: 2px solid #007AFF;
  outline-offset: 2px;
}

/* Loading state (if needed) */
.phone-input-container.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Success state */
.phone-input-container.success {
  border-color: #4CAF50;
}

/* Error state */
.phone-input-container.error {
  border-color: #f44336;
}

/* Disabled state */
.phone-input-container.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Flag icon specific styling */
.flag-icon {
  border: 1px solid #f0f0f0;
  border-radius: 2px;
}

/* Country code selector hover effect */
.country-code-selector:hover .dropdown-icon {
  color: #333333;
}

/* Phone input focus effect */
.phone-input:focus {
  color: #333333;
}

/* Placeholder styling */
.phone-input::placeholder {
  font-weight: 400;
  opacity: 0.7;
}

/* Ensure proper alignment */
.phone-input-container {
  align-items: stretch;
}

.country-code-section,
.phone-number-section {
  display: flex;
  align-items: center;
}

.new-password label.input-label {
  text-align: left;
}


/* -----------dashboard css----------- */
.dashboard-container {
  display: flex;
  min-height: 100vh;
  background-color: #F9F6F8;
}

/* Sidebar */
.dashboard-slider {
  width: 270px;
  background: white;
  border-right: 1px solid #e9ecef;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  min-height: 100vh;
  transition: 1s all;
  z-index: 999;
}

.sidebar.hidden {
  transform: translateX(-100%);
}

div#dashboard {
  padding-inline: 32px;
  padding: 20px;
  left: 270px;
  overflow: auto;
  height: calc(100vh - 191px);
}

.nav-item {
  padding: 0.75rem 1.5rem;
  margin: 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
}

span.right-arrow {
  position: absolute;
  content: "";
  right: 20px;
}

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

li.nav-item a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.nav-item.active {
  background-color: #FAF6FA;
  border-radius: 12px;
  color: #FF47F9;
  align-items: flex-start;
}

.nav-item::before {
  width: 20px;
  text-align: center;
}



/* Main Content */
.main-content {
  width: calc(100% - 270px);
  margin-left: auto;
  transition: margin-left 0.3s ease;
}

.main-content.full-width {
  margin-left: 0;
}

/* Header */
.header {
  background: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.header-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.dashbord-tab {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.notification-badge {
  position: relative;
  cursor: pointer;
}

.notification-badge::before {
  content: "";
  background: url(../assets/images/notification-satus-icon.png);
  height: 20px;
  width: 20px;
  bottom: -11px;
  right: 2px;
  position: absolute;
}

.notification-badge::after {
  content: "2";
  position: absolute;
  top: -15px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.username {
  min-width: 200px;
  white-space: nowrap;
  display: inline-block;
}



/* Dashboard Content */
.dashboard-content {
  padding: clamp(10px, 1.3vw, 28px);
  background-color: #F9F6F8;
}

.welcome-message {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: #000000;
  /* margin-bottom: clamp(15px,2vw,31px); */
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:clamp(10px,1.5vw,22px);
  margin-bottom: 32px;
}

.stat-card {
  background: white;
  padding: clamp(15px, 2vw, 24px) clamp(10px, 1vw, 24px);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: clamp(10px,1vw,18px);
}

.stat-icon {

  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-content h3 {
  font-size: clamp(16px, 1.3vw, 23px);
  font-weight: 700;
  margin-bottom: 1px;
}

.stat-content p {
  color: #70747B;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  margin: 0;
}

.recommend-form .logo {
  padding-bottom: clamp(20px, 2.5vw, 42px);
}

/* Tables */
.table-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-inline: clamp(10px, 2vw, 23px);
  margin: 0;
}

.table-header {
  padding: 1.5rem;
  font-size: 16px;
  color: #000000;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.table-container {
  overflow-x: auto;
}

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

.tab-bg th {
  padding-inline: 20px !important;
  font-weight: 500;
  color: #000000;
  font-size: 14px;
}

.status {
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.status.hired {
  color: #0CB846;
}

.status.pending {
  color: #F27A00;
}

.status.publish {
  color: #0CB846;
}

.status.unpublish {
  color: #F94346;
}

.action-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;

  border-radius: 4px;
  transition: background-color 0.2s;
}

.action-btn:hover {
  background: #f8f9fa;
}

.tracking-link {
  color: #1A42E3;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.tracking-link:hover {
  text-decoration: underline;
}

/* Page Content */
.page {
  display: none;
}

.page.active {
  display: block;
  padding-inline: 32px;
}

/* Jobs Page Specific Styles */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.add-job-btn {
  background: #1976d2;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.add-job-btn:hover {
  background: #1565c0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.job-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.job-type {
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.job-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.job-stat {
  text-align: center;
}

.job-stat-number {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1976d2;
}

.job-stat-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.25rem;
}

.job-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.job-action-btn {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #e9ecef;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.job-action-btn:hover {
  background: #f8f9fa;
}

.job-action-btn.primary {
  background: #1976d2;
  color: white;
  border-color: #1976d2;
}

.job-action-btn.primary:hover {
  background: #1565c0;
}

/* Footer */
.dashboard-main .footer {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-size: 0.9rem;
  background-color: #F9F6F8;
}

.dashboard-main {
  display: unset !important;
  height: 100vh;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 64px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(6, 40, 61, 0.03) 0px 1px 4px 2px;
  min-width: 240px;
  color: var(--Input-field-header, #767A7A);
  z-index: 1;
  padding: 10px;
}

.table-responsive {
  width: 100%;
  white-space: nowrap;
  height: 100%;
  /* overflow-x: unset !important; */
}

.table-responsive th {
  background: #F9F4F9 !important;
}

.bg-background {
  background: #F9F6F8 !important;
}

.dashboard-main .header {
  background: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-responsive td {
  padding: clamp(10px, 1.3vw, 20px) !important;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: -24px;
  text-align: center;
  top: 55px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(6, 40, 61, 0.03) 0px 1px 4px 2px;
  min-width: 240px;
  color: var(--Input-field-header, #767A7A);
  z-index: 1;
  padding: 10px;
}

.dropdown-content a:hover {
  color: #000;
}

.dropdown-content a {
  padding-block: 10px;
  font-size: 16px;
  display: block;
  color: #FF47F9;
  margin-bottom: 12px;
  font-weight: 500;
  text-decoration: none;
}

li.nav-item.active a span svg {
  stroke: #FF47F9;
}

.add-job a {
  background-color: #312C31;
  padding: 13px clamp(10px, 1.8vw, 21px);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;

}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.table-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 350px;
}

select#dataFilter, select#jobTypeFilter, select#categoryFilter {
  padding: 11px 17px 10px;
  width: 100%;
  border-radius: 10px;
  font-weight: 500;
  color: #000000;
  -webkit-appearance: none;
  background: transparent;
  font-size: 14px;
  border: 1.2px solid #CDCAD3;
  outline: none;
}

.filter-dropdown {
  width: 100%;
  position: relative;
}

.filter-dropdown::after {
  position: absolute;
  content: "";
  background: url(../assets/images/arrowdown.png);
  width: 16px;
  height: 16px;
  right: 12px;
  bottom: 14px;
}

.table-side-menu {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tab-logo {
  background: #000000;
  border-radius: 10px;
  padding: 12px;
}

.job-search-btn {
  border: 1.2px solid #ADA5AD;
  border-radius: 10px;
  padding: 11px;
}

.job-table-section {
  padding-block: 20px;
  /* height: calc(100vh - 430px); */
}

.job-table-section .table-responsive {
  overflow-x: auto !important;
}

.job-list-section .table-section {
  padding-block: 20px;
  /* height: calc(100vh  - 307px); */
}
.pagenation-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  float: none;
  gap: 20px;
  padding-block: 15px;
}

.pagnation-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

.select-icon {
  position: relative;
}

.pagnation-left .select-icon {
  transform: translateY(-50%);
  top: 35%;
  border-radius: 17px;
  right: 0;

}

select.pagnation-count {
  width: 57px;
  height: 35px;
  padding: 5px;
  border-radius: 17px;
  background: #F9F4F9;
  border: unset;
  appearance: none;
}

.select-icon:after {
  content: "";
  width: 25px;
  height: 100%;
  position: absolute;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../assets/images/pagination-logo.png);
}

.pagnation-left h6 {
  font-size: 14px;
  font-weight: 400;
  color: #5E5E5E;
}

.pagination a.page-link {
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  color: #5E5E5E;
  border: none;
  padding: 10px;
}

a.page-link.active {
  background: #F9F4F9;
  border-radius: 17px;
  color: #000000;
  border: none;
}

ul.pagination {
  gap: 5px;
}

.pagenation-arrow img {
  padding-inline: 5px;
}

.dashboard-slider.active {
  left: -250px;
  transition: transform 0.3s ease;
  box-shadow: -4px 6px 7px 0px #75757530;
  /* transform: translateX(100%); */
  transition: 1s all;
}

.dashboard-slider.active~.main-content {
  width: 100%;
  margin-left: unset;
  /* or margin-left: 0; */
}

.dash-close-menu {
  display: none;
}

.add-new-job-page nav {
  display: flex;
  justify-content: start;
  gap: 5px;
  padding-bottom: 22px;
}

.add-new-job-page ol.breadcrumb {
  gap: 8px;
}

.add-new-job-page .job-form-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.add-new-job-page .form-group {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}



.form-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #575257;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.2px solid #CDCAD3;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #ADA5AD;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #e03fc1;

}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
  appearance: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.toolbar {
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.toolbar select {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  padding: 2px 4px;
  width: fit-content;
}

.editor-textarea {
  border-radius: 0 0 4px 4px;
  border-top: none;
  min-height: 100px;
}

.modal-content .tags-container {
  max-width: 500px;

  border: none;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  border: 1.2px solid #ADA5AD;
  gap: 8px;
  border-radius: 15px;
  margin-top: 8px;
  max-width: 753px;
  padding: 15px 21px;
}

.tags-container .tag {
  background-color: #F8EDF7 !important;
  color: #000000 !important;
  padding: 8px 13px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tag-remove {
  background: none;
  border: none;
  color: #FF262A;
  cursor: pointer;
  font-size: 14px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.job-search-btn input[type="text"] {
  border: unset;
  padding: 0;
}

.tag-remove:hover {
  background-color: rgba(25, 118, 210, 0.1);
}

button.btn.btn-primary {
  font-size: 15px;
  background: #312C31;
  color: #FFFFFF;
  font-weight: 600;
  max-width: 151px;
  border-radius: 15px;
  width: 100%;
  border: none;
}

button.btn.btn-secondary {
  background: #FFFFFF;
  color: #312C31;
  max-width: 151px;
  font-size: 15px;
  width: 100%;
  border-radius: 15px;
  font-weight: 600;
}

.button-group .tag-input {
  border: none;
  outline: none;
  min-width: 100px;
  padding: 4px;
  font-size: 12px;
}

.reward-text {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.publict-btn {
  padding-top: clamp(20px, 6vw, 95px);
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #333;
  color: white;
}

.btn-primary:hover {
  background-color: #555;
}

.btn-secondary {
  background-color: transparent;
  color: #333;
  border: 1px solid #ddd;
}

.form-container {
  padding: 40px 5px;
}

.btn-secondary:hover {
  background-color: #f8f9fa;
}

.form-flex {
  width: 100%;
}

.word-count {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.selling-form {
  display: flex;
  gap: 18px;
  flex-direction: row;
  align-items: center;

}

input.tag-new {
  border: none;
}

.tog-border {
  border-top: 1.2px solid #ADA5AD;
}

button.toolbar-btn.underline {
  margin-top: 0;
  margin: unset !important;
  padding-top: 0;
  padding: 0;
  width: unset;
  border: none;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip {
  position: absolute;
  top: 100%;
  right: 0px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 140px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  margin-top: 8px;
}

.tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translate(10px, 10px);
}

.tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
}

.tooltip-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

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

.tooltip-item:active {
  background-color: #e9ecef;
}

.tooltip-icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* SVG Icons */
.edit-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delete-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.referral-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Demo styles for multiple tooltips */
.demo-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

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

.demo-section h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 16px;
}

th.job-pop-up a.btn.btn-primary {
  background-color: unset;
  border: unset;
  color: #000;
}


.status-badge {
  color: #0CB846;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.close-btn:hover {
  background-color: #f0f0f0;
}


.overview-section {
  margin-bottom: 24px;
}

.overview-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.job-info {
  display: grid;
  gap: 12px;
}

.job-info-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.job-info-label {
  font-size: 15px;
  color: #575257;
  max-width: 116px;
  width: 100%;
  font-weight: 500;
}

.job-info-value {
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  text-align: right;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.job-description {
  margin-bottom: 24px;
}

.description-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.show-more {
  color: #e91e63;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.show-more:hover {
  text-decoration: underline;
}

.requirements-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.requirements-column h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.requirements-list {
  list-style: none;
}

.requirements-list li {
  font-size: 15px;
  color: #000000;
  margin-bottom: 8px;
  position: relative;
  font-weight: 400;
  padding-left: 16px;
}

.requirements-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

.tags-section {
  margin-bottom: 24px;
}

.tags-container .tag {
  background-color: #f0f0f0;
  color: #333;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.tag.primary {
  background-color: #1976d2;
  color: white;
}

.tag.success {
  background-color: #2e7d32;
  color: white;
}

.tag.info {
  background-color: #0288d1;
  color: white;
}

.job-list-pop-up.modal-content {
  padding: 20px;
}

.job-list-pop-up.modal-dialog {
  max-width: 1018px;
}

.job-list-pop-up .modal-header {
  border: none;
}

div#exampleModal {
  max-width: 1018px;
  margin: auto;
  width: 100%;
}

.job-list-pop-up h2.modal-title {
  font-size: 23px;
  font-weight: 700;
  color: #000000;
}

.job-list-pop-up .modal-content {
  border: none;
  border-radius: 45px;
}

.job-list-pop-up.modal.show .modal-dialog {
  transform: none;
  width: 100%;
  max-width: unset;
  margin: auto;
  justify-content: center;
}

nav.breadcrumb-nav {
  justify-content: start;
}

.view-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 21px;
}

.view-content {
  max-width: 195px;
  width: 100%;
  gap: 10px;
  align-items: center;
  padding: 15px 17px 14px;
}

.view-content h5 {
  font-size: 16px;
  display: flex;
  color: #000000;
  font-weight: 500;
  align-items: center;
  gap: 3px;
  margin: 0;
}

.view-content span {
  color: #70747B;
}

ol.breadcrumb {
  gap: 5px;
  margin: 0;
}

.view-group-header h4 {
  font-weight: 600;
  color: #000000;
  font-size: 18px;
}

button.job-view-btn {
  font-size: clamp(12px, 1vw, 15px);
  padding: 7px 20px;
  font-weight: 600;
  border-radius: 8px;
  color: #FFFFFF;
  background: #312C31;
}

.modal-dialog.track-list {
  max-width: 541px;
  width: 100%;
}

.modal-content.track-list-pop {
  padding: 32px;
}

.job-info-value h5 {
  font-size: 15px;
  font-weight: 500;
  color: #FF47F9;
  align-items: center;
  margin: 0;
  display: flex;
  gap: 3px;
}

.job-description-btn a {
  background: #312C31;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 500;
  width: 100%;
  display: block;
  max-width: 201px;
  border-radius: 15px;
  text-decoration: none;
  font-size: clamp(14px, 1vw, 18px);
}

.job-description-btn {
  display: flex;
  gap: 22px;
}

a.reject-bg {
  background: #fff;
  color: #312C31;
  border: 1px solid #000000;
}

.track-list-pop .job-info-item {
  border-bottom: 1px solid #0000001A;
  padding-bottom: 14px;
}

.editor-toolbar {
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* add new deals page css */

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

/* Rich Text Editor Styles */
.rich-editor {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.editor-toolbar {
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 4px;
}

.toolbar-select {
  border: none;
  font-weight: 600;
  background: none;
  font-size: 14px;
  padding: 4px 0px;
  color: #000000;
  cursor: pointer;
  border-radius: 3px;
  width: fit-content;
}

.toolbar-select:hover {
  background-color: #e9ecef;
}

.toolbar-btn {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 13px;
}

.toolbar-btn:hover {
  background-color: #e9ecef;
}

.toolbar-btn.bold {
  font-weight: bold;
}

.toolbar-btn.italic {
  font-style: italic;
}

.toolbar-btn.underline {
  text-decoration: underline;
}

.editor-content {
  min-height: 120px;
  padding: 16px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  width: 100%;
}

.editor-content:focus {
  outline: none;
}

/* Regular Textarea Styles */
.form-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* File Upload Styles */
.deal-upload-section {
  background-color: #F8EEF7;
  border: 2px dashed #F8EEF7;
  border-radius: 19px;
  padding: 32px 24px;
  flex-direction: row;
  display: flex;
  text-align: center;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 753px;
  margin: 10px;
  gap: 13px;
}

.nav-item svg {
  color: #FF47F9;
}

.form-des {
  margin-right: auto;
}

.upload-section:hover {
  background-color: #F8EEF7;
  border-color: #F8EEF7;
}

.upload-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.upload-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.deal-upload-section .upload-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.upload-btn:hover {
  background-color: #555;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Icons */
.icon-bold::before {
  content: "B";
  font-weight: bold;
}

.icon-italic::before {
  content: "I";
  font-style: italic;
}

.icon-underline::before {
  content: "U";
  text-decoration: underline;
}

.icon-strikethrough::before {
  content: "S";
  text-decoration: line-through;
}

.icon-link::before {
  content: "🔗";
}

.icon-list-ul::before {
  content: "⦁";
}

.icon-list-ol::before {
  content: "1.";
  font-size: 12px;
}

.icon-align-left::before {
  content: "≡";
}

.deals-form-group {
  width: 100%;
  max-width: 753px;
}

.form-group.text-box {
  gap: 10px;
}

.upload-section button.upload-btn {
  margin-left: auto;
  justify-content: center;
}

/* .tract-section-list {
  height: calc(100vh - 292px);
} */
.tract-section {
  padding-block: 20px;
  /* height: calc(100vh  - 336px); */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-inline: clamp(10px, 2vw, 23px);
  margin: 0;
}

.track-table-section {
  padding-block: 20px;
  /* height: calc(100vh - 450px); */
}

.form-group.dashed-pro {
  border: 1.2px dashed #DFCDDD;
  border-radius: 19px;
  border-color: #c084fc;

}

.track-pop-ip {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.track-list-pop h1 {
  width: 100%;
}

.track-pop-ip {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.track-list-pop h1#exampleModal-tracking {
  width: 100%;
}

.invoice-btn {
  border: 1px solid #000000;
  background: #fff;
  padding: 8px 13px;
  border-radius: 9px;
}

.invoice-btn a {
  font-size: 17px;
  font-weight: 600;
  color: #312C31;
  text-decoration: none;
  display: flex;
  gap: 3px;
}

.invoice-btn {
  margin-right: 8px;
}

.invoice-btn img {
  margin-right: 5px;
}



.settings-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2px;
}

.settings-subtitle {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
}

.settings-list {
  list-style: none;
}

.setting-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  max-width: 600px;
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-content {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1vw, 16px);
  flex: 1;
}

.setting-name {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.setting-description {
  font-size: 14px;
  color: #575257;
  font-weight: 400;
  line-height: 1.4;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: 0.3s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
  background: linear-gradient(135deg, #ff6b9d, #c471ed);
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.slider:hover {
  box-shadow: 0 0 0 8px rgba(255, 107, 157, 0.1);
}

input:checked+.slider:hover {
  box-shadow: 0 0 0 8px rgba(255, 107, 157, 0.15);
}

.form-title {
  font-size: 19px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #626262;
  line-height: 1.5;
  font-weight: 400;
}

.profile-section {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.profile-info h3 {
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.edit-profile-btn {
  background: none;
  border: none;
  color: #FF47F9;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.edit-profile-btn:hover {
  color: #c2185b;
  text-decoration: underline;
}

.edit-icon {
  width: 16px;
  height: 16px;
}

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

.form-row.single {
  grid-template-columns: 1fr;
}

.form-row.four-col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}

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

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.phone-input-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  padding-inline: 12px;
  border: 1px solid #ddd;
  border-radius: 15px;
  background-color: #fff;
  cursor: pointer;
  min-width: 80px;
  gap: 6px;
}

.country-code {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  gap: 6px;
}

.flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.phone-number {
  flex: 1;
  border: none;
}

.save-btn {
  background-color: #312C31;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 15px;
  font-size: clamp(14px,1vw,16px);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 20px;
}

.save-btn:hover {
  background-color: #555;
}

.save-btn:active {
  background-color: #222;
}

.personal-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: clamp(10px, 2vw, 23px);
  margin: 0;

}

.nav-item.active a {
  color: #FF47F9;
}

.personal-form-page {
  max-width: 1153px;
  margin: auto;
  padding: 0 15px clamp(40px, 6vw, 108px);
}

.personal-selector {
  background: #EFEFEF;
}

.personal-form-page .personal-profile-section {
  align-items: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: clamp(20px,2.5vw,33px);
}

input#skills-input {
  border: none;
}

.pro-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dashboard-content h2.welcome-message {
  padding-bottom: 20px;
}

.reward-content {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 30px);
}

.Cash a {
  font-size: clamp(12px,1vw,14px);
  font-weight: 600;
  background: #FF47F9;
  color: #fff;
  border-radius: 8px;
  width: 100%;
  line-height: 1.2;
  text-decoration: none;
  padding: 7px clamp(10px, 1vw, 18px);
  display: block;
  text-align: center;
}

.user-table-setion {
  margin-block: 26px;
}

.user-header {
  padding-left: 0;
}

button.share-btn {
  font-size: 14px;
  font-weight: 600;
  background: #FF47F9;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  padding: 7px clamp(10px, 1vw, 18px);
  display: block;
  text-align: center;
  border: none;
}

.user-btn {
  display: flex;
  gap: 10px;
}



.account-switcher {
  position: relative;
  width: 100%;
}

.switch-trigger {

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;

}

.trigger-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trigger-text {
  font-size: 15px;
  font-weight: 500;
  color: #262424;
}

.chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  color: #666;
}

.chevron.rotated {
  transform: rotate(360deg);

}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-top: 8px;
  opacity: 0;
  display: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;

}

.dropdown.show {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

.account-option {
  display: flex;
  align-items: center;
  padding: 16px 0px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  gap: 5px;
}

.account-option:last-child {
  border-bottom: none;
}

.account-option:hover {
  background-color: #f8f9fa;
}

.account-info {
  flex: 1;
}

.account-type {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2px;
}

.account-name {
  font-size: 12px;
  color: #575257;
  font-weight: 400;
}

.selected-indicator {
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #FF47F9, #FF47F9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.account-option.selected .selected-indicator {
  opacity: 1;
}

.demo-container {
  text-align: center;
}

svg#chevron {
  color: #4A4D5A;
}

.demo-title {
  margin-bottom: 30px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.current-account {
  margin-top: 30px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.current-account h3 {
  color: #333;
  margin-bottom: 8px;
}

.current-account p {
  color: #666;
  font-size: 14px;
}

.search-input-group input[type="text"] {
  border: none;
}

.table-posting {
  padding-block: 22px;
}
.add-job a {
  color: #fff;
}

.search-input-group input[type="text"] {
  min-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.selling-form input#sellingPoint1 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.form-group.salary-group {
  gap: 10px;
}
.note-editor.note-frame.card {
  min-width: 100%;
}
#summernote1 {
  width: 80% !important;   /* or 100%, 70%, etc. */
  max-width: 100%;         /* keeps it responsive */
}