﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none;
}

@font-face {
  font-family: fetishBold;
  src: url(../fonts/Fashion\ Fetish\ Bold.ttf);
}

:root {
  --main-color: #0a1029;
  --white-text: #ffffff;
  --black: #02060d;
  --secondary-color: #e58f17;
  --orange-bg: #fae9d1;
  --light-background: #f5f7fc;
  --navy-text: #073b6d;
  --gray-bg: #ebeefa;
  --gray-text: #7f7e7d;
  --dark-blue: #0d254c;
  --accepted: #d0e2cb;
  --accepted-text: #1b4c0d;
  --pending: #fae9d1;
  --accept: #2f8417;
  --reject: #c43916;
  --negotiate: #e58f17;
  --muted: #8f98a8;
  --card: #ffffff;
  --line: #e9eef7;
  --shadow: 0 12px 28px rgba(13, 15, 28, 0.06);
  --orange: #e0861c;
  --green: #2f8f3a;
  --red: #e05039;
  --red-bg: #fde7e3;
}

p {
  margin-bottom: 0px !important;
}
.btn.show {
  background-color: transparent !important;
}
.btn:hover {
  background-color: var(--orange);
  color: white !important;
}
.btn:first-child:active {
  background-color: inherit;
}
body {
  font-family: "Montserrat", sans-serif !important;
}

.background-color {
  background: var(--light-background);
}

.main-header {
  background-color: #fff;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header .logo-img {
  width: 250px;
}

.greeting {
  margin-left: 3rem;
}

.greeting h6 {
  color: var(--dark-blue);
  font-weight: bold;
  font-size: 16px;
}

.greeting p {
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-blue);
}

.search-box {
  position: relative;
  width: 250px;
}

.search-box input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e6f0ff;
  border-radius: 16px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
}

.search-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
}

.sidebar {
  position: sticky;
  top: 0;
  background: #fff;
  border-right: 1px solid #eee;
  padding: 20px 0;
  height: 100%;
  overflow-y: auto;
  max-height: 100vh;
}

.menu {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.menu li {
  padding: 10px 25px;
  color: var(--gray-text);
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: bold;
}

.menu li a {
  color: var(--gray-text) !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu li.active {
  background: #fff5e8;
  color: var(--secondary-color);
  font-weight: bold;
  border-radius: 15px;
}

.menu li.active a {
  color: var(--secondary-color) !important;
}

.menu li.active i {
  color: var(--secondary-color);
}

.menu li.logout {
  color: #e74c3c;
  font-weight: 500;
  margin-top: 15px;
}

.menu li.logout i {
  color: #e74c3c;
}

/* Dropdown styles */
.has-dropdown {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.has-dropdown .menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.has-dropdown .menu-item:hover {
  background: #f8f8f8;
}

/* Arrow */
.dropdown-arrow {
  margin-left: auto;
  font-size: 12px;
  color: #aaa;
}

/* Submenu */
.submenu {
  display: none;
  flex-direction: column;
  margin-top: 4px;
}

.submenu li {
  padding: 6px 0;
  color: #555;
  font-size: 13px;
}

.has-dropdown.open .submenu {
  display: flex;
}

.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.summary-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 5px 20px;
  min-height: 130px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
  position: relative;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.summary-card:hover {
  transform: translateY(-2px);
}

.summary-card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}

.summary-title {
  color: #666666;
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 4px;
}

.summary-number {
  font-size: 24px;
  font-weight: 700;
  color: #0c1a4b;
}

.arrow-icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40px;
}

.order-table-section {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
  overflow-x: auto;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.order-table thead th {
  text-align: left;
  color: #999;
  font-weight: 500;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.order-table tbody td {
  padding: 15px;
  color: var(--dark-blue);
  vertical-align: middle;
}

.order-table tbody td strong {
  color: #0c1a4b;
}

/* Status badges */
.status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
}

.status.in-transit {
  background: var(--pending);
  color: var(--secondary-color);
}

.status.out-for-delivery {
  background: #d9f2de;
  color: #206b2a;
}

/* Track button */
.track-btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

.usage-card {
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
}

.usage-title {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 500;
  margin-top: 10px;
  margin-left: 10px;
}

.doughnut-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 20px auto;
}

.doughnut-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}

.doughnut-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.doughnut-center-icon img {
  width: 80px;
  height: 80px;
}

.legend {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  font-size: 13px;
  margin-top: 30px;
  color: #666;
}

.legend h6 {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.service-usage-section .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0px;
}

/* Legend colors */
.orange {
  background-color: var(--secondary-color);
}

.yellow {
  background-color: #fcd59b;
}

.gold {
  background-color: #d08e00;
}

.navy {
  background-color: #003f63;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 190px;
  padding: 20px;
}

#lineChart {
  width: 100% !important;
  height: 100% !important;
}

.quotation-table-section {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
  overflow-x: auto;
}

.quotation-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
}

.quotation-table thead th {
  text-align: left;
  color: #999;
  font-weight: 500;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.quotation-table tbody td {
  padding: 15px;
  color: var(--dark-blue);
  font-weight: 500;
  vertical-align: middle;
}

.quotation-table tbody td strong {
  color: #0c1a4b;
}

/* Status badges */
.status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
}

.status.awaiting {
  background: var(--pending);
  color: var(--secondary-color);
}

.status.approved {
  background: #d9f2de;
  color: #206b2a;
}

.status.rejected {
  background: #ffe0e0;
  color: #a12727;
}

/* Buttons */
.view-btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  width: 83px;
  height: 30px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

.re-btn {
  background-color: #fff;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

.re-btn:hover {
  background-color: #fffaf2;
}

/* Icon + button alignment */
.action-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.icon-table-btn {
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 50%;
  padding: 4px;
}

.last-table-data {
  display: flex;
  justify-content: flex-end;
}

.action-group img {
  width: 20px;
  height: 20px;
}

.notification-section {
  max-width: 270px;
}

.notification-box {
  height: 645px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
}

.notif-title {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 12px;
  font-weight: 500;
}

/* Notification Item */
.notif-item {
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 10px rgba(235, 238, 250, 0.6);
}

.notif-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notif-content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.notif-item.active .notif-content span {
  color: #000;
  font-weight: 600;
}

.payment-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}

.payment-arrow img {
  width: 25px;
}

.payment-summary-section {
  margin-top: 20px;
}

.main-payment-card {
  border-radius: 16px;
  padding: 10px;
  height: 97%;
  background: url("../images/payment-large.png") no-repeat bottom;
  background-size: cover;
  position: relative;
}

.payment-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

.payment-title {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 10px;
}

.payment-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-content img {
  width: 70px;
  height: 70px;
}

.payment-content h4 {
  font-size: 22px;
  font-weight: bold;
  color: #0c1a4b;
  margin: 0;
}

.payment-sub {
  font-size: 13px;
  color: var(--gray-text);
  margin: 3px 0;
  text-align: center;
}

/* Pay Now Button */
.pay-now-btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  height: 42px;
  width: 135px;
  position: absolute;
  left: 51%;
  transform: translateX(-50%);
  bottom: 5px;
}

.payment-tracking-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 10px 20px rgba(13, 15, 28, 0.03);
}

.paid-analytics-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 10px;
}

.bar-chart-container {
  width: 60%;
  height: 210px;
  position: relative;
}

.doughnut-chart-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.dropdown-area {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-text);
}

.dropdown-area label {
  margin-bottom: 0;
}

.custom-dropdown {
  border: none;
  background: transparent;
  font-weight: bold;
  color: #000;
  font-size: 14px;
  appearance: none;
  padding-right: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 22px;
  cursor: pointer;
}

.doughnut-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}

#doughnutChartPaid {
  width: 100% !important;
  height: 100% !important;
}

.doughnut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.doughnut-center .percent {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #0c1a4b;
  margin-bottom: 6px;
}

.legend-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.orange {
  background-color: var(--secondary-color);
}

.navy {
  background-color: #0c1a4b;
}

/*sign up page*/
.terms {
  font-size: 16px;
  font-weight: 400;
}

.terms a {
  color: #000;
}

.custom-captcha {
  width: 50%;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 75px;
  padding: 30px;
}

.footer {
  background: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.footer-content {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-content p {
  font-size: 14px;
  font-weight: 500;
}

.footer-content p a {
  color: var(--black);
  text-decoration: underline !important;
}

/* warehousing services */

/* Breadcrumb */
.breadcrumb a {
  color: var(--black);
}

.steps-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
  height: 44px;
  display: flex;
  align-items: center;
}

.steps-line {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 1;
  transform: translateY(-15%);
}

.steps-line-active {
  position: absolute;
  top: 15%;
  left: 0;
  height: 4px;
  background-color: #f39c12;
  transform: translateY(-15%);
  z-index: 2;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0;
}

/* Progress widths based on current step */
.steps-line-active.active-1 {
  width: 0%;
}

.steps-line-active.active-2 {
  width: 33.33%;
}

.steps-line-active.active-3 {
  width: 66.66%;
}

.steps-line-active.active-4 {
  width: 100%;
}

.steps-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  width: 100%;
}

.steps-container .step {
  background: #e0e0e0;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.steps-container .step.step-completed,
.steps-container .step.step-active {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Form Card */
.form-card {
  background-color: #fff;
  padding: 30px 90px;
  border-radius: 16px;
  box-shadow: 0px 0px 40px rgb(224, 225, 228);
  max-width: 95%;
  margin: 20px auto;
}

.form-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 32px;
}

.form-label {
  font-weight: bold;
  color: var(--black);
  margin-bottom: 8px;
}

.form-label span {
  color: var(--gray-text);
}

.form-group {
  margin-bottom: 20px;
}

.form-select,
.form-control {
  border-radius: 8px;
  height: 48px;
  font-size: 14px;
}

.form-select:focus {
  border-color: var(--gray-bg) !important;
  box-shadow: none !important;
}

.form-check-input:checked + .form-check-label {
  color: var(--black);
}

.form-check-input:checked {
  background-color: var(--orange) !important;
}

.continue-btn {
  margin-top: 30px;
  width: 323px;
  height: 64px;
  border: none;
  background-color: var(--secondary-color);
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
}

.form-check-input {
  border: 1px solid #000 !important;
}

.form-check-label {
  font-weight: 400;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.confirmation-title {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: bold;
}

.form-card .section-title {
  font-weight: bold;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 10px !important;
}

select option:checked {
  background-color: var(--secondary-color) !important;
  color: var(--white-text);
  font-weight: bold !important;
}

section option:hover {
  background-color: red !important;
}

select {
  font-weight: bold !important;
}

/* search bar */
.search-sort-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* Search Section */
.search-bar {
  display: flex;
  align-items: center;
  background: url("../images/search-bg.png") no-repeat center;
  background-size: cover;
  background-position: calc(50% + 0px) center;
  padding: 0px 0px;
  border-radius: 50px;
  flex-grow: 1;
  position: relative;
}

.filter-btn {
  background: var(--white-text);
  border: 1px solid var(--gray-bg);
  border-radius: 20px;
  width: 125px;
  height: 68px;
  font-weight: 600;
  margin-right: 25px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
}

.search-input {
  border: none;
  flex-grow: 1;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
}

/* Sort Section */
.sort-dropdown {
  position: relative;
  background: #fff;
  width: 229px;
  height: 68px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: #0c0c0c;
  border-radius: 50px;
  justify-content: space-between;
  cursor: pointer;
}

.sort-btn span {
  font-weight: 600;
}

/* Dropdown list (optional styling) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

/* Optional: Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute !important;
  left: 0;
  margin-top: 5px;
  padding: 0;
  background: #fff;
  list-style: none;
  min-width: 100px !important;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

.dropdown-menu--show {
  display: block !important;
}

/* notification page */
.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  font-size: 14px;
  color: #333;
  position: relative;
}

.notification-item.delivered {
  background-color: #f6f6f6;
}

.notification-item .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-item .icon {
  width: 20px;
  height: 20px;
}

.notification-item .right {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: -10px;
}

.right-img {
  position: absolute;
  right: 0;
}

.right-img img {
  width: 40px;
}

/* settings page */
.general-preferences {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}

.settings .section-title h2 {
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 24px;
}

.preferences-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.preferences-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
}

.preferences-btn {
  background: var(--white-text);
  border: 2px solid var(--light-background);
  width: 181px;
  height: 44px;
  border-radius: 10px;
  font-weight: 600;
}

.notification-settings {
  margin: 30px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--black);
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--black);
  font-weight: 600;
}

.notify-label {
  margin-top: 30px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.custom-label {
  font-weight: 600;
}

.checkbox-container {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Custom Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 102px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  border-radius: 24px;
  top: 0;
  left: 3px;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  background-color: #ccc;
}

.slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.switch input:checked + .slider::before {
  transform: translateX(75px) !important;
}
/* Orange Toggle */
input:checked + .slider.orange {
  background-color: var(--secondary-color);
}

input:checked + .slider.orange::before {
  transform: translateX(21px);
}

/* Grey Toggle */
input:checked + .slider.grey {
  background-color: var(--gray-text);
}

input:checked + .slider.grey::before {
  transform: translateX(21px);
}

/* Unchecked */
.slider.orange,
.slider.grey {
  background-color: var(--gray-text);
}

/* serach page */
.service-search .search-bar {
  display: flex;
  align-items: center;
  background: url(../images/search-bg.png) no-repeat;
  background-size: cover;
  background-position: calc(50% + -20px) center;
  padding: 0px 0px;
  border-radius: 50px;
  flex-grow: 1;
  position: relative;
}

.no-results-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
  min-height: 100vh;
}

.no-results-box {
  width: 100%;
}

.no-results-img {
  max-width: 180px;
  margin: 0 auto 32px;
  display: block;
}

.no-results-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
  font-family: fetishBold;
  letter-spacing: 0.35%;
}

.no-results-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-blue);
  margin-bottom: 60px !important;
}

.no-results-footer {
  margin-top: 40px;
}

.no-results-hint {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-blue);
  margin-top: 52px;
}

.contact-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: white;
  border: 1.5px solid var(--secondary-color);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* rfqs page */
.rfqs-section {
  padding-bottom: 50px;
}

.rfqs-box {
  padding: 30px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: url("../images/rfqs.png") no-repeat bottom;
  height: 300px;
  margin-top: 30px;
}

.rfqs-box h3 {
  font-size: 24px;
  color: var(--dark-blue);
  font-weight: 600;
  text-transform: capitalize;
}

.rfq-status {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.rfq-numbers {
  text-align: center;
}

.rfq-numbers span {
  color: var(--gray-text);
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 0 !important;
}

.rfq-numbers p {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  margin-top: -5px;
}

.rfq-status p {
  color: var(--gray-text);
  font-weight: 400;
}

.rfq-status span {
  color: var(--black);
}

.rfq-btn {
  position: absolute;
  bottom: 0;
}

.rfq-btn button {
  width: 191px;
  height: 44px;
  border-radius: 20px;
  background: var(--secondary-color);
  color: var(--white-text);
  border: none;
  outline: none;
}

/* rfqs status */
.quotation-table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quotation-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
}

.quotation-table thead tr {
  background-color: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
}

.quotation-table th,
.quotation-table td {
  padding: 16px 20px;
  white-space: nowrap;
}

.quotation-table tbody tr {
  border-bottom: 1px solid #f1f1f1;
}

.status {
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
}

.status.accepted {
  background-color: #d4f4df;
  color: #1a7f37;
}

.status.rejected {
  background-color: #fbdada;
  color: #c0392b;
}

.status.pending {
  background-color: #ffe6b8;
  color: #e67e22;
}
/*rfq controls */
.rfq-controls {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between left tabs and right actions */
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 16px 16px 0 0; /* blends with your white card */
}

.rfq-tabs {
  display: flex;
  justify-content: space-around;
  width: 90%;
  align-items: center;
}

.rfq-tab {
  width: 120px;
  height: 31px;
  border-radius: 20px;
  background-color: transparent;
  color: var(--gray-text);
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.rfq-tab.active {
  background: var(--orange-bg); /* yellow pill for �All� in your shot */
  color: #e58f17;
  border-color: var(--orange-bg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* right: actions (search icon, filter icon, sort dropdown pill) */
.rfq-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* circular icon buttons (search + filter) */
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* small + responsive tweaks so spacing stays consistent */
@media (max-width: 720px) {
  .rfq-controls {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rfq-actions {
    margin-left: auto;
  }
}

/* rfqs-info */
.rfqs-info-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  gap: 30px;
  background-size: cover;
  padding: 15px 30px;
  position: relative;
  margin-bottom: 40px;
  border-radius: 10px;
}

.content-header {
  display: flex;
  justify-content: space-between;
}

.content-header h2 {
  font-weight: 600;
  font-weight: 24px;
  color: var(--dark-blue);
}

.content-header h5 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}

.content-header span {
  background: var(--accepted);
  width: 92px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--accepted-text);
}

.content-header button {
  background: transparent;
  border: none;
  outline: none;
}

.content-header a {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 14px;
}

.rfqs-content-info {
  padding: 0 20px;
}

.rfqs-content-info h5 {
  color: var(--gray-text);
  font-size: 14px;
}

.rfqs-content-info p {
  font-size: 14px;
  color: var(--black);
  font-weight: bold;
}

.rfqs-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

.rfqs-notes p {
  width: 60%;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.rfqs-notes span {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 14px;
}

.rfqs-notes a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.rfqs-notes-content {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.rfqs-info-buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.rfqs-info-buttons button {
  width: 113px;
  border-radius: 15px;
  border: none;
  outline: none;
  height: 40px;
  color: var(--white-text);
  font-weight: bold;
}

.rfqs-info-buttons .reject,
.quotation-summary-buttons .reject {
  background: var(--reject);
}

.rfqs-info-buttons .negotiate,
.quotation-summary-buttons .negotiate {
  background: var(--negotiate);
}

.rfqs-info-buttons .accept,
.quotation-summary-buttons .accept {
  background: var(--accept);
}

.quotation-header {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.quotation-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.quotation-info h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.quotation-info .route {
  font-weight: 400;
  margin-left: 4px;
}

.quotation-actions .submitted {
  margin-top: 6px;
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 600;
}

.quotation-info .linked {
  color: #003f63;
  font-weight: 500;
}

.quotation-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.quotation-buttons {
  display: flex;
  gap: 20px;
}

.status-badge {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  display: inline-block;
}

.status-badge.pending {
  background-color: var(--pending);
  color: var(--secondary-color);
}
.status-badge.rejected {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--secondary-color);
  background: var(--white-text);
  color: var(--secondary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.action-btn img {
  width: 16px;
  height: 16px;
}

.action-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

.action-btn:hover img {
  filter: brightness(0) invert(1);
}

.quotation-notes {
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quotation-notes .quotation-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.quotation-notes-text {
  color: #6b7280;
  font-size: 14px;
  display: block;
  width: 80%;
  text-align: center;
}

.quotation-summary {
  padding: 20px 40px;
  background: var(--white-text);
  background-size: cover;
  /* height: 160vh; */
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
}

.quotation-summary .quotation-title h2 {
  font-weight: 500;
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.negotiate-modal .modal-content {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(14, 35, 71, 0.08);
  padding: 8px 8px 0;
}

/* Role Selection Page Styles */
.main {
  background-color: #fbfcfe;
}

.signup-selection .row {
  --bs-gutter-x: 0;
}

.signup-box {
  position: relative;
  padding: 0;
}

.signup-box h2 {
  color: #ffffff;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
}

.signup-box p {
  color: #e58f17;
  font-weight: bold;
  font-size: 32px;
}

.first-signup-card,
.second-signup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.first-signup-card {
  background: url("/images/Shipper.svg") no-repeat;
  background-position: bottom;
  background-size: auto;
}

.second-signup-card {
  background: url("/images/service-provider.svg") no-repeat;
  background-position: bottom;
  background-size: auto;
}

.signup-box .main-btn {
  position: absolute;
  left: 35%;
  padding: 12px 70px;
  bottom: 0%;
  border-radius: 20px;
  background-color: #ffa500;
  border: none;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
}

/* Login page styles */
.signup-page {
  background-color: #f9fafc;
}

.signup-card {
  background-color: var(--white-text);
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(80, 112, 255, 0.15);
  padding: 50px 140px;
  margin: 0 3rem;
}

.signup-card h3 {
  font-weight: bold;
  font-size: 32px;
}

/*.signup-card label {
  font-weight: bold;
}*/

.password-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.password-content span {
  color: var(--gray-text);
  cursor: pointer;
}

.form-control {
  box-shadow: none !important;
  border: 1px solid #ebeefa !important;
}

.form-check-input {
  appearance: none !important;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc !important;
  border-radius: 4px;
  background-color: var(--white-text);
  cursor: pointer;
  position: relative;
  box-shadow: none !important;
}
.form-check {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

/*    .form-check-input:checked {
        background-color: #000 !important;
        border-color: #000 !important;
        box-shadow: none !important;
    }*/

.already-account {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  font-weight: bold;
}

.already-account a {
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary-color);
}

.signup-card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.signup-card-bottom .main-btn {
  width: 323px;
  height: 64px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 20px;
  margin-bottom: 40px;
  background: var(--secondary-color);
  color: var(--white-text);
  border: none;
}

.forgot-pass {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
}

/* Mobile responsive for role selection */
@media screen and (max-width: 750px) {
  .first-signup-card,
  .second-signup-card {
    background-size: cover;
  }

  .signup-box h2 {
    font-size: 18px;
  }

  .signup-box p {
    font-size: 16px;
  }

  .signup-box .main-btn {
    position: absolute;
    left: 18%;
    padding: 12px 35px;
    bottom: -1%;
    border-radius: 20px;
  }

  .signup-card {
    padding: 30px 20px;
    margin: 0 1rem;
  }

  .signup-card-bottom .main-btn {
    font-size: 18px;
    width: 100%;
    max-width: 300px;
  }
}

/* Registration Form Styles */
.registration-form-container {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-form-card {
  width: 1123px;
  max-width: 90%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 33.4px 16px #ebeefa;
  padding: 60px;
  margin: 0 auto;
}

.registration-form-content {
  max-width: 765px;
  margin: 0 auto;
}

.registration-form-title {
  font-size: 32px;
  font-weight: bold;
  color: #02060d;
  text-align: center;
  margin-bottom: 40px;
}

.basic-info {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.registration-form-container .form-section,
.registration-form-container .basic-info {
  gap: 5px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-weight: bold;
  color: #02060d;
  font-size: 16px;
  margin-bottom: 4px;
}

/* select look & feel like the screenshot */
.select-field {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-weight: 400 !important;
  line-height: 1.4;
  padding: 12px 44px 12px 16px;
  border: 1px solid #e6edf5;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: none;
}

.select-field:invalid {
  color: #02060d;
}

.select-field option {
  color: #0f172a;
}

/* focus state */
.select-field:focus {
  border-color: #b8c7d9;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-control {
  width: 100%;
  height: 56px;
  padding: 15px 18px;
  border: 1px solid #ebeefa;
  border-radius: 12px;
  font-size: 16px;
  color: #02060d;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #e58f17;
  box-shadow: 0 0 0 2px rgba(229, 143, 23, 0.1);
}

.form-control::placeholder {
  color: #7f7e7d;
}

.location-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-group .form-control {
  width: 100%;
}

.file-upload-area {
  position: relative;
  width: 100%;
  height: 168px;
  border: 1px solid #ebeefa;
  border-radius: 12px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.file-upload-area:hover {
  border-color: #e58f17;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-content {
  text-align: center;
  color: #7f7e7d;
}

.file-upload-icon {
  font-size: 44px;
  color: #e58f17;
  margin-bottom: 10px;
}

.file-upload-text {
  font-size: 16px;
  font-weight: 500;
  color: #02060d;
  margin-bottom: 5px;
}

.file-upload-subtext {
  font-size: 14px;
  color: #7f7e7d;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}

.form-check-input {
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
}

.form-check-label {
  font-size: 16px;
  color: #02060d;
  cursor: pointer;
  line-height: 1.4;
  margin-left: 5px;
}

.optional {
  font-weight: 500;
  color: #7f7e7d;
}

.btn-submit {
  width: 323px;
  height: 64px;
  background-color: #e58f17;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.btn-submit:hover {
  background-color: #d17a0f;
}

.btn-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Mobile responsive for registration form */
@media screen and (max-width: 768px) {
  .registration-form-card {
    width: 95%;
    padding: 30px 20px;
  }

  .registration-form-title {
    font-size: 24px;
  }

  .btn-submit {
    width: 100%;
    max-width: 300px;
  }

  .location-group {
    gap: 15px;
  }
}

/* Service Provider Registration Form Styles */
.services-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.service-option label {
  font-size: 16px;
  color: #02060d;
  cursor: pointer;
  margin: 0;
}

.service-option input[type="radio"]:checked + label {
  font-weight: bold;
  color: #e58f17;
}

/* Warehousing Section */
#warehousing-section {
  display: none;
}

#warehousing-section.show {
  display: block;
}

.warehousing-info-section {
  margin-top: 20px;
}

.warehousing-field-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.warehousing-field {
  width: 100%;
}

.warehousing-field .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ebeefa;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  color: #02060d;
  transition: border-color 0.3s ease;
}

.warehousing-field .form-control:focus {
  outline: none;
  border-color: #e58f17;
  box-shadow: 0 0 0 2px rgba(229, 143, 23, 0.1);
}

.warehousing-field .form-control::placeholder {
  color: #7f7e7d;
  font-size: 16px;
}

.warehousing-field select.form-control {
  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;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Show/hide animations */
#warehousing-info {
  transition: all 0.3s ease;
}

#warehousing-info.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

#warehousing-info.hide {
  display: none !important;
  opacity: 0;
  transform: translateY(-10px);
}

/* Additional styling for provider form */
.provider-form .form-section {
  margin-bottom: 40px;
}

.provider-form .form-section:last-child {
  margin-bottom: 0;
}

/* Enhanced file upload styling for provider form */
.provider-form .file-upload-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px dashed #ebeefa;
  transition: all 0.3s ease;
}

.provider-form .file-upload-area:hover {
  border-color: #e58f17;
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.provider-form .file-upload-area.dragover {
  border-color: #e58f17;
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
  transform: scale(1.02);
}

/* Mobile responsive for provider form */
@media screen and (max-width: 768px) {
  .services-radio-group {
    flex-direction: column;
    gap: 16px;
  }

  .warehousing-fields .row {
    margin: 0;
  }

  .warehousing-fields .col-md-6 {
    padding: 0;
    margin-bottom: 15px;
  }
}

.negotiate-modal .break-line {
  margin: 20px 0;
}

.negotiate-modal .modal-header {
  padding: 24px 24px 0;
}

.negotiate-modal .modal-title {
  font-weight: 500;
  font-size: 24px;
  color: var(--dark-blue);
  letter-spacing: 0.2px;
}

.negotiate-modal .modal-body {
  padding: 16px 24px 8px;
}

.negotiate-modal .modal-footer {
  padding: 16px 24px 24px;
  gap: 10px;
}

/* Subheader */
.negotiate-modal .meta {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.negotiate-modal .meta .label {
  color: var(--gray-text);
}

.negotiate-modal .meta .sep {
  margin: 0 8px;
  color: #c5ccd6;
}

.negotiate-modal .last-status {
  margin-top: 4px;
}

.last-status span {
  color: var(--black);
  font-weight: 500;
}

/* Cards */
.negotiate-modal .card-like {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(78, 115, 255, 0.08);
  margin-bottom: 50px;
}

/* Conversation card */
.negotiate-modal .customer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
  font-size: 0.9rem;
}

.negotiate-modal .icon img {
  width: 30px;
}

.coversation-header-titles h5 {
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0;
}

.coversation-header-titles h6 {
  font-size: 12px;
  font-weight: 400;
}

.negotiate-modal .message {
  margin: 10px 0 16px;
  color: var(--black);
  font-weight: 500;
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.negotiate-modal .quote {
  border-radius: 14px;
  padding: 12px;
}

.negotiate-modal .avatar {
  text-align: center;
}

.negotiate-modal .avatar img {
  width: 50px;
}

.negotiate-modal .q-title {
  font-weight: 600;
  color: var(--black);
}

.negotiate-modal .q-time {
  color: var(--gray-text);
  font-size: 0.85rem;
}

.negotiate-modal .q-lines {
  grid-column: 1 / -1;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 4px;
}

.negotiate-modal .q-lines li {
  color: var(--black);
  font-weight: 500;
}

.negotiate-modal .q-lines li span {
  color: var(--gray-text);
}

.negotiate-modal .q-lines .total span,
.negotiate-modal .q-lines .total {
  font-weight: 700;
}

.conversation {
  position: relative;
  margin-bottom: 40px;
}
/* Separator arrow */
.negotiate-modal .down-sep {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  background: red;
}

.negotiate-modal .down-sep span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f39c12;
  color: #fff;
  bottom: -20px;
  position: absolute;
  padding: 20px;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(243, 156, 18, 0.35);
}

/* Revise block */
.negotiate-modal .section-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.negotiate-modal .form-control {
  height: 48px;
  border-radius: 12px;
  border-color: #e9edf3;
}

.negotiate-modal .form-control:focus {
  border-color: #f39c12;
  box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.15);
}

/* Comment */
.negotiate-modal .comment-area {
  margin-top: 16px;
  margin-bottom: 30px;
}

.negotiate-modal .comment-area .form-control {
  height: auto;
  border-radius: 12px;
  resize: none;
}

/* Footer buttons */
.negotiate-footer-modal {
  display: flex;
  align-items: center;
  justify-content: space-evenly !important;
}

.negotiate-footer-modal button {
  width: 264px !important;
  height: 49px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px !important;
}

.negotiate-modal .action-cancel {
  border-width: 2px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background: #fff;
  border-radius: 12px;
  padding: 10px 22px;
}

.negotiate-modal .action-submit {
  background: var(--secondary-color);
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 10px 22px;
}

.summary-info {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}

.summary-content h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.summary-content h5 span {
  color: var(--black);
}

.break-line {
  border: 1px solid var(--gray-bg);
  margin: 40px 0;
}

.prices-breakdown-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breakdown-left h5 {
  color: var(--gray-text);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.breakdown-right {
  text-align: right;
  color: var(--black);
}

.breakdown-right h6 {
  margin-bottom: 20px !important;
  font-weight: 500;
}

.quotation-summary-buttons {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  left: 0;
  bottom: 0;
  width: 100%;
}

.quotation-summary-buttons button {
  width: 196px;
  height: 51px;
  border-radius: 15px;
  border: none;
  color: var(--white-text);
  font-size: 24px;
  font-weight: 500;
}

.button-wrapper {
  background: #f4f7fe; /* light grayish-white like your image */
  padding-top: 15px;
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/* shipment pages */
.shipment-table {
  overflow-x: auto;
  background: var(--white-text);
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shipment-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
}

.shipment-table thead tr {
  background-color: var(--white-text);
  color: var(--gray-text);
  font-weight: 500;
  font-size: 14px;
}

.shipment-table th,
.shipment-table td {
  padding: 10px;
  white-space: nowrap;
}

.shipment-table tbody tr {
  border-top: 1px solid #eee;
  color: var(--dark-blue);
  font-weight: 500;
}

.blue-text {
  color: var(--dark-blue);
  font-weight: bold;
}

.service-type {
  color: var(--dark-blue);
  font-size: 14px;
  font-weight: 500;
}

.status {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
}

.status.completed {
  background-color: #d8f3dc;
  color: #207868;
}

.status.failed {
  background-color: #fbd6d3;
  color: #c0392b;
}

.status.pending {
  background-color: var(--pending);
  color: var(--secondary-color);
}

.details-btn {
  background: url("../images/details-btn.png") no-repeat center;
  background-size: cover;
  width: 114px;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
  margin-right: -10px;
}

.download-all-btn {
  background: transparent;
  border: 1px solid #f49c0b;
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #f49c0b;
  cursor: pointer;
  transition: 0.2s ease;
}

.download-all-btn:hover {
  background: #f49c0b;
  color: #fff;
}

.shipment-table td.actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.submitted span {
  font-weight: 600;
  color: var(--black);
}

/* Modal Background */
.custom-modal {
  border-radius: 20px;
  padding: 20px 30px;
  background-color: #fff;
  border: none;
}

.recipient-info {
  margin: 30px 0 !important;
}
/* Modal Title */
.modal-title {
  font-weight: 600;
  color: #003f63;
  font-size: 18px;
  margin: auto;
  text-align: center;
  width: 100%;
}

/* Remove border and close button */
.modal-header {
  border-bottom: none;
  justify-content: center;
}

/* Description */
.recipient-info {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* Form fields */
.message-input,
.message-textarea {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #f9f9f9;
}

.message-input:focus,
.message-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 156, 11, 0.2);
  border-color: #f49c0b;
}

/* Footer buttons */
.modal-footer {
  border-top: none !important;
  margin-top: -15px !important;
}

/* Label */
label {
  font-weight: bold;
  color: #000;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

/* Input and Textarea (no shadows or outline) */
.custom-input,
.custom-textarea {
  width: 100%;
  border: 1px solid #eef0f5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  resize: none;
  transition: border-color 0.3s ease;
}

.custom-input:focus,
.custom-textarea:focus {
  border-color: #ccc;
  box-shadow: none;
  outline: none;
}

.custom-textarea {
  height: 160px;
}

.cancel-btn,
.send-btn {
  width: 264px;
  height: 49px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid #f49c0b;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: transparent;
  color: #f49c0b;
}

.cancel-btn:hover {
  background: #f49c0b;
  color: #fff;
}

.send-btn {
  background: #f49c0b;
  color: #fff;
  border: none;
}

.send-btn:hover {
  background: #db8a05;
}

.shipment-order {
  padding: 30px 40px;
  margin-bottom: 40px;
}

.download-section {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: center;
  text-align: center;
  margin: 30px auto;
}

.download-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 25%;
}

.download-item p {
  font-weight: 600;
  margin-bottom: 15px;
}

.download-icon {
  background-color: #e0861c;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
}

.scroll-top-btn {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-radius: 50%;
  border: 2px solid var(--light-background);
  background-color: var(--light-background);
  outline: none;
}

.scroll-top-btn .btn {
  outline: none;
  border: none;
  padding: 3px;
}

.btn i {
  background-color: #ffa500;
  color: var(--white-text);
  border-radius: 50%;
  padding: 10px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-circle i {
  font-size: 1.2rem;
}

.order-tracking-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.order-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.order-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-content-num {
  display: flex;
  flex-direction: column;
}

.order-id span {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: bold;
}

.order-id h5 {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.order-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  margin: 30px 0;
}

.order-info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-info span {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: bold;
}

.order-info p {
  font-size: 14px;
  color: var(--black);
  font-weight: 700;
  margin: 2px 0 0;
}

.tracking-timeline {
  position: relative;
}

/* The vertical line */
.timeline-line {
  position: absolute;
  top: 0;
  left: 23px; /* center behind icon */
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #e0861c 0%,
    #e0861c 66%,
    /* up to active step */ #ccc 66%,
    #ccc 100%
  );
  z-index: 0;
}

.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  z-index: 1;
}

/* Circles */
.circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 3px solid #ccc;
  position: relative;
  z-index: 2;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circle styles */
.with-check {
  background-color: #e0861c;
  border: none;
}

.with-check::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/icons/check-icon.png") no-repeat center center;
  background-size: contain;
}

.filled-orange {
  background-color: #e0861c;
  border: none;
}

.filled-gray {
  background-color: #ccc;
  border: none;
}

.empty-gray {
  background-color: white;
  border: 2px solid #ccc;
}

/* Text styles */
.step-details {
  margin-top: -2px;
}

.step-details h5 {
  font-size: 16px;
  color: var(--dark-blue);
  font-weight: bold;
}

.step-details span {
  font-size: 16px;
  color: var(--gray-text);
  font-weight: 500;
}

/* messages page */
.message-thread {
  margin: 0 auto;
}

.message-box {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.message-box.reply {
  background: url("../images/message-send.png") no-repeat center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.message-box.user {
  background-color: #fff;
  position: relative;
}

.sender {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sender img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.timestamp {
  font-size: 12px;
  color: var(--gray-text);
}

.message-box p {
  margin: 0;
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
}

.send-reply-btn {
  position: absolute;
  right: 5px;
  top: 35px;
  background: #e0861c;
  color: #fff;
  border: none;
  width: 114px;
  height: 44px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.center-arrow {
  text-align: center;
  margin-top: 10px;
  position: absolute;
  left: 50%;
}

.center-arrow a {
  color: var(--white-text);
}

.center-arrow img {
  width: 40px;
  height: 40px;
  background-color: #e0861c;
  border-radius: 50%;
  padding: 5px;
}

/* billing history page */
.payment-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.payment-summary-card {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 25px 15px;
  flex: 1;
  width: 255px;
}

.payment-summary-card small {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 5px;
}

.payment-summary-card .subtitle {
  font-size: 11px;
  color: var(--black);
  margin-bottom: 8px !important;
}

.payment-summary-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.unpaid-section {
  background: url("../images/billing-history.png") no-repeat center;
  background-size: auto;
  text-align: center;
  position: relative;
  padding: 40px 0 70px;
  border-radius: 15%;
  width: 100%;
  height: 220px;
}

.unpaid-section h3 {
  font-size: 24px;
  font-weight: 600;
}

.unpaid-content {
  padding: 20px 0;
}

.unpaid-buttons {
  margin-right: 60px !important;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 5px;
}

.unpaid-buttons button {
  width: 191px;
  height: 44px;
  border-radius: 20px;
  border: none;
}

.unpaid-buttons .first-btn {
  background: var(--white-text);
  border: 1px solid var(--secondary-color);
}

.unpaid-buttons .first-btn a {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
}

.unpaid-buttons .second-btn {
  background: var(--secondary-color);
}

.unpaid-buttons .second-btn a {
  color: var(--white-text);
  font-weight: bold;
  font-size: 16px;
}

.invoice-table-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 30px 0;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;
}

.invoice-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  padding: 12px 8px;
}

.invoice-table td {
  padding: 12px 8px;
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 500;
  white-space: nowrap;
}

.invoice-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.invoice-table .link {
  color: #0a1b3d;
}

.invoice-table .status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
}

.status.paid {
  background-color: #d1e7d5;
  color: var(--accepted-text);
}

.status.unpaid {
  background-color: #f8d7da;
  color: var(--reject);
}

.status.pending {
  background-color: #ffe7b3;
  color: var(--secondary-color);
}

.invoice-table .action-btn {
  background-color: #ec991d;
  border: none;
  width: 120px;
  display: flex;
  justify-content: center;
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease;
}

.pay-now {
  width: 83px;
  background-color: #ec991d;
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  height: 30px;
}

.view-details {
  width: 104px;
  background-color: #ec991d;
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  height: 30px;
}

.actions-cell {
  display: flex;
  justify-content: flex-end;
}

.invoice-table .action-btn:hover {
  background-color: #e28900;
}

.actions {
  display: flex;
  justify-content: flex-end;
}

.order-history-img {
  border: 1px solid var(--secondary-color);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* filter design */
.modal-filter {
  --bs-modal-width: 800px !important;
}

.custom-filter-modal {
  border-radius: 16px;
  padding: 20px;
  background-color: #fff;
}

.custom-filter-body {
  padding: 20px 24px 40px;
}

/* Filter Title */
.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-blue);
}

/* Filter Group Labels */
.filter-group {
  margin-bottom: 24px;
}

.filter-group h5 {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

/* Orange Toggle Buttons */
/* Group layout */
.filter-toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Each Toggle */
.custom-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 2px solid #e6ecf8;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background-color: #fff;
}

/* Active State */
.custom-toggle.active {
  border-color: #e6ecf8;
  background-color: #fff;
}

/* Label Text */
.custom-toggle .label-text {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.custom-toggle .check-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ced4da;
  background-image: none;
  transition: all 0.2s ease-in-out;
}

/*  CHECKED STATE for the main button shading */
.custom-radio-input:checked + .custom-toggle,
.custom-checkbox-input:checked + .custom-toggle {
  background-color: #fff3e0;
  border-color: #e59524;
}

/*  CHECKED STATE for the icon itself */
.custom-radio-input:checked + .custom-toggle .check-icon,
.custom-checkbox-input:checked + .custom-toggle .check-icon {
  background-color: #e59524;
  border-color: #e59524;
  background-image: url("../images/icons/check-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Custom Select */
.custom-select {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 8px 12px;
  min-width: 150px;
  box-shadow: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #e0861c;
  box-shadow: none;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-header .usage-title {
  margin-bottom: 0 !important;
}

.legend-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.legend-wrapper h5 {
  font-weight: 400;
  font-size: 10px;
}

.table-shipments {
  background: #fff;
  border-radius: 12px;
  padding-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}

.view-all-btn {
  background: #fff;
  color: #e0861c;
  border: 1px solid #e0861c;
  border-radius: 12px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.warehousing-dashboard h5 {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: bold;
}

.inbound-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.inbound-table thead {
  background-color: #f9fafb;
}

.inbound-table th,
.inbound-table td {
  padding: 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

.inbound-table th {
  color: var(--gray-text);
}

.inbound-table td {
  color: var(--dark-blue);
}

/* profile page */
.profile-section {
  background: #fff;
  border-radius: 16px;
  padding: 60px 80px;
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: 30px;
  box-shadow: 0px 0px 40px rgb(224, 225, 228);
}

.profile-section .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.edit-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.username {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 4px;
}

.user-email,
.user-phone {
  font-size: 16px;
  color: var(--gray-text);
  margin: 0;
}

.update-btn {
  background-color: #e0861c;
  color: white;
  width: 233px;
  height: 64px;
  border-radius: 12px;
  font-weight: bold;
  border: none;
  font-size: 24px;
}

.section-subtext {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 20px !important;
}

.profile-inputs {
  display: flex;
  flex-direction: column;
}

.custom-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-bg);
  font-size: 14px;
}

.profile-line {
  color: #bfbfc2;
  margin: 50px 0;
}

.security-settings {
  margin-top: 40px;
}

.profile-section .section-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.security-box {
  background: #fff;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.security-box h4 {
  font-weight: bold;
  font-size: 16px;
  color: var(--secondary-color);
}

.dropdown-btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-btn img {
  width: 35px;
  height: 35px;
}

.communication-preferences {
  margin-top: 40px;
}

.section-heading {
  font-weight: bold;
  font-size: 20px;
  color: #0c1c3c;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.custom-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e3eaf3;
  border-radius: 10px;
  background-color: #fff;
  font-size: 16px;
  color: #000;
  appearance: none;
  background-image: url("../images/icons/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.options-group {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.options-group span {
  color: var(--black);
  font-size: 16px;
  font-weight: 500 !important;
}

.communication-preferences .form-group h5,
.communication-preferences .form-group label {
  font-weight: bold;
  font-size: 16px;
  color: var(--black);
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  /* color: #0c1c3c; */
}

.custom-radio input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  position: relative;
}

.custom-radio input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #e0861c;
  border-radius: 50%;
}

.account-actions {
  margin-top: 40px;
}

.setting-user-box {
  border: 1px solid #e3eaf3;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: 180px;
}

.setting-user-box .setting-user-icon {
  width: 20px;
  margin-bottom: 10px;
}

.setting-user-title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}

.setting-user-text {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 0;
  width: 80%;
}

.setting-user-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: none; */
}

.orange-bg {
  background-color: var(--secondary-color);
}

.red-bg {
  background-color: var(--reject);
}

.export .setting-user-title {
  color: #e0861c;
}

.delete .setting-user-title {
  color: var(--reject);
}

.setting-user-box.delete {
  border-color: var(--reject);
}

.setting-user-box.export {
  border-color: #e0861c;
}

/* profile page non editable */
.profile-content {
  margin-top: 30px;
}

.profile-content h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--black);
  text-transform: capitalize;
}

.profile-content h5 {
  font-size: 16px;
  font-weight: normal;
  color: var(--black);
}

.profile-content-sub-details h5 {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.profile-content-sub-details h5 span {
  color: var(--gray-text);
}

.uploaded-documents h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.downloadable-pdfs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

.downloadable-pdfs h5 {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.downloadable-pdfs h5 span {
  color: var(--gray-text);
}

.downloadable-buttons .view-btn {
  width: 114px;
  height: 33px;
  border: 1px solid var(--secondary-color);
  background: transparent;
  border-radius: 10px;
  color: var(--secondary-color);
  margin-right: 10px;
}

.downloadable-buttons .download-pdf {
  width: 129px;
  height: 33px;
  border: 1px solid var(--secondary-color);
  background: transparent;
  border-radius: 10px;
  color: var(--secondary-color);
}

.downloadable-buttons .download-pdf a {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 500;
}

.downloadable-buttons .download-pdf a img {
  margin-right: 10px;
}

/* admin pages */
.notif-ticker {
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 30px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 40px,
    #000 calc(100% - 40px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 40px,
    #000 calc(100% - 40px),
    transparent 100%
  );
}

.ticker-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: ticker-left 28s linear infinite;
  will-change: transform;
  padding: 0 40px; /* give space under faded edges */
}

.notif-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.item {
  white-space: nowrap;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 22px;
  border-right: 1px solid var(--sep);
}

.item:last-child {
  border-right: none;
}

/* The loop: we duplicated content, so translate -50% = halfway */
@keyframes ticker-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* Upload */
.mini-title {
  font-size: 13px;
  font-weight: 700;
  color: #2a3142;
  margin: 0 0 8px;
}

.upload-section {
  margin-bottom: 22px;
}

.upload-box {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.upload-icon {
  margin-bottom: 10px;
}

.upload-text {
  margin: 0 16px 8px;
  color: #6c7587;
  font-size: 14px;
}

.browse-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.browse-link:hover {
  text-decoration: underline;
}

/* hidden native input covering the box (click anywhere) */
.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Roles & Permissions */
.section-title {
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}

.roles-card {
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 14px 20px;
}

.roles-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.roles-table thead th {
  color: #9aa3b2;
  font-weight: 600;
  padding: 10px 14px;
  text-align: start;
  white-space: nowrap;
}

.roles-table thead .first-col {
  text-align: left;
  width: 180px;
}

.roles-table tbody td {
  padding: 14px;
  border-top: 1px solid var(--line);
  text-align: start;
  vertical-align: middle;
}

.roles-table tbody tr:first-child td {
  border-top: 1px solid var(--line);
}

.role-name {
  font-weight: 700;
  color: #1d2b50;
  text-align: left !important;
}

/* ticks & crosses */
.tick,
.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 20px;
}

.tick {
  border: 3px solid var(--accepted-text);
  color: var(--accept);
  position: relative;
}

.cross {
  color: var(--red);
  border-radius: 50%;
  position: relative;
}

.cross i {
  font-size: 22px;
}

.cross::before {
  transform: rotate(45deg);
}

.cross::after {
  transform: rotate(-45deg);
}

.roles-card .profile-line {
  margin: 5px;
}
/* button */
.roles-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.edit-role-btn {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(224, 134, 28, 0.18);
}

.edit-role-btn:active {
  transform: translateY(1px);
}

.actions .restore-btn {
  color: #991c1c;
  border: 1px solid #991c1c;
  width: 104px;
  height: 30px;
  border-radius: 20px;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
}

.section-header,
.backup-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-header h2 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 24px;
}

.section-header label {
  color: var(--gray-text);
  font-size: 14px;
  font-weight: 500;
}

.section-header select {
  border: none;
  outline: none;
}

.backup-content {
  width: 70%;
  margin-top: 30px;
}

.backup-content h5 {
  color: var(--black);
  font-weight: bold;
  font-size: 16px;
}

/* service provide pages */
.quotation-valid {
  width: 60%;
}

/* service provider dashboard */
.usage-titles-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.paymentView {
  color: var(--gray-text);
  font-size: 14px;
}

.custom-dropdown.day {
  padding-right: 0;
}

.notif-ticker {
  margin: 30px 0;
}

.notification-dashboard {
  margin: 40px 0;
  border-radius: 15px;
  overflow: hidden;
}

.notification-dash-content {
  background: var(--card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.noti-dash-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.noti-dash-content h5 {
  margin-bottom: 0;
  color: var(--dark-blue);
  font-weight: bold;
  font-size: 16px;
}

.notification-button-dash {
  width: 121px;
  height: 31px;
  background: var(--secondary-color);
  border-radius: 10px;
  color: var(--white-text);
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
}

/* Shipper Registration Form Styles */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.file-upload-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
  display: block;
}

.loading-spinner {
  display: none;
  margin-left: 10px;
}

.validation-summary {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.validation-summary:empty {
  display: none;
}

.success-message {
  background-color: #d1edff;
  border: 1px solid #b8daff;
  color: #0c5460;
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.field-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-success {
  border-color: #198754 !important;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25) !important;
}

.file-upload-area {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px dashed #ebeefa;
  border-radius: 0.375rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: #e58f17;
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.file-upload-area.dragover {
  border-color: #e58f17;
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.file-upload-area.has-file {
  border-color: #198754;
  background-color: #d1edff;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

.file-upload-content {
  pointer-events: none;
}

.file-upload-text {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.25rem;
}

.file-upload-subtext {
  font-size: 0.875rem;
  color: #6c757d;
}

.file-preview {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.file-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
}

.file-preview-item:last-child {
  margin-bottom: 0;
}

.file-preview-name {
  color: #495057;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.file-preview-size {
  color: #6c757d;
  font-size: 0.75rem;
}

.file-preview-remove {
  color: #dc3545;
  cursor: pointer;
  border: 1px solid #dc3545;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: transparent;
  transition: all 0.2s ease;
}

.file-preview-remove:hover {
  background-color: #dc3545;
  color: #ffffff;
}

.progress-container {
  display: none;
  margin-top: 0.5rem;
}

.progress {
  height: 0.5rem;
}

.form-section {
  margin-bottom: 2rem;
}

.required-indicator {
  color: #dc3545;
}

.optional {
  color: #6c757d;
  font-weight: normal;
}

.character-count {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: right;
  margin-top: 0.25rem;
}

.character-count.warning {
  color: #fd7e14;
}

.character-count.danger {
  color: #dc3545;
}

.location-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .location-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.btn-submit {
  position: relative;
  min-height: 48px;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}

.toast {
  min-width: 300px;
}

.accessibility-skip {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.accessibility-skip:focus {
  top: 6px;
}

/* Choices.js Custom Styling */
.choices {
  margin-bottom: 0;
  font-size: 14px;
}

.choices__inner {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  min-height: 45px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.choices__inner:hover {
  border-color: var(--secondary-color);
}

.choices__inner:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(229, 143, 23, 0.2);
}

.choices__list--multiple .choices__item {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  margin: 2px;
}

.choices__list--multiple .choices__item--selectable {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.choices__list--multiple .choices__item--selectable:hover {
  background-color: #d17a0e;
  border-color: #d17a0e;
}

.choices__button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  margin-left: 4px;
  padding: 0;
  width: 16px;
  height: 16px;
}

.choices__button:hover {
  color: #fff;
  opacity: 0.8;
}

.choices__list--dropdown {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.choices__item--choice {
  color: #333;
  font-size: 14px;
  padding: 8px 12px;
  transition: background-color 0.2s ease;
}

.choices__item--choice:hover {
  background-color: #f8f9fa;
  color: var(--secondary-color);
}

.choices__item--choice.is-highlighted {
  background-color: var(--secondary-color);
  color: #fff;
}

.choices__placeholder {
  color: #999;
  font-style: italic;
}

.choices__input {
  background: none;
  border: none;
  color: #333;
  font-size: 14px;
  padding: 0;
}

.choices__input:focus {
  outline: none;
}

.choices.is-focused .choices__inner {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(229, 143, 23, 0.2);
}

.choices.is-disabled .choices__inner {
  background-color: #f8f9fa;
  border-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.choices.is-disabled .choices__input {
  background-color: #f8f9fa;
  cursor: not-allowed;
}

/* Error state styling */
.choices.error .choices__inner {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Success state styling */
.choices.success .choices__inner {
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

/*styling for the nonEditable Profile Page*/

.info-block {
  margin-bottom: 28px;
}

.info-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.info-value {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.sub-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.sub-item:last-child {
  margin-bottom: 0;
}

.sub-label {
  font-weight: 400;
  color: #6b7280;
}

.sub-value {
  font-weight: 700;
  color: #1a202c;
}

.info-card .section-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

.services-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.services-list span {
  font-size: 16px;
  font-weight: 500;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkmark-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.section-divider {
  border: 0;
  border-top: 5px solid #bfbfc2;
  margin: 32px 0;
}

/* --- Styles for the Uploaded Documents Section --- */

.document-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

.document-item:last-child {
  border-bottom: none;
}

.document-item span {
  color: #374151;
  font-weight: 500;
}

.document-actions {
  display: flex;
  gap: 12px;
}

.document-actions .view-btn,
.document-actions .download-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  width: auto;
  height: auto;
}

/* Hover effect to make the buttons interactive */
.document-actions .view-btn:hover,
.document-actions .download-btn:hover {
  background-color: #fffbeb;
  color: #d97706;
}

/* A container to align the icon and filename */
.document-filename {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Styles the icon image itself */
.document-icon {
  width: 24px;
  height: 24px;
}

html,
body,
.main {
  height: 100%;
}

body.signup-page,
.signup-page {
  background-color: #f9fafc;
}

.signup-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- ADDED STYLE FOR THE 'BACK TO PROFILE' LINK --- */
.back-link {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #e59524;
  text-decoration: none;
  font-size: 1rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* MyRfqsDetails Page Styles */
.rfqs-table-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  overflow: hidden;
}

.table-container {
  overflow-x: auto;
}

.rfqs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rfqs-table thead {
  background-color: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
}

.rfqs-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 1px solid #dee2e6;
}

.rfqs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f3f4;
  vertical-align: middle;
  color: #0d254c;
}

.rfqs-table tbody tr:hover {
  background-color: #f8f9fa;
}

.rfq-id {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.35%;
  color: #0d254c;
}

.date-service-text {
  font-family: Montserrat;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.35%;
  color: #0d254c;
}

.status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  border: none;
}

.status-pending {
  background-color: #e8ecf5;
  color: #0d254c;
}

.status-negotiating {
  background-color: #fff2e0;
  color: #e58f17;
}

.status-accepted {
  background-color: #e8f5e9;
  color: #1e7b34;
}

.status-rejected {
  background-color: #feecec;
  color: #d92d20;
}

.status-expired {
  background-color: #f4f4f4;
  color: #6c757d;
}

.view-details-btn {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.view-details-btn:hover {
  background-color: #ea580c;
}

.text-center {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 40px 20px;
}

.custom-radio-input,
.custom-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
  pointer-events: none;
}

/*To remove the border around the search icon*/
.search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
}

/* -----------Pagination Styling------------ */

.pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 1rem 0; /* Spacing above/below */
}

.pagination-list {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-radius: 8px; /* Rounded corners for the group */
  overflow: hidden; /* Helps contain the rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-item {
  /* No styles needed here */
}

.page-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #4b5563; /* Default text color */
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #e5e7eb; /* Light border */
  margin-left: -1px; /* Overlap borders */
  transition: background-color 0.2s, color 0.2s;
  font-weight: 500;
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
}

.page-link:hover {
  background-color: #f9fafb; /* Slight hover effect */
  color: #000;
}

.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  /* Matches your 'View' button */
  background-color: #ff6600;
  border-color: #ff6600;
}

.page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
  background-color: #f3f4f6; /* Disabled background */
}

.page-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.rejected-text {
  color: #d92d20;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 20px;
}

.text-center-quotation-details {
  text-align: center;
}

.text-center-quotation-details-prices {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 15px 20px;
}

.title-and-date-quotation-card {
  display: flex;
  flex-direction: column;
}
