/* --- Performance Metric Card (New Design) --- */
.performance-metric-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 140px;
    transition: all 0.3s ease-in-out;
}

.performance-metric-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.performance-metric-card .metric-header {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
}

.performance-metric-card .metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.performance-metric-card .metric-growth {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.performance-metric-card .metric-growth.positive {
    color: #16a34a;
}

.performance-metric-card .metric-growth.negative {
    color: #dc2626;
}

.performance-metric-card .metric-growth i {
    margin-right: 6px;
    font-size: 16px;
}
.metrics-performance .col-lg-3
{
  margin:0px;
  padding-right:0px;
}
/* --- Financial Summary Cards (Updated Structure) --- */
.financial-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.summary-card {
    background-color: #0C1120;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-amount {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.summary-label {
    font-size: 14px;
    color: #E5E7EB;
}

.summary-growth {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}

.summary-growth.positive {
    color: #22C55E;
}

.summary-icon {
    background-color: #E5E7EB;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #1E293B;
}
/* ==========================
   DASHBOARD ENHANCED STYLING
   ========================== */

/* Global Card Styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Profile Card */
/* Updated Profile Card Styles */
.profile-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.profile-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.profile-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.edit-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.edit-btn:hover {
    background: #e5e7eb;
}

.profile-avatar {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

.profile-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile-info {
    margin-bottom: 18px;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #111827;
}

.verified-icon {
    color: #16a34a;
    font-size: 18px;
}

.profile-username {
    font-size: 14px;
    color: #6b7280;
}

.profile-details {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.profile-box {
    flex: 1;
    min-width: 120px;
    background: #fafafa;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.profile-box:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.profile-box .label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.profile-box .value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Total Earnings Card */
.earnings-card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    background-color: #fff;
    position: relative;
    padding-bottom: 20px;
}

.earnings-icon {
    width: 50px;
    height: 50px;
    background: #f5f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4f46e5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.earnings-growth {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #22c55e;
    font-weight: 600;
    font-size: 14px;
}

.earnings-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
    margin-bottom: 2px;
    text-align: left;
}

.earnings-amount {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    text-align: left;
}

.earnings-chart {
    width: 100%;
    height: 80px;
    margin-top:100px;
}

/* Monthly Transactions */
.transaction-card .transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.transaction-card .payment-icon {
    width: 24px;
    margin-right: 10px;
}

.transaction-card .transaction-method {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

.transaction-card .transaction-amount.positive {
    color: #00C48C;
    font-weight: 600;
}

.show-more-link {
    font-weight: 600;
    font-size: 12px;
    color: #FF6F61;
}
.show-more-link:hover {
    color: #FF6F61;
    cursor: pointer;
}
/* Recent Activities */
.activities-card .activity-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.activities-card .activity-icon {
    background-color: #F5F5F5;
    padding: 8px;
    border-radius: 8px;
    color: #5D3FD3;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.activities-card .activity-content {
    flex: 1;
}

.activities-card .activity-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.activities-card .activity-date {
    font-size: 12px;
    color: #999;
}

.activities-card .activity-dot {
    width: 8px;
    height: 8px;
    background-color: #ff4b5c;
    border-radius: 50%;
    margin-left: 8px;
}

/* Pending Items Section */
.pending-items-section {
    padding: 20px;
    padding-left:0px;

}
.pending-icon  .payment-icon {
    width: 20px;
}
.pending-item-card {
    display: flex;
    align-items: center;
    background-color: #F9F9F9;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pending-item-card:hover {
    background-color: #f0f0f0;
}

.pending-item-icon {
    background-color: #eef3ff;
    padding: 12px;
    border-radius: 12px;
    margin-right: 12px;
    color: #5D3FD3;
    font-size: 20px;
}

.pending-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.pending-item-count {
    font-size: 16px;
    font-weight: bold;
    color: #5D3FD3;
}

/* Financial Summary Dark Cards */
.financial-summary-card {
    padding: 18px;
    border-radius: 12px;
    background-color: #0B0F19;
    color: #fff;
    box-shadow: none;
}

.financial-summary-card .financial-label {
    font-size: 14px;
    opacity: 0.7;
}

.financial-summary-card .financial-amount {
    font-size: 20px;
    font-weight: bold;
}

/* Performance Metrics */
.performance-metrics-card {
    padding: 18px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.performance-metrics-card .metrics-label {
    font-size: 14px;
    color: #888;
}

.performance-metrics-card .metrics-value {
    font-size: 22px;
    font-weight: bold;
    color: #1A1A1A;
}

.performance-metrics-card .metrics-trend.positive {
    color: #00C48C;
    font-weight: 600;
}

.performance-metrics-card .metrics-trend.negative {
    color: #ff4b5c;
    font-weight: 600;
}
body{
    background-color: #fff;
}

input{
    border-width: unset;
}

.table-dark{
    --bs-table-bg: #ffffff;
    color:#000000;
}
.table-dark.table thead th {
    position: sticky;
    top: 0;
    background: #F1F1F1;
    z-index: 2;
    color:#000000;
}

.menu .app-brand.demo {
  height: 40px;
  margin-top: 10px;
}

.app-brand-text.demo {
  text-transform: none;
}

.card .card-header-section{
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.card .card-header-section .card-header,
.card .card-header-section ,
.card .card-header-section .btn-primary{
    box-shadow: unset;
    background-color: unset;
    color: #000000;
    border: unset;
}

.btn-outline-primary{


    background-color: #3872FA !important;
    color: #fff;
}
.btn-outline-primary:hover{

    color: #000000;
}

.card .card-header-section .card-header--button{
  display: flex;
  align-items: center;
  margin: 8px 16px;
}

.text-transform--capitalize{
  text-transform: capitalize;
}

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

.text-white{
  color: white;
}

.hide{
  display: none !important;
}

.ml-4{
    margin-left: 4px;
}
.ml-8{
    margin-left: 8px;
}
.ml-16{
    margin-left: 16px;
}
.ml-24{
    margin-left: 24px;
}
.ml-32{
    margin-left: 32px;
}

.mr-4{
    margin-right: 4px;
}
.mr-8{
    margin-right: 8px;
}
.mr-16{
    margin-right: 16px;
}
.mr-24{
    margin-right: 24px;
}
.mr-32{
    margin-right: 32px;
}

.mb-8{
    margin-bottom: 8px;
}
.mb-16{
    margin-bottom: 16px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-32{
    margin-bottom: 32px;
}
.mb-40{
    margin-bottom: 40px;
}

.mt-8{
    margin-top: 8px;
}
.mt-16{
    margin-top: 16px;
}
.mt-24{
    margin-top: 24px;
}
.mt-32{
    margin-top: 32px;
}
.mt-36{
    margin-top: 36px;
}
.mt-40{
    margin-top: 40px;
}

.no-color{
    color: unset;
}


.iti{
  flex: 1;
}

.progress {
  display: none;
  margin-top: 10px;
}

.image-preview {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.preview-image {
  max-width: 100%;
  max-height: 150px;
  object-fit: cover;
}

.bg-white{
  background-color: #FFFFFF;
}

.text-white{
  color: #FFFFFF;
}
.text-grey{
  color: #b0b7c3;
}
.text-grey-2{
  color: #939393;
}
.text-grey-3{
  color: #949494;
}
.text-grey-4{
  color: #989898;
}
.text-red{
  color: #f1475f;
}
.text-red-2{
  color: #B63131;
}
.text-yellow{
  color: #eaad5d;
}
.text-black{
  color: #000000;
}
.text-grey-white{
  color: #EEE3DB;
}

.text-deco-underline{
  text-decoration: underline;
}
.text-transform--capitalize{
  text-transform: capitalize;
}

.font-16-normal{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.font-16-bold{
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.font-20-bold{
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.font-24-bold{
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.font-size-8{
  font-size: 0.5rem;
}
.font-size-16{
  font-size: 1rem;
}
.font-size-20{
  font-size: 1.25rem;
}
.font-size-24{
  font-size: 1.5rem;
}
.font-size-32{
  font-size: 2rem;
}

.font-weight-400{
  font-weight: 400;
}
.font-weight-500{
  font-weight: 500;
}
.font-weight-600{
  font-weight: 600;
}
.font-weight-700{
  font-weight: 700;
}

.flex{
  display: flex;
}
.flex.column{
  flex-direction: column;
}
.flex.justify-center{
  justify-content: center;
}
.flex.justify-space-between{
  justify-content: space-between;
}
.flex.justify-flex-end{
  justify-content: flex-end;
}
.flex.align-center,
.flex.align-items-center{
  align-items: center;
}
.flex.flex-fill{
  flex: 1;
}

.mr-4{
    margin-right: 4px;
}
.mr-8{
  margin-right: 8px;
}
.mr-16{
  margin-right: 16px;
}
.mr-24{
  margin-right: 24px;
}
.mr-32{
  margin-right: 32px;
}

.mb-8{
  margin-bottom: 8px;
}
.mb-16{
  margin-bottom: 16px;
}
.mb-24{
  margin-bottom: 24px;
}
.mb-32{
  margin-bottom: 32px;
}
.mb-40{
  margin-bottom: 40px;
}

.mt-8{
    margin-top: 8px;
}
.mt-16{
    margin-top: 16px;
}
.mt-24{
    margin-top: 24px;
}
.mt-32{
    margin-top: 32px;
}
.mt-40{
    margin-top: 40px;
}
.hidden,
.hide{
  display: none !important;
}

.visibility-hidden{
    visibility: hidden;
}

.layout-menu-fixed body:not(.modal-open) .layout-content-navbar .layout-navbar,
.layout-menu-fixed-offcanvas body:not(.modal-open) .layout-content-navbar .layout-navbar,
.layout-navbar-fixed body:not(.modal-open) .layout-content-navbar .layout-navbar {
    z-index: 1001;
    position: sticky;
    top: 0;
}

.shipping-address-container{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.shipping-address-container.completed{
  background: #F7F7F7;
  border: 1px solid #D5D5D5;
}

.shipping-address-container .shipping-address-header{
    border-bottom: 1px solid #000000;
    padding: 16px;
}

.shipping-address-container.completed .shipping-address-header{
  border-bottom: 1px solid #D5D5D5;
}

.shipping-address-container .shipping-address-body{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 16px;
}

.shipping-address-container .shipping-address-body .edit-profile-container {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-order-container .product-order-label{
    padding: 0px 0px 8px 8px;
}

.product-order-container .product-order-panel{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.product-order-panel .panel-child{
    padding: 16px;
}

.product-order-panel .panel-child:not(:last-child){
  border-bottom: 1px solid #000000;
}

.product-order-panel .seller-panel{
    display: flex;
    align-items: center;
}

.product-order-panel .product-order-body{
    padding: 16px 32px;
}

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

.product-order-table thead {
    border-radius: 50px;
    background-color: lightgrey;
}

.product-order-table thead th{
    padding: 8px 16px;
    text-align: center;
}

.product-order-table thead th:first-child{
  border-radius: 50px 0 0 50px;
}

.product-order-table thead th:last-child{
  border-radius: 0 50px 50px 0;
}

.product-order-table tbody:before {
    content: "@";
    display: block;
    line-height: 16px;
    text-indent: -99999px;
}

.product-order-table tbody td{
    position: relative;
    vertical-align: top;
}

.product-order-table tbody td:not(:first-child){
    text-align: center;
}

.product-order-table tbody .first-column{
    width: 45%;
}

.product-order-table td:last-child {
    position: relative;
}

.product-order-table td:last-child .btnRemoveItem {
    position: absolute;
    bottom: 0;
    right: 0;
}

.product-order-table td:last-child .btnRemoveItem i {
    font-size: 24px;
    color: #e74c3c;
}

.product-order-table--name-panel{
    display: flex;
}

.product-order-table--mobile-panel .product-item .product-image-container,
.product-order-table .product-image-container{
    width: 240px;
    height: 240px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    margin-right: 16px;
    min-width: 240px;
}

.product-order-table--mobile-panel .product-item .product-image,
.product-order-table .product-image-container .product-image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

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

.color-panel .color-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-right: 8px;
}

.color-panel .color-name {
    display: inline-block;
    font-size: 18px;
}

.product-order-panel .remark-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.product-order-panel .remark-container .remark-edit-container{
  position: absolute;
  right: 16px;
}

.product-order-panel .total-amount-container{
  display: flex;
  justify-content: space-between;
}

.order-tracking-container{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.order-tracking-container .order-tracking-header{
    border-bottom: 1px solid #000000;
    padding: 16px;
}

.order-tracking-container .order-tracking-body{
    padding: 80px;
}

.step-indicator {
    display: flex;
    align-items: center;
}

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

.step-indicator .step-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    font-size: 10px;
    text-align: center;
    color: green;
    border: 7px solid #939393;
    position: relative;
    line-height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active .step-icon {
    background: #FFFFFF;
    border: 7px solid #000000;
}

.step p {
    text-align: center;
    position: absolute;
    color: #858585;
    font-size: 14px;
    font-weight: bold;
}

.step .top-label{
    top: -48px;
    width: 128px;
}

.step .bottom-label{
    bottom: -100%;
    width: 150px;
}

.step.active p {
    color: #000000;
}

.step.active p.bottom-label{
    color: #858585;
}

.step.step2 p,
.step.step3 p {
    left: 50%;
    transform: translateX(-50%);
}

.indicator-line {
    width: 100%;
    height: 8px;
    background: #c2c2c2;
    flex: 1;
}

.indicator-line.active {
    background: #000000;
}

.order-summary-container{
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.order-summary-container .order-detail-container,
.order-summary-container .order-payment-container{
    display: flex;
    flex-direction: column;
}

.order-summary-container .order-detail-container .container-label,
.order-summary-container .order-payment-container .container-label{
  font-size: 20px;
  font-weight: 500;
  padding: 0px 0px 8px 8px;
}

.order-summary-container .order-detail-container{
    flex: 1;
}

.order-summary-container .order-payment-container{
    flex: 2;
}

.order-detail-container .order-detail-panel,
.order-payment-container .order-payment-panel{
    display: flex;
    flex-direction: column;
    align-self: flex-start;

    border: 1px solid #D5D5D5;
    background: #F7F7F7;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
}

.order-detail-container .order-detail-panel .order-detail-panel--child,
.order-payment-container .order-payment-panel--header,
.order-payment-container .order-payment-panel--body .order-payment-panel--body--child,
.order-payment-container .order-payment-panel--footer{
    display: flex;
    justify-content: space-between;
}

.order-detail-container .order-detail-panel .order-detail-panel--child:not(:last-child),
.order-payment-container .order-payment-panel--body .order-payment-panel--body--child:not(:last-child){
    margin-bottom: 16px;
}

.order-payment-container .order-payment-panel--header,
.order-payment-container .order-payment-panel--body{
    padding-bottom: 16px;
    border-bottom: 1px solid #D1D1D1;
    margin-bottom: 16px;
}

.warranty-card{
    display: flex;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.warranty-card .warranty-card--image-panel{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 16px;
    width: 160px;
    height: 160px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.warranty-card .warranty-card--image-panel img{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warranty-card--detail-panel{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.warranty-card--detail-panel .warranty-status-panel{
    display: flex;
    gap: 8px;
}

.warranty-card--detail-panel .warranty-status-panel .status-panel-bg {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
    padding: 8px 16px;
    font-weight: 600;
}

.warranty-card--detail-panel .warranty-status-panel .status-panel-bg.registered-warranty {
    color: #00a333;
    background-color: #dfffe1;
}

.warranty-card--detail-panel .warranty-status-panel .status-panel-bg.in-progress-warranty {
    color: #ffa64e;
    background-color: #fffae3;
}

.warranty-card--detail-panel .warranty-status-panel .status-panel-bg.expired-warranty{
    color: #f84630;
    background-color: #ffe1e1;
}

.chat-container {
    display: flex;
    flex-grow: 1;
    width: 100%;
    max-height: 800px;
    height: 95vh;
    background: #FFFFFF;
    border-radius: 10px;
}

.side-bar {
    position: relative;
    background: #FFFFFF;
    border-radius: 10px 0 0 10px;
    flex-basis: 480px;
    border-right: 1px solid #e6e6e6;
}

.chat-window {
    border-radius: 0 10px 10px 0;
    flex-grow: 1;
}

.side-bar .side-bar--search-panel {
    width: 100%;
    height: 96px;
    padding: 32px;

    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #FFFFFF;
    border-bottom: 1px solid #e6e6e6;
}

.side-bar .side-bar--search-panel .search-input {
    float: left;
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #e6e6e6;
    background-color: #eceff1;
    border-radius: 24px;
}

.side-bar--business-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    max-height: calc(100% - 96px);
    scrollbar-width: thin;
}

.chat-panel--chat-area::-webkit-scrollbar,
.side-bar--business-list::-webkit-scrollbar {
    width: 6px;
}

.chat-panel--chat-area::-webkit-scrollbar-thumb,
.side-bar--business-list::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    border-radius: 4px;
}

.side-bar--business-list--business {
    position: relative;
    width: 100%;
    padding: 16px;
    cursor: pointer;
    background-color: #FFFFFF;

    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
}

.side-bar--business-list--business.active,
.side-bar--business-list--business:hover {
    border: 0;
    background-color: #00b0ff;
    width: 100%;
}

.side-bar--business-list--business img {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-panel{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    /*border-top: 1px solid #e6e6e6;*/
    /*border-right: 1px solid #e6e6e6;*/
    /*border-bottom: 1px solid #e6e6e6;*/
    border: 1px solid #e6e6e6;
    overflow: hidden;
}

.chat-panel .chat-panel--top {
    width: 100%;
    height: 60px;
    padding: 8px;
    background-color: #f1475f;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.chat-panel--chat-area {
    overflow-y: auto;
    padding: 16px;
    flex-grow: 1;
    overflow-anchor: none;
    overflow-y: auto;
    max-height: calc(100% - 120px);
    scrollbar-width: thin;
    background-color: #fafafa;
}

.message-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.message.my-message{
    justify-content: flex-end;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.other-message .avatar{
    margin-right: 8px;
}

.my-message .avatar{
    margin-left: 8px;
}

.message-content {
    background-color: #e6e6e6;
    border-radius: 10px;
    padding: 8px;
    min-width: 70%;
    max-width: 70%;
    position: relative;
}

.my-message .message-content {
    align-self: flex-end;
    background-color: #00b0ff;
    color: white;
}

.attachment-button,
.send-button {
    display: flex;
    align-items: center;
    background-color: #4caf50;
    color: #000000;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 8px;
}

.message-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin-right: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 40px;
    max-height: 120px;
    resize: none;
    box-sizing: border-box;
}

.chat-panel--chat-input {
    display: flex;
    flex-direction: column;
    padding: 8px;
    background-color: #E6FFE6;
    border-top: 1px solid #e6e6e6;
    min-height: 60px;
    width: 100%;
}

.chat-input{
    display: flex;
    height: 100%;
    width: 100%;
    max-height: 120px;
}

.popup-menu {
    display: none;
    /*display: flex;*/
    position: absolute;
    right: 16px;
    bottom: -16px;
    z-index: 1;
    border: none;
    background: none;
    gap: 8px;
}

.popup-menu button {
    background-color: #f9f9f9;
    padding: 0px 4px;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    border-radius: 50px;
    gap: 16px;
    padding: 8px 12px;
    border: 1px solid #000000;
}

.popup-menu button:hover {
    background-color: #ddd;
    border-radius: 50px;
}

.my-message:hover .popup-menu{
    display: flex;
}

.media-container--images{
    display: flex;
    width: 100%;
    height: 120px;
    gap: 16px;
    margin-top: 8px;
    justify-content: flex-end;
}

.media-container--images .image-item{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 20%;
    height: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.media-container--images .image-item img{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-container--images .image-item.extra-images {
    position: relative;
    background-color: #333; /* Dark background color */
    color: #fff; /* Text color for the label */
    text-align: center;
}

.media-container--images .extra-images .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.media-container--images .extra-images .dark-overlay.web-hidden{
    display: none;
}

.media-container--images .extra-images .dark-overlay p {
    font-size: 24px; /* Adjust the font size as needed */
    font-weight: bold;
}

.media-container--documents{
    display: flex;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 16px;
}

.media-container--documents .document-item{
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    padding: 16px;
    color: #000000;
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    gap: 8px;
}

.document-item .document-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

.conversation-start{
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
}

.conversation-start span {
    font-size: 14px;
    display: inline-block;
    color: #000000;
    border-radius: 50px;
    border: 1px solid #000000;
    padding: 8px 16px;
}

/* CSS where restrict image to single upload */
.message.single-media .message-content{
    min-width: unset;
}
.message.single-media .media-container--images .image-item{
    width: unset;
}
.message.single-media .media-container--documents .document-item{
    flex: unset;
    max-width: unset;
}
.message.single-media .media-container--images,
.message.single-media .media-container--documents{
    margin-top: 0px;
}
/* CSS where restrict image to single upload ended */

.imageUploadTable td:first-child {
    width: 30%;
}

.uploaded-image-gallery{
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.uploaded-image-gallery .image-item{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
    height: 60px;
    margin-top: 16px;
    position: relative;
    outline: none;
}

.uploaded-image-gallery .image-item img{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uploaded-document-gallery{
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.uploaded-document-gallery .document-item{
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    padding: 8px;
    color: #000000;
    gap: 8px;
    flex: 0 0 auto;
    margin-top: 8px;
    position: relative;
    outline: none;
}

.image-item progress{
    width: 80%;
    position: absolute;
    left: 8%;
    top: 50%;
    z-index: 1;
    height: 16px;
    padding: 5px;
    background: white;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: #FFD200;
}

/* IE10 */
.image-item progress {
    color: #FFD200;
}

/* Firefox */
.image-item progress::-moz-progress-bar {
    background: #FFFFFF;
}

/* Chrome */
.image-item progress::-webkit-progress-value {
    background: #FFD200;
}

/* Polyfill */
.image-item progress[aria-valuenow]:before {
    background: #FFD200;
}

.image-item progress {
    -webkit-appearance: none;
    appearance: none;
}
.image-item progress::-webkit-progress-bar {
    background-color: #FFFFFF;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
.image-item progress[value] {
    -webkit-appearance: none;
    appearance: none;
}
.image-item progress[value]::-webkit-progress-value {
    border-radius: 2px;
    background-size: 35px 20px, 100% 100%, 100% 100%;
}

.remove-img--btn{
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFD200;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    line-height: 23px;
    color: #fff;
    font-size: 12px;
    color: #000000;
    z-index: 5;
    cursor: pointer;
}

.remove-img--btn i {
    margin-top: -0.2em;
    margin-bottom: 0.8em;
    margin-left: 8px;
}

.remove-img--btn i:before {
    background-size: 10px;
    width: 10px;
    height: 10px;
}

.remove-img--btn:focus,
.remove-img--btn:active,
.remove-img--btn:hover {
    color: #fff;
    text-decoration: none
}

.document-item .remove-img--btn {
    top: 8px;
    right: -12px;
}

.chat-image-container{
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-image-container img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.layout-menu-fixed body:not(.modal-open) .layout-content-navbar .layout-menu,
.layout-menu-fixed-offcanvas body:not(.modal-open) .layout-content-navbar .layout-menu,
.layout-navbar-fixed body:not(.modal-open) .layout-content-navbar .layout-menu{
    z-index: 1100;
}

.file-upload-button{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    padding: 16px;
    border: 1px solid #000000;
    border-radius: 50px;
    cursor: pointer;
}

.file-upload-button i{
    font-size: 32px;
}

.notification-container{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 40px;
    width: 100%;
    height: 100%;
}

.notification-list-container {
    overflow-y: auto;
    max-height: 480px;
    margin-bottom: 16px;
    padding: 8px 16px 8px 0px;
    display: flex;
    flex-direction: column;
}

.notification-list-container .notification-list{
    display: flex;
    flex-direction: column;
    border: 1px solid #EEEEEE;
    padding: 0px 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.notification-card{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 0px 32px;
}

.notification-card .notification-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.notification-card .notification-header .notification-header--title{
    font-size: 16px;
    font-weight: 700;
    color: #000000;

    display: flex;
    align-items: center;
}

.notification-card .notification-header .notification-header--date{
    color: #b5babf;
    font-weight: 500;
}

.notification-card:not(:last-child)::after {
    content: '';
    display: block;
    border: 1px solid #b5babf;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.unread-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #FF6F61;
    margin-left: 8px;
}

.filter-search-panel img{
    cursor: pointer;
    position: absolute;
    top: 12px;
    left: 18px;
}

.filter-search-panel .filter-search-panel--search-input{
    padding: 0.5rem 1rem 0.5rem 3rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: #F8F8F8;
    width: 100%;
}

.filter-card-panel {
    display: flex;
    gap: 8px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.filter-card-panel::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar as needed */
}

.filter-card-panel::-webkit-scrollbar-thumb {
    background-color: transparent; /* Set the thumb color to transparent */
}

.filter-card-panel::-webkit-scrollbar-track {
    background-color: transparent; /* Set the track color to transparent */
}

.filter-card-panel .filter-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 8px 16px;
    border: 1px solid #D3D3D3;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: #F8F8F8;
    text-align: center;
}

.filter-card-panel .filter-card.active{
    color: #FFFFFF;
    background-color: #f1475f;
}

.relative {
    position: relative;
}

.truncate-text {
    max-width: 400px; /* Adjust the maximum width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-pills--custom.nav-pills .nav-link {
    display: flex;
    flex-direction: column;
    background-color: transparent;
/*    border: 1px solid black;*/
    border-radius: 0.25rem;
}

.nav-pills--custom.nav-pills .nav-link .image-panel{
    width: 72px;
    height: 72px;
}

.nav-pills--custom.nav-pills .nav-link .image-panel img{
    width: 100%;
    height: 100%;
}

.nav-pills--custom.nav-pills .nav-link.active{
    border: none;
}

.nav-pills--custom.nav-fill .nav-item{
    margin-right: 8px;
    flex:0 !important;
}

.nav-pills--custom.nav-pills .nav-item:last-child{
    margin-right: 0;
}

.nav-pills--custom.nav-pills .nav-link.active{
    background-color: #002658;
    color: #ffffff;
}


.filter-panel {
    padding: 16px;
}

.product-rating-panel{
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating-panel .product-rating {
    display: flex;
    gap: 2px;
    margin-top: 16px;
}

.product-rating-panel .product-rating img{
    height: 16px;
}

.card-body--custom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.col-custom-2 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-custom-3 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.col-custom-4 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-custom-5 {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-custom-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.card-body--custom .card-title {
    margin-bottom: auto;
}

.card-body--custom h3 {
    margin-top: auto;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.tooltip-container .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.question-mark {
    font-size: 8px;
    padding: 4px;
    border: 1px solid #333;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 6px;
    cursor: pointer;
    vertical-align: middle;
    background-color: #f9f9f9;
}

.review-section{
    display: flex;
    margin-bottom: 16px;
    width: 100%;
}

.review-section .review-container{
    padding: 16px;
    border: 1px solid #F58638;
    border-right: none;
    background-color: transparent;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    -webkit-border-top-left-radius: 16px;
    -webkit-border-bottom-left-radius: 16px;
    -moz-border-radius-topleft: 16px;
    -moz-border-radius-bottomleft: 16px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.review-section .review-container.no-web-banner{
    border-radius: unset;
    border-radius: 16px;
    border-right: 1px solid #F58638;
}

.review-section .review-image{
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 324px;
}

.review-container .review-container--title{
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.review-container--rating-title{
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.review-container--rating-panel{
    display: flex;
    margin-bottom: 8px;
    gap: 8px;
    color: #000000;
}

.review-container--score{
    font-size: 56px;
}

.review-container--subratings{
    display: flex;
    flex-wrap: wrap;
    background-color: #f5f5f9;
    padding: 16px;
    gap: 16px;
    border-radius: 16px;
}

.review-container--subratings .review-subrating{
    display: flex;
    justify-content: space-between;
    flex: 1;
    background-color: #FFFFFF;
    padding: 8px;
}

.withdrawal-section{
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.withdrawal-section .main-card{
    background-color: transparent;
    box-shadow: unset;
    background-clip: unset;
    border: 1px solid #F58638;
    border-radius: 16px;
}

.withdrawal-section .sub-card{
    background-color: #1E3052;
}

.withdrawal-section .sub-card .bx{
    color: #EC5161;
}

.withdrawal-section .sub-card .avatar{
    height: 56px;
    width: 56px;
}

.withdrawal-section .withdrawal-summary{
    padding: 16px;
    /*border: 1px solid #000000;*/
    flex: 2;
}

.withdrawal-section .withdrawal-amount{
    display: flex;
    min-height: 160px;
}

.withdrawal-section  .withdrawal-amount--details{
    display: flex;
    justify-content: space-between;
}

.withdrawal-amount--details .withdrawal-amount--header{
  display: flex;
  align-items: center;
}

.withdrawal-amount--header--text-label{
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  font-size: 24px;
}

.withdrawal-amount--header--image-panel{
  width: 120px;
}

.withdrawal-amount--header--image-panel img{
  width: 100%;
  height: 100%;
}

.withdrawal-section .withdrawal-amount--currency{
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.withdrawal-amount--currency--label{
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.withdrawal-amount--currency--value{
    font-size: 56px;
    line-height: 1;
    vertical-align: baseline;
    color: #000000;
}

.withdrawal-request-btn {
    margin-left: 8px;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #F58638;
    color: white;
    border: none;
    cursor: pointer;
}

.withdrawal-request-btn:hover {
    background-color: #D47930;
}

.notification-section{
  flex: 1;
  border-left: 1px solid #000000;
  position: relative;
}

.notification-section .notification-header{
  display: flex;
  justify-content: space-between;
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.notification-section .notification-header .notification-header--title,
.notification-section .notification-header .notification-header--view-all{
    font-weight: 700;
    color: #000000;
}

.notification-section .notification-header .notification-header--title{
    display: flex;
    align-items: center;
}

.notification-section .notification-header--title--image-panel{
    display: flex;
    width: 16px;
    height: 16px;
}

.notification-section .notification-header--title--image-panel img{
    width: 100%;
    height: 100%;
}

.notification-section .notification-content{
    display: flex;
    flex-direction: column;
    padding: 8px;
    overflow-y: auto;
    gap: 16px;
}

.notification-section .notification-content .notification-item{
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #F58638;
    border-radius: 16px;
}

.notification-item--title{
    font-weight: 700;
    margin-right: 12px;
    color: #000000;
}

.notification-item--description{
  font-size: 14px;
  color: #000000;
}

.notification-item--date{
    font-size: 85%;
    color: #000000;
}

.notification-dot{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
}

.no-data-panel{
  text-align: center;
  padding: 16px;
  color: #999999;
}

.monthly-report-section .monthly-report-summary{
    padding: 16px;
    flex: 2;
}

.monthly-report-summary .monthly-report-summary--header{
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.monthly-report-summary .monthly-report-summary--box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-color: transparent;
    border: 1px solid #F58638;
    gap: 8px;
    text-align: center;
    line-height: 1;
    position: relative;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.monthly-report-summary--box .monthly-report-summary--value{
    font-size: 56px;
    font-weight: 700;
    color: #F58638;
}

.monthly-report-summary--box .monthly-report-summary--label{
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.monthly-transaction-list{
  flex: 1;
  border: 1px solid #000000;
  position: relative;
}

.monthly-transaction-list .list-header{
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
  color: #000;
  font-weight: 700;
  margin: 0 8px;
}

.monthly-transaction-list .list-header .list-header--image-panel{
    width: 32px;
    height: 32px;
}

.monthly-transaction-list .list-header .list-header--image-panel img{
    height: 100%;
    width: 100%;
}

.monthly-transaction-list .list-content{
  padding: 8px;
  max-height: 360px;
  overflow-y: auto;
}

.list-content .transaction-item{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.list-content .transaction-order{
  font-size: 14px;
  color: #666666;
}

.list-content .transaction-amount{
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.list-content .transaction-amount span{
  font-size: 16px;
  font-weight: bold;
}

.monthly-report-overview {
    display: flex;
    margin-bottom: 16px;
    width: 100%;
}

.monthly-report-overview__main {
    padding: 16px;
    border-right: 1px solid #000000;
    flex: 3.5;
}

.monthly-report-overview__header {
    color: #000000;
    font-weight: 700;
    margin-bottom: 8px;
}

.monthly-report-overview__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    gap: 8px;
    text-align: center;
    line-height: 1;
    position: relative;
    background-color: #1E3052;
}

.monthly-report-overview__card--icon {
    font-size: 56px;
    font-weight: 700;
    color: #F58638;
}

.monthly-report-overview__card--title {
    font-size: 24px;
    font-weight: 700;
    color: #EEE3DB;
}

.category-list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-item-container{
    height: 160px;
    width: 100%;
}

.category-item-container .category-item-image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.header-container{
    display: flex;
    background-color: #f1475f;
    height: 60px;
    width: 100%;
    padding: 32px 56px;
    position: relative;
}

.header-container .header-panel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.header-container .header-panel .back-button {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.header-container .header-panel .header-title{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.product-list-container{
    display: flex;
}

.product-list-container .filter-form{
    max-width: 25%;
    min-width: 280px;
}

.product-list-container .product-filtering-panel{
    min-width: 25%;
    margin-right: 24px;
}

.product-list-container .product-filtering-panel .filter-header{
    display: none;
}

.product-list-container .product-filtering-panel .form-group{
    margin-bottom: 24px;
}

.product-list-container .product-filtering-panel input[type='text'],
.product-list-container .product-filtering-panel input[type='number']{
    width: 100%;
    border: 1px solid #EEE;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 400;
    background-color: #F8F8F8;
}

.product-list-container .product-filtering-panel .form-check{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-filtering-panel .form-check input[type='checkbox']{
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.product-filtering-panel .variation-panel{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    cursor: pointer;
}

.product-filtering-panel .variation-panel .variation-panel--btn{
    border: 1px solid #000000;
    padding: 8px 16px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.product-filtering-panel .variation-panel .variation-panel--btn.active{
    background-color: #D3D3D3;
}

.category--card {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.category--card .category--card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

.category--card .category--btn-toggle {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px;
}

.category--card .category--btn-toggle.selected {
    background-color: blue;
    color: white;
}

.category--card .category--collapse {
    display: none;
}

.category--card .category--collapse.show {
    display: block;
}

.ms-3 {
    margin-left: 1rem;
}

.category--card .list-groups {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}

.category--card .list-groups .list-group-items{
    /*padding: 8px;*/
}

.category--card .list-groups .list-group-items:hover > .category--btn-toggle {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.category--card .list-groups .list-group-items:hover > .category--btn-toggle.selected {
    background-color: blue;
    color: white;
}

.category--card .list-groups .text-visibility {
    color: black;
    font-size: 16px;
    background-color: white;
    visibility: visible;
}

.category--card .toggle-icon-wrapper {
    height: 24px;
    width: 24px;
    margin-left: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.category--card .toggle-icon {
    width: 12px;
    height: 12px;
    border: solid black;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    cursor: pointer;
}

.category--card .category--btn-toggle.selected .toggle-icon{
    border: solid #FFFFFF;
    border-width: 2px 2px 0 0;
}

.category--card .category--btn-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(-135deg); /* rotate the icon when expanded */
}

.product-list-panel .product-list-label{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-list-panel .product-list-label .brand-title{
    font-weight: 700;
    font-size: 16px;
}

.product-list-panel .product-list-label .item-count{
    font-weight: 400;
    font-size: 16px;
    color: red;
}

.product-list-panel .product-list-label .filter-button-container{
    display: none;
}

.color-filter {
    display: flex;
    flex-direction: column;
}

.color-filter-toggle {
    display: flex;
    justify-content: flex-start;
}

.color-toggle-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 16px;
}

.color-toggle-icon {
    font-size: 20px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.color-option.selected {
/*    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007bff;*/
}

.product-filtering-button{
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.product-filtering-button .btn-clear {
    background-color: white;
    color: red;
    border: 1px solid red;
    padding: 10px 20px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}

.product-filtering-button .btn-search {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}

.product-detail-container{
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.product-detail-container .upper-panel{
    display: flex;
    min-height: 500px;
}

.product-detail-container .lower-panel{
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.product-image-panel {
    display: flex;
    flex-direction: column;
    width: 120px;
    margin-right: 16px;
}

.product-image-panel .image-item{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 8px;
    width: 100%;
    height: 20%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.product-image-panel .image-item img{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-panel .image-item.extra-images,
.product-image-panel .image-item:last-child {
  margin: 0;
}

.product-image-panel .image-item.extra-images {
    position: relative;
    background-color: #333; /* Dark background color */
    color: #fff; /* Text color for the label */
    text-align: center;
}

.product-image-panel .extra-images .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.product-image-panel .extra-images .dark-overlay p {
    font-size: 24px; /* Adjust the font size as needed */
    font-weight: bold;
}

.upper-panel--product-image,
.product-detail-panel{
    position: relative;
    display: flex;
    flex: 1;
}

.upper-panel--product-image .product-detail-image,
.product-detail-panel .product-detail-image{
    width: 100%;
    height: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-right: 32px;
}

.upper-panel--product-image .product-detail-image .main-image,
.product-detail-panel .product-detail-image .main-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.product-info-panel{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info-panel .product-title {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 8px;
}

.product-info-panel .product-subtitle {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
}

.product-info-panel .product-price{
    font-weight: bold;
    color: #EA485D;
}

.product-rating-panel{
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating-panel .product-rating {
    display: flex;
    gap: 2px;
}

.product-rating-panel .product-rating img{
    height: 12px;
}

.product-info-panel .product-button{
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.product-button .quantity-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    border: 1px solid grey;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 150px;
}

.product-button .quantity {
    width: 40px;
    text-align: center;
    font-size: 16px;
}

/* Chrome, Safari, Edge, Opera */
.product-button .quantity::-webkit-outer-spin-button,
.product-button .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.product-button .quantity[type=number] {
  -moz-appearance: textfield;
}

.product-button .quantity:focus {
    outline: none;
}

.product-button .minus-button,
.product-button .plus-button {
    width: 30px;
    height: 30px;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    font-size: 16px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.product-button .minus-button:hover,
.product-button .plus-button:hover {
    background-color: #aaa;
}

.product-button .add-to-cart-button{
    background-color: #f1475f;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 16px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 150px;
    justify-content: center;
}

.product-button--red-button-group{
    display: flex;
    gap: 8px;
}

.product-button--red-button-group .add-to-cart-container{
    display: flex;
}

.product-info-panel hr{
    margin-top: 16px;
    margin-bottom: 16px;
}

.product-info-panel .form-group .product-label{
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.product-info-panel .form-group .product-label::first-letter{
    text-transform: uppercase;
}

.product-additional-info {
    background-color: #f0f0f0;
    padding: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.product-additional-info .product-info-row {
    display: flex;
    justify-content: space-between;
}

.product-additional-info .product-info-row:not(:last-child){
    margin-bottom: 8px;
}

.product-additional-info .info-label {
    font-size: 1rem;
    color: grey;
    font-weight: 500;
}

.product-additional-info .info-value {
    font-size: 1rem;
    color: grey;
    font-weight: 500;
}

.product-share-container {
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: flex-start; /* Align items to the top */
    position: relative;
    gap: 8px;

    position: absolute;
    top: 0;
    right: 0;
}

.product-share-container .bookmark-container,
.product-share-container .share-container{
    background-color: #F8F8F8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.shop-detail-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    flex: 1;
    background-color: #f0f0f0;
    margin-top: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.shop-detail-container .circle-image {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.shop-detail-container .circle-image img{
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    object-fit: contain;
}

.shop-detail-container .shop-detail-container--detail-panel{
    display: flex;
    align-items: center;
}

.follow-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    border-radius: 50px;
    padding: 8px;
    width: 120px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #FF6600;
}

.follow-button.following{
    color: #9E9E9E;
}

.chat-image-container{
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-image-container img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tab-content--description{
    border-radius: .375rem;
    padding: 1.5rem;
}

.tab-content--description p{
    margin: 0;
}

.product-recommendation-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
}

.product-recommendation-label{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0px 0px 24px;
    font-size: 24px;
    font-weight: 700;
}

.topic-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.topic-container::-webkit-scrollbar {
    width: 0;
}

.topic-container a {
    flex: 1;
    text-align: center;
}

.topic-container .topic-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 120px;
    background-color: #F8F8F8;
    padding: 24px 32px;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.topic-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card .product-image-container {
    position: relative;
}

.product-card .product-image-container .product-image,
.product-card .product-image-container img{
    max-width: 100%;
    height: auto;
}

.product-card .product-image-container .product-image{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    height: 280px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.product-card .product-image-container .bookmark-container {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-card  .product-title {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.product-card  .product-subtitle {
    font-size: 0.8rem;
    color: #888;
}

.product-card  .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.product-card  .product-price {
    font-weight: bold;
    color: #EA485D;
}

.product-card  .product-rating {
    display: flex;
    gap: 2px;
}

.product-card  .product-rating img{
    height: 12px;
}

.variation-container {
    display: flex;
    flex-direction: column;
}

.variation-container .variation-panel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.variation-container .variation-panel .variation-option {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #D3D3D3;
    border-radius: 50px;
    background-color: #F8F8F8;
    cursor: pointer;
}

.variation-container .variation-panel .variation-option.active {
    color: #FFFFFF;
    background-color: #f1475f;
}

.variation-option .variant-image-panel {
    margin-right: 8px;
}

.variation-option .variant-image {
    width: 32px;
    height: 32px;
    background-size: cover;
}

.no-items-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    width: 100%;
    flex-direction: column;
    text-align: center;
}

.no-items-container .continue-shopping-button {
    background-color: #E9495D;
    color: white;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.no-items-container .continue-shopping-button:hover {
    opacity: 0.9;
}

.no-voucher-message{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-container{
    display: flex;
    margin-top: 40px;
    width: 100%;
    gap: 32px;
}

.cart-container--left-panel{
    display: flex;
    flex-direction: column;
    width: 60%;
}

.cart-container--right-panel{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.cart-item-container{
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.cart-item-container{
    margin-bottom: 32px;
}

.cart-item-container .seller-detail-panel{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    padding: 8px 16px;
}

.cart-item-container .seller-detail-panel input[type="checkbox"]{
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

.cart-item-container .shop-voucher-container{
    padding: 16px;
    border-top: 1px solid #000000;
}

.brand-icon-container{
    min-width: 48px;
    width: 48px;
    height: 48px;
    margin-right: 16px;
}

.brand-icon-container .brand-icon{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border: 1px solid #D3D3D3;
}

.cart-item-container .cart-item-list{
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.cart-item-list .cart-item-list--row{
    display: flex;
    flex: 1;
}

.cart-item-list .cart-item-list--row:not(:last-child) {
    margin-bottom: 24px;
}

.item-image-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.item-image-container .item-image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.item-image-container .image-checkbox {
    position: absolute;
    top: 8px;
    left: 8px;
    height: 24px;
    width: 24px;
}

.item-detail-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.item-detail-container .upper-panel{
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.item-detail-container .lower-panel{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lower-panel .button-panel{
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-detail-container--item-info{
    display: flex;
    align-items: center;
}

.item-detail-container--item-info .item-content{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.order-summary-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 36px;
}

.order-summary-list{
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.order-summary-list .list-row{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.order-summary-list .list-row:not(:last-child){
    margin-bottom: 16px;
}

.order-summary-list .list-row .list-title{
    font-weight: 500;
}

.total-panel .total-price-text{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
}

.total-panel{
    margin-bottom: 24px;
}
.total-panel .subtotal-price-text{
    font-size: 16px;
    font-weight: 500;
}

.checkout-button{
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    border: 1px solid #E1E1E1;
    background: #E9495D;
    width: 100%;
    color: #FFFFFF;
    font-size: 24px;
    padding: 16px;
}

/* Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.custom-modal .custom-modal-content {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
    border-radius: 5px;
    width: 680px;
}

.custom-modal .custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 16px;
}

.custom-modal .custom-modal-header h2 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
}

.custom-modal .close {
    font-size: 32px;
    cursor: pointer;
}

.custom-modal .custom-modal-body {
    font-size: 24px;
    font-weight: 400;
}

.custom-modal .custom-modal-body.limited-h-480{
    overflow-y: auto;
    max-height: 480px;
}

.button-group{
    display: flex;
    gap: 16px;
}

.button-group .cancel-button,
.button-group .confirm-button{
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    border: 1px solid #E1E1E1;
    background: #E9495D;
    width: 100%;
    color: #FFFFFF;
    font-size: 24px;
    padding: 8px;
}

.shipping-address-container{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.shipping-address-container.completed{
    background: #F7F7F7;
    border: 1px solid #D5D5D5;
}

.shipping-address-container .shipping-address-header{
    border-bottom: 1px solid #000000;
    padding: 16px;
}

.shipping-address-container.completed .shipping-address-header{
    border-bottom: 1px solid #D5D5D5;
}

.shipping-address-container .shipping-address-body{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 16px;
}

.shipping-address-container .shipping-address-body .edit-profile-container {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-order-container .product-order-label{
    padding: 0px 0px 8px 8px;
}

.product-order-container .product-order-panel{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.product-order-panel .panel-child{
    padding: 16px;
}

.product-order-panel .panel-child:not(:last-child){
    border-bottom: 1px solid #000000;
}

.product-order-panel .seller-panel{
    display: flex;
    align-items: center;
}

.product-order-panel .product-order-body{
    padding: 16px 32px;
}

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

.product-order-table thead {
    border-radius: 50px;
    background-color: lightgrey;
}

.product-order-table thead th{
    padding: 8px 16px;
    text-align: center;
}

.product-order-table thead th:first-child{
  border-radius: 50px 0 0 50px;
}

.product-order-table thead th:last-child{
  border-radius: 0 50px 50px 0;
}

.product-order-table tbody:before {
    content: "@";
    display: block;
    line-height: 16px;
    text-indent: -99999px;
}

.product-order-table tbody td{
    vertical-align: top;
}

.product-order-table tbody td:not(:first-child){
    text-align: center;
}

.product-order-table tbody .first-column{
    width: 45%;
}

.product-order-table--name-panel{
    display: flex;
}

.product-order-table--mobile-panel .product-item .product-image-container,
.product-order-table .product-image-container{
    width: 240px;
    height: 240px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    margin-right: 16px;
}

.product-order-table--mobile-panel .product-item .product-image,
.product-order-table .product-image-container .product-image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

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

.color-panel .color-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-right: 8px;
}

.color-panel .color-name {
    display: inline-block;
    /*font-size: 18px;*/
}

.product-order-panel .remark-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-order-panel .remark-container .remark-edit-container{
    position: absolute;
    right: 16px;
}

.product-order-panel .total-amount-container{
    display: flex;
    justify-content: space-between;
}

.product-payment-container{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.product-payment-container .panel-child{
    display: flex;
    padding: 16px;
}

.product-payment-container .panel-child:not(:last-child){
    border-bottom: 1px solid #000000;
}

.payment-method-container .payment-method-list{
    display: flex;
    flex-direction: column;
}

.payment-method-container .payment-method-list .payment-method-child{
    display: flex;
    align-items: center;
}

.payment-method-container .payment-method-list .payment-method-child:not(:last-child){
    margin-bottom: 8px;
}

.payment-method-container .payment-method-list .payment-method-child img{
    width: 160px;
    height: 100%;
}

.default-grey-input{
    width: 100%;
    border: 1px solid #949494;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding: 8px 16px;
    background-color: #F8F8F8;
}

.apply-button{
    width: 100%;
    border: 1px solid #000000;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding: 8px 24px;
    color: #000000;
    background-color: #FFFFFF;
}

.total-payment-container .confirm-order-button{
    width: 250px;
    border: 1px solid #B4B4B4;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding: 8px 24px;
    color: #FFFFFF;
    background-color: #E9495D;
}

.order-complete-notice{
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border: 1px solid #129010;
    background: #F7F7F7;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.order-complete-notice .green-circle{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00BF63;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-right: 36px;
    width: 90px;
    height: 90px;
}

.order-complete-notice .green-circle.pending{
    background-color: #FFB81C;
}

.order-complete-notice .green-circle i{
    color: white;
    font-size: 48px;
}

.order-summary-container{
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.order-summary-container .order-detail-container,
.order-summary-container .order-payment-container{
    display: flex;
    flex-direction: column;
}

.order-summary-container .order-detail-container .container-label,
.order-summary-container .order-payment-container .container-label{
    font-size: 20px;
    font-weight: 500;
    padding: 0px 0px 8px 8px;
}

.order-summary-container .order-detail-container{
    flex: 1;
}

.order-summary-container .order-payment-container{
    flex: 2;
}

.order-detail-container .order-detail-panel,
.order-payment-container .order-payment-panel{
    display: flex;
    flex-direction: column;
    align-self: flex-start;

    border: 1px solid #D5D5D5;
    background: #F7F7F7;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
}

.order-detail-container .order-detail-panel .order-detail-panel--child,
.order-payment-container .order-payment-panel--header,
.order-payment-container .order-payment-panel--body .order-payment-panel--body--child,
.order-payment-container .order-payment-panel--footer{
    display: flex;
    justify-content: space-between;
}

.order-detail-container .order-detail-panel .order-detail-panel--child:not(:last-child),
.order-payment-container .order-payment-panel--body .order-payment-panel--body--child:not(:last-child){
    margin-bottom: 16px;
}

.order-payment-container .order-payment-panel--header,
.order-payment-container .order-payment-panel--body{
    padding-bottom: 16px;
    border-bottom: 1px solid #D1D1D1;
    margin-bottom: 16px;
}

.order-button-container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.order-button-container .button-panel{
    border-radius: 36px;
    border: 1px solid #B4B4B4;
    background: #E9495D;
    padding: 24px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.order-button-container .button-panel button{
    background: #E9495D;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.order-tracking-container{
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.order-tracking-container .order-tracking-header{
    border-bottom: 1px solid #000000;
    padding: 16px;
}

.order-tracking-container .order-tracking-body{
    padding: 80px;
}

.step-indicator {
    display: flex;
    align-items: center;
}

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

.step-indicator .step-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    font-size: 10px;
    text-align: center;
    color: green;
    border: 7px solid #939393;
    position: relative;
    line-height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active .step-icon {
    background: #FFFFFF;
    border: 7px solid #000000;
}

.step p {
    text-align: center;
    position: absolute;
    color: #858585;
    font-size: 14px;
    font-weight: bold;
}

.step .top-label{
    top: -48px;
    width: 128px;
}

.step .bottom-label{
    bottom: -28px;
    width: 150px;
}

.step.active p {
    color: #000000;
}

.step.active p.bottom-label{
    color: #858585;
}

.step.step2 p,
.step.step3 p {
    left: 50%;
    transform: translateX(-50%);
}

.indicator-line {
    width: 100%;
    height: 8px;
    background: #c2c2c2;
    flex: 1;
}

.indicator-line.active {
    background: #000000;
}

.category-list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-item-container{
    height: 160px;
    width: 100%;
}

.category-item-container .category-item-image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.order-list-container{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.show-more-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.setting-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.setting-container .logout-panel{
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 32px;
    border: 1px solid #D5D5D5;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size: 20;
    font-weight: 500;
    color: #BF3232;
    padding: 16px;
}

.setting-panel .setting-child:not(:last-child){
    margin-bottom: 16px;
}

.setting-panel .setting-child .setting-header{
    font-size: 20px;
    font-weight: 700;
    color: #BF3232;
    padding: 0px 0px 8px 8px;
}

.setting-panel .setting-child .setting-body{
    display: flex;
    flex-direction: column;
    border: 1px solid #D5D5D5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.setting-body .setting-option{
    padding: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.setting-body .setting-option:not(:last-child){
    border-bottom: 1px solid #D5D5D5;
}

.app-brand-text.demo {
  text-transform: none;
}

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

.card .card-header-section .card-header--button{
  display: flex;
  align-items: center;
  margin: 8px 16px;
}


.hamburger-menu{
    display: none;
}

.product-order-panel .product-order-body{
    padding: 8px 16px;
}

.product-order-table--mobile-panel{
    display: none;
    flex-direction: column;
}

.product-order-table--mobile-panel .product-item{
    display: flex;
    justify-content: space-between;
}

.product-order-table--mobile-panel .product-item .product-image-container{
    width: 120px;
    height: 120px;
}

.product-order-table--mobile-panel .product-item .product-item-detail{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-order-table--mobile-panel .product-item .product-item--item-detail{
    display: flex;
}

.product-order-table--mobile-panel .color-panel{
    justify-content: unset;
}

.product-order-table--mobile-panel .color-panel .color-name{
    font-size: 16px;
}

.authentication-container {
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.authentication-container .authentication-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid black;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 200px;
}

.authentication-container .authentication-tab button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
}

.authentication-container .authentication-tab button.selected{
    background-color: #e7ebee;
    margin: 4px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-weight: 700;
}

.authentication-container .authentication-tab button:focus {
    outline: none;
}

.authentication-container .register-form {
    display: none;
}

.authentication-container .input-row {
    text-align: left;
}

.authentication-container .input-row label,
.authentication-container .input-row input,
.authentication-container .input-row button,
.authentication-container .input-row a {
    display: block;
    margin-bottom: 10px;
}

.authentication-container .input-row input{
    background-color: #f7f7f7;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: calc(100% - 24px);
    border: 1px solid grey;
    padding: 16px;
    font-size: 16px;
}

.authentication-container .input-row button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.authentication-container .input-row--button-group{
    display: flex;
    justify-content: space-between;
}

.authentication-container .input-row a {
    text-decoration: none;
    color: #44a3dd;
    font-weight: bold;
}

.authentication-container .submit-button{
    background-color: #f1475f;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 100%;
    border: 1px solid grey;
    padding: 16px;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 32px;
}

.voucher-list-container {
    overflow-y: auto;
    max-height: 480px;
    margin-bottom: 16px;
    padding: 8px 16px 8px 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voucher-list-container .business-name-label{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.voucher-list-container .voucher-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voucher-list-container .voucher-list .voucher-child{
    display: flex;
    border: 1px solid #D3D3D3;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.voucher-list-container .voucher-list .voucher-child.active{
    border: 1px solid #0000FF;
}

.voucher-child .voucher-background-panel{
    width: 25%;
}

.voucher-child .voucher-detail-panel{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 8px;
    width: 75%;
}

.voucher-image-container {
    position: relative;
    height: 100%;
}

.voucher-image-container .parent-image{
    margin: -2px;
    width: 100%;
    object-fit: cover;
}

.voucher-image-container .centered-image {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.voucher-image-container .centered-image:after {
    content: "";
    background-color: white;
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.voucher-image-container .centered-image img{
    object-fit: contain;
    width: 50px;
    height: 50px;
}

.voucher-image-container .voucher-expiration{
    position: absolute;
    bottom: 8px;
    left: 8px;
}

.btnTnC{
    border: 1px solid #000000;
    padding: 8px;
    width: 120px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info-container--update-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.user-info-container--update-info.input-border input{
    border: 1px solid #000000;
    margin-top: 8px;
    padding: 8px;
}

.user-info-container--update-info.input-border textarea{
    min-height: 200px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    box-sizing: border-box;
}

.quotation-form-group {
    margin: 32px 0;
}

.quotation-form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quotation-textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    color: #333;
    resize: vertical;
}

.quotation-textarea:focus {
    border-color: #007bff;
    outline: none;
    background-color: #ffffff;
}

.quotation-textarea::placeholder {
    color: #888;
    font-style: italic;
    text-align: left;
}

.select2-container{
    z-index: 1100;
}

.menu-vertical .menu-inner>.menu-item .menu-link{
    position: relative;
}

.menu-item .new-indicator {
    position: absolute;
    right: -8px;
    border-radius: 50%;
    background-color: #F58638;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-responsive {
    overflow-y: auto;
    overflow-x: auto;
    white-space: nowrap;
}
.datatable-action
{
  color:#000;
}
.table-responsive .table thead th {
    position: sticky;
    top: 0;
    background: #F1F1F1;
    z-index: 2;
}

/* Media Query for screens with a maximum width of 768px (small tablets and mobile devices) */
@media (max-width: 768px) {

    /* Hide the web carousel on mobile */
    .web-carousel-hidden {
        display: none;
    }

    .mobile-carousel-hidden {
        display: block;
    }

    body header,
    body main{
        padding-left: 8px;
        padding-right: 8px;
    }

    .font-16-normal{
        font-size: 12px;
    }
    .font-16-bold{
        font-size: 12px;
    }
    .font-20-bold{
        font-size: 16px;
    }
    .font-24-bold{
        font-size: 16px;
    }

    .font-size-8{
        font-size: 0.5rem;
    }
    .font-size-16{
        font-size: 0.8rem;
    }
    .font-size-20{
        font-size: 1rem;
    }
    .font-size-24{
        font-size: 1.2rem;
    }
    .font-size-32{
        font-size: 1.6rem;
    }

    .banner-container{
        height: 200px;
    }

    .custom-f-carousel {
      height: 32vh;
    }

    .product-card .product-image-container .bookmark-container{
        width: 30px;
        height: 30px;
    }

    .product-card .product-title{
        font-size: 0.8rem;
    }

    .product-card .product-subtitle{
        font-size: 0.6rem;
    }

    .product-card .product-price{
        font-size: 0.8rem;
    }

    .product-card .product-rating{
        gap: 1px;
    }

    .header-container .header-panel{
        justify-content: center;
    }

    .header-container .header-panel .back-panel{
        position: absolute;
        left: 16px;
    }

    .product-list-container .product-filtering-panel {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 75%;
        background-color: white;
        z-index: 1000;
        transform: translateY(100%);
        overflow-y: auto;
        transition: transform 0.3s ease-in-out;
        padding: 16px;
        box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.2);
        -webkit-border-top-left-radius: 16px;
        -webkit-border-top-right-radius: 16px;
        -moz-border-radius-topleft: 16px;
        -moz-border-radius-topright: 16px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    .product-list-container .filter-form{
        min-width: unset;
    }

    .product-list-panel .product-list-label .filter-button-container{
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F7F7F7;
        padding: 8px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        border: 1px solid #D9D9D9;
    }

    .product-list-container .product-filtering-panel .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        -webkit-border-top-left-radius: 16px;
        -webkit-border-top-right-radius: 16px;
        -moz-border-radius-topleft: 16px;
        -moz-border-radius-topright: 16px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #D9D9D9;
        margin-bottom: 16px;
    }

    .product-list-container .product-filtering-panel .close-button {
        background-color: transparent;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .product-order-table{
        display: none;
    }

    .product-order-table--mobile-panel{
        display: flex;
    }

    .brand-icon-container{
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .order-summary-container{
        flex-direction: column;
    }

    .order-tracking-container .order-tracking-body{
        padding: 40px;
    }

    .step-indicator{
        flex-direction: column;
    }

    .step .top-label{
        top: unset;
        right: 48px;
    }

    .indicator-line {
        width: 8px;
        height: 50px;
        background: #c2c2c2;
        flex: unset;
    }

    .step.step2 p, .step.step3 p {
        left: unset;
        transform: unset;
    }

    .step .bottom-label{
        top: 16px;
        left: 48px !important;
        bottom: unset;
    }

    .payment-method-container .payment-method-list .payment-method-child img{
        width: 100px;
    }

    .cart-container{
        flex-direction: column;
    }

    .cart-container--left-panel{
        width: 100%;
    }

    .cart-container--right-panel{
        width: 100%;
    }

    .product-detail-container{
        padding: 8px;
    }

    .product-detail-container .upper-panel{
        flex-direction: column;
        min-height: 400px;
    }

    .upper-panel--product-image{
        margin-bottom: 16px;
    }

    .upper-panel--product-image .product-detail-image{
        width: 100%;
        height: 300px;
        margin-right: 0;
    }

    .product-image-panel .image-item{
        height: 54px;
    }

    .product-info-panel{
        position: relative;
    }

    .product-share-container{
        position: absolute;
        right: 16px;
    }

    .product-info-panel .product-button{
        justify-content: space-between;
        flex-direction: column;
    }

    .product-detail-container .lower-panel{
        margin-left: 0;
        margin-right: 0;
    }

    .product-recommendation-label{
        margin: 0px 0px 16px;
    }

    .inner-container{
        flex-direction: column;
    }

    .inner-container .left-panel{
        margin: 0;
        margin-bottom: 16px;
        width: 100%;
    }

    .inner-container .right-panel{
        width: 100%;
        padding: 24px;
    }

    .profile-form{
        flex-direction: column;
        align-items: center;
    }

    .profile-form .profile-picture-container{
        margin-bottom: 16px;
    }

    .custom-modal .custom-modal-content{
        width: 360px;
    }

    .variation-container .variation-panel {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .product-image-panel {
        width: 80px;
        margin-right: 8px;
    }

    .lower-panel .button-panel{
        flex-direction: column;
        gap: unset;
    }

    .checkout-button{
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        border-radius: 24px;
        border: 1px solid #E1E1E1;
        background: #E9495D;
        width: 100%;
        color: #FFFFFF;
        font-size: 16px;
        padding: 8px;
    }

    .voucher-image-container .voucher-expiration{
        font-size: 8px;
    }

    .voucher-child .voucher-detail-panel .voucher-name{
        font-size: 12px;
    }

    .product-order-table--mobile-panel .product-item:not(:last-child){
        margin-bottom: 16px;
    }

    .product-order-table--mobile-panel .color-panel .color-name{
        font-size: 0.8rem;
    }

    .order-complete-notice .green-circle{
        margin-right: 16px;
        width: 50px;
        height: 50px;
    }

    .order-complete-notice .green-circle i{
        padding: 16px;
        font-size: 24px;
    }

    .footer-container .left-footer{
        flex-direction: column;
        flex: 2;
        align-items: unset;
    }

    .footer-container .left-footer .qr-code-panel{
        display: flex;
        align-items: center;
        flex: 2;
    }

    .footer-container .left-footer .contact-detail-panel{
        flex: 1;
    }

    .footer-container .container{
        flex-direction: column;
        gap: 16px;
    }

    .deal-wheel {
      --size: clamp(250px, 50vmin, 400px);
    }

    .timer-container {
      font-size: 2em;
    }

    .warranty-card{
        flex-direction: column;
    }

    .chat-container{
        flex-direction: column;
    }

    .side-bar{
        height: 400px
    }

    .chat-panel{
        border: 1px solid #e6e6e6;
    }

    .media-container--images {
        height: 60px;
        flex-wrap: wrap;
    }

    .media-container--images .image-item {
        width: calc(33.33% - 16px);
    }

    .media-container--images .extra-images .dark-overlay.web-hidden.web-hidden{
        display: flex;
    }

    .shop-detail-container .shop-detail-container--detail-panel{
        flex-direction: column;
    }

    .shop-detail-container .follow-button{
        width: 100%;
        margin-top: 8px;
    }

    .notification-container{
        padding: 16px;
    }

    .notification-list-container{
        padding: 0;
    }

    .business-profile--main-container{
        background-color: #FFFFFF;
        padding: 0;
    }

    .shop-profile-banner {
        padding: unset;
        -webkit-border-radius: unset;
        -moz-border-radius: unset;
        border-radius: unset;
        height: 240px;
    }

    .shop-profile-container{
        padding: 0;
    }

    .shop-profile-container .shop-profile-container--detail-panel{
        width: 100%;
        -webkit-border-radius: unset;
        -moz-border-radius: unset;
        border-radius: unset;
    }

    .shop-profile-container .circle-image{
        width: 100px;
        height: 100px;
    }

    .shop-detail-panel .chat-button,
    .shop-detail-panel .follow-button{
        width: 100px;
        font-size: 12px;
    }

    .shop-profile-navigation-panel{
        flex-direction: column-reverse;
        padding: 0px 16px;
    }

    .footer-container .right-footer{
        flex-direction: column;
        flex: 1;
        gap: unset;
    }

    .footer-container .qr-code-container{
        margin-bottom: 8px;
    }

    /* Always remain at bottom to take precedence over others */
    .mobile-hidden{
        display: none;
    }

    /* markeptlace ad-banner landing page (marketplace.blade.php start) */
    .ad-banner-container{
        padding: 0;
        margin: 0;
    }

    .ad-banner-container .hero-section{
        flex-direction: column-reverse;
    }

    .ad-banner-container .retail-checkin-items,
    .ad-banner-container .how-it-works-items,
    .ad-banner-container .campaign-summary-items{
        flex-direction: column;
    }

    .ad-banner-container .hero-section .content{
        width: unset;
        align-items: center;
    }

    .ad-banner-container .hero-section .content .heading-title{
        font-size: 11px;
        padding: 06px 16px 2px 16px;
    }

    .ad-banner-container .hero-section .content .heading-title-2{
        font-size: 28px;
        line-height: 1.1em;
        text-align: center;
    }

    .ad-banner-container .hero-section .content .heading-title-3{
        font-size: 14px;
        padding: 0;
        text-align: center;
        margin-bottom: 16px;
    }

    .ad-banner-container .hero-section .images-container{
        width: unset;
    }

    .ad-banner-container .hero-section .content .talk-to-us-btn{
        display: none;
    }

    .ad-banner-container .retail-checkin-section{
        margin-top: 20%;
        margin-bottom: 0%;
        padding: 15% 5% 15% 5%;
    }

    .ad-banner-container .retail-checkin-title{
        font-size: 28px;
        line-height: 1.1em;
    }

    .ad-banner-container .retail-checkin-item{
        padding: 0% 8% 0% 8%;
    }

    .ad-banner-container .how-it-works-header .how-it-works-title{
        font-size: 28px;
        line-height: 1.1em;
    }

    .ad-banner-container .how-it-works-header .how-it-works-subtitle{
        font-size: 14px;
    }

    .ad-banner-container .how-it-works-items{
        gap: unset;
    }

    .ad-banner-container .how-it-works-item{
        padding: 24px;
        margin-bottom: 16px;
    }

    .ad-banner-container .how-it-works-item .how-it-works-item--title{
        font-size: 18px;
    }

    .ad-banner-container .how-it-works-item .how-it-works-item--description{
        font-size: 14px;
    }

    .ad-banner-container .campaign-summary-credit,
    .ad-banner-container .campaign-summary-details{
        font-size: 14px;
        align-items: center;
    }

    .ad-banner-container .campaign-summary-profile{
        font-size: 14px;
        justify-content: center;
    }

    .ad-banner-container .pricing-section{
        padding: 50px 20px 50px 20px;
    }

    .pricing-header .pricing-title{
        font-size: 28px;
        line-height: 1.1em;
    }

    .pricing-header .pricing-subtitle{
        font-size: 14px;
    }

    .ad-banner-container .pricing-section .pricing-plan{
        margin: 0;
    }

    .pricing-cost .pricing-tag{
        font-size: 32px;
    }

    .pricing-cost .pricing-digit{
        font-size: 64px;
    }

    .ad-banner-container .pricing-section .pricing-day{
        font-size: 20px;
    }

    .ad-banner-container .helpdesk-section{
        margin-top: 25%;
        margin-bottom: 0%;
        padding: 15% 6% 15% 6%;
    }

    .helpdesk-content .helpdesk-content--title{
        font-size: 32px;
    }

    .ad-banner-container .registration-section{
        display: none;
    }
    /* markeptlace ad-banner landing page (marketplace.blade.php end) */

    .ad-container .how-it-work-section .bubble-container{
        width: 100%;
    }

    .custom-f-carousel .f-carousel__slide {
        aspect-ratio: 4 / 3;
    }

    /* mobile ad-banner start here   */
        .ad-container .boost-section {
            margin: 0px 2vw 16vw;
            padding: 4vw 4vw 7vw;
            border-radius: 5vw;
        }

        .ad-container .boost-section .forward-image {
            position: absolute;
            bottom: -36%;
            right: 0%;
            z-index: 1;
            width: 76vw;
            height: auto;
        }

        .ad-container .boost-section .boost-bubble {
            position: absolute;
            bottom: -12%;
            left: 5%;
            padding: 1.5vw;
            border-radius: 2vw;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            width: 24vw;
            background-color: #EEE3DB;
            font-size: 1.2vw;
            color: #000000;
            font-weight: normal;
            line-height: 1.4;
            font-family: Arial, sans-serif;
        }

        .ad-container .how-it-work-section .bubble-container .bubble-content{
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .ad-container .how-it-work-section .bubble{
            margin-bottom: 8px;
        }

        .ad-container .how-to-join-section .body-content{
            margin: 0px 4vw;
        }

        .ad-container .why-join-us-container .row{
            gap: 2vw;
        }

        .ad-container .why-join-us-container .header-title{
            font-size: 12px;
        }

        .ad-container .why-join-us-container .text-content .title{
            font-size: 12px;
            width: 100%;
        }

        .ad-container .why-join-us-container .description{
            font-size: 8px;
            width: 100%;
        }

        .ad-container .why-join-us-container .image-content img{
            width: 100%;
        }

        .ad-container .how-it-work-section .bubble{
            padding: 16px;
        }

        .ad-container .how-it-work-section .bubble-header .bubble-header--image img{
            width: 24px;
        }

        .ad-container .how-it-work-section .bubble-header .title{
            font-size: 32px;
        }

        .ad-container .how-it-work-section .bubble-header .sub-title{
            font-size: 16px;
        }

        .ad-container .how-it-work-section .bubble h3{
            font-size: 12px;
        }

        .ad-container .how-it-work-section .bubble p{
            font-size: 8px;
        }

        .ad-container .feedback-section .testimonial-container{
            padding: 8px 16px;
            gap: 4px;
            border-radius: 16px;
        }

        .ad-container .feedback-section .testimonial-title{
            font-size: 16px;
        }

        .ad-container .feedback-section .testimonial-text{
            font-size: 6px;
            margin-bottom: 1vh;
        }

        .ad-container .feedback-section .arrow-container{
            margin-top: 1vh;
        }

        .ad-container .feedback-section .testimonial-footer{
            gap: 8px;
        }

        .ad-container .how-to-join-section .header-title{
            font-size: 16px;
        }

        .ad-container .how-to-join-section .body-content .how-to-join-panel .title{
            font-size: 24px;
        }

        .ad-container .how-to-join-section .body-content .how-to-join-panel .description{
            font-size: 8px;
        }

        .ad-container .faq-section .faq-title{
            font-size: 8px;
        }

        .ad-container .faq-section .faq-toggle{
            font-size: 8px;
        }

        .ad-container .faq-section .faq-answer{
            font-size: 8px;
        }
    /* mobile ad-banner end here */
}

.text-right
{
  text-align: right !important;
}
/* CRM Sidebar active menu overrides */
.menu-vertical .menu-inner > .menu-item.active > .menu-link,
.menu-vertical .menu-sub > .menu-item.active > .menu-link {
  background-color: transparent !important;
  color: #FF6F61 !important;
}

.menu-vertical .menu-inner > .menu-item.active > .menu-link i,
.menu-vertical .menu-inner > .menu-item.active > .menu-link div,
.menu-vertical .menu-sub > .menu-item.active > .menu-link i,
.menu-vertical .menu-sub > .menu-item.active > .menu-link div {
  color: #FF6F61 !important;
}

/* Submenu active bullet dot color */
.menu-vertical .menu-sub > .menu-item.active > .menu-link:not(.menu-toggle):before {
  background-color: #FF6F61 !important;
}

.menu-vertical .menu-inner > .menu-item.active:before {
    background: #FF6F61;
}

/* Additional Dashboard Enhancements */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Better spacing for dashboard sections */
.row.mb-4 {
    margin-bottom: 2rem !important;
}

.transaction-card,
/* Make activities-card take full available height */
.activities-card {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 220px); /* Adjust offset based on header height */
}

.card-title{
  font-size: 1em;
  font-weight: 700;
}
/* Card body uses flexbox for layout */
.transaction-card .card-body,
.activities-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 16px;
    flex-grow: 1;
min-height: 0;
overflow-y: auto;
}

/* Scrollable list takes all remaining height */
.activities-card .activities-list {
    flex-grow: 1;
    overflow-y: auto;
    min-height: 0;
    padding-right: 6px;
}

/* Scrollbar customization */
.activities-card .activities-list::-webkit-scrollbar {
    width: 6px;
}
.activities-card .activities-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.activities-card .activities-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}


/* Each activity item */
.activity-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #FAFAFA; /* ✅ Requested background */
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Hover effect */
.activity-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Activity content container */
.activity-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0; /* ✅ Ensures title can expand */
}

/* Title */
.activity-text {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 4px;
    padding-right: 30px; /* ✅ Space for dot */
    white-space: normal;
    word-break: break-word;
}

/* Subtitle / content */
.activity-subtext {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    margin-bottom: 6px;
    word-break: break-word;
}

/* Date */
.activity-date {
    font-size: 12px;
    color: #6b7280;
}

/* Red dot indicator (fixed at top-right) */
.activity-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
}


/* Enhanced card shadows */
.profile-card,
.transaction-card,
.activities-card,
.pending-item-card,
.financial-summary-card,
.performance-metrics-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-card:hover,
.transaction-card:hover,
.activities-card:hover,
.pending-item-card:hover,
.financial-summary-card:hover,
.performance-metrics-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Improved responsive design */
@media (max-width: 1200px) {
    .col-lg-3 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .earnings-amount,
    .financial-amount,
    .metrics-value,
    .pending-item-count {
        font-size: 20px;
    }

    .card-body {
        padding: 16px;
    }

    .pending-items-section {
        padding: 16px;
    }
}

/* Enhanced hover effects */
.edit-icon:hover,
.show-more-link:hover {
    transform: scale(1.1);
}

/* Better color contrast for accessibility */
.text-muted {
    color: #6c757d !important;
}

/* Improved button styles */
.btn {
    border-radius: 8px;
    font-weight: 500;
}

/* Enhanced form elements */
.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Better table styles */
.table {
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

/* Enhanced dropdown styles */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

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

/* Better alert styles */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Enhanced badge styles */
.badge {
    border-radius: 6px;
    font-weight: 500;
}
.badge-success, .badge-success-blank{
  color:#067647;
  background-color: #ECFDF3;
}
.badge-success::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #16a34a; /* Green dot */
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.badge-info, .badge-info-blank{
  color:#026AA2;
  background-color: #B9E6FE;
}
.badge-info::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #026AA2; /* Green dot */
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.badge-warning, .badge-warning-blank{
  color:#9b8928;
  background-color: #f5f588;
}
.badge-warning::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #f4de3b; /* Green dot */
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.badge-danger-blank{
  color:#fff;
  background-color: #ce0c0c;
}
/* Better pagination styles */
.pagination .page-link {
    border-radius: 6px;
    margin: 0 2px;
    border: none;
    color: #667eea;
}

.pagination .page-item.active .page-link {
    background-color: #667eea;
    border-color: #667eea;
}

/* Enhanced modal styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    border-radius: 12px 12px 0 0;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 12px 12px;
}

/* Better tooltip styles */
.tooltip-inner {
    border-radius: 6px;
    font-size: 12px;
}

/* Enhanced progress bar styles */
.progress {
    border-radius: 8px;
    height: 8px;
}

.progress-bar {
    border-radius: 8px;
}

/* Better list group styles */
.list-group-item {
    border-radius: 8px;
    margin-bottom: 4px;
    border: 1px solid #f0f0f0;
}

/* Enhanced breadcrumb styles */
.breadcrum-container
{
  margin-top:20px;
  margin-bottom:20px;
}
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

/* Better nav styles */
.nav-link {
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Enhanced tab styles */
.nav-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    margin-right: 4px;
}

.nav-tabs .nav-link.active {
    background-color: #667eea;
    color: white;
}

/* Better accordion styles */
.accordion-item {
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #f0f0f0;
}

.accordion-button {
    border-radius: 8px;
    border: none;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: #667eea;
    color: white;
}

/* Enhanced carousel styles */
.carousel-item {
    border-radius: 12px;
    overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

/* Better spinner styles */
.spinner-border {
    border-width: 2px;
}

/* Enhanced toast styles */
.toast {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Better offcanvas styles */
.offcanvas {
    border-radius: 12px 0 0 12px;
}

/* Enhanced popover styles */
.popover {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Better card header styles */
.card-header {
    background-color: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 1.5rem;
}

/* Enhanced card footer styles */
.card-footer {
    background-color: transparent;
    border-top: 1px solid #f0f0f0;
    padding: 1rem 1.5rem;
}

/* Better input group styles */
.input-group-text {
    border-radius: 8px 0 0 8px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.input-group .form-control:not(:first-child) {
    border-radius: 0 8px 8px 0;
}

/* Enhanced button group styles */
.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn:first-child {
    border-radius: 8px 0 0 8px;
}

.btn-group .btn:last-child {
    border-radius: 0 8px 8px 0;
}

.btn-primary-custom
{
  background-color: #067647;
  color:#fff;
  border-radius: 5px;

}
.btn-primary-custom:hover
{
  background-color: #067647;
  color:#fff;
  border-radius: 5px;

}

/* Better navbar styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
}

/* Enhanced sidebar styles */
.sidebar {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
    border-radius: 8px;
    margin: 2px 8px;
}

.sidebar .nav-link.active {
    background-color: #667eea;
    color: white;
}

/* Better footer styles */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Enhanced loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Better focus states for accessibility */
*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Enhanced print styles */
@media print {
    .no-print {
        display: none !important;
    }

    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* ---- Custom Pending Items Section Styles ---- */
.pending-items-section {
    margin-top: 10px;
    margin-bottom: 20px;
}

.pending-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.pending-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pending-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 200px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.pending-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pending-icon {
    width: 46px;
    height: 46px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 14px;
}

.pending-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pending-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.pending-count {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* ===== DATATABLES CUSTOM STYLING ===== */

/* DataTables Custom Styling */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    margin: 10px 0;
    color: #697a8d;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #d9dee3;
    border-radius: 0.375rem;
    padding: 0.4375rem 0.875rem;
    background-color: #fff;
    color: #697a8d;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #d9dee3;
    border-radius: 0.375rem;
    padding: 0.4375rem 0.875rem;
    background-color: #fff;
    color: #697a8d;
    margin-left: 8px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #696cff;
    box-shadow: 0 0 0.25rem 0.05rem rgba(105, 108, 255, 0.1);
    outline: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #d9dee3;
    background: #fff;
    color: #697a8d !important;
    padding: 0.5rem 0.75rem;
    margin: 0 2px;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #696cff !important;
    color: #fff !important;
    border-color: #696cff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #696cff !important;
    color: #fff !important;
    border-color: #696cff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #c2c8d1 !important;
    cursor: not-allowed;
    background: #f8f9fa !important;
    border-color: #e9ecef;
}

/* Table Styling */
.dataTable {
    width: 100% !important;
    border-collapse: collapse;
    margin: 1rem 0;
}

.dataTable thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #697a8d;
    font-weight: 600;
    padding: 0.75rem;
    text-align: left;
}

.dataTable tbody td {
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem;
    color: #697a8d;
    vertical-align: middle;
}

.dataTable tbody tr:hover {
    background-color: #f8f9fa;
}

/* Responsive DataTables */
@media (max-width: 768px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        text-align: left;
        margin: 10px 0;
    }

    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        text-align: center;
        margin: 10px 0;
    }
}

.dt-column-title
{
  text-transform: none;
}
.table-border-bottom-0 td,.table-border-bottom-0 td strong
{
  font-weight: normal !important;
}


/* Force both single and multiple select2 boxes to have the same height */
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    min-height: 42px; /* Set your desired height */
    height: 42px !important; /* Ensures uniform height */
    border: 1px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

/* Fix padding for single select text alignment */
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 42px !important; /* Matches height */
    padding-left: 8px;
}

/* Adjust multiple select to match single select height visually */
.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 8px;
    min-height: 42px;
    line-height: 1.6;
}

/* Adjust tags inside multiple select to fit well */
.select2-container .select2-selection--multiple .select2-selection__choice {
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Center align the Select2 dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important; /* Take full height of select box */
    top: 50% !important; /* Move arrow to middle */
    transform: translateY(-50%) !important; /* Perfect vertical alignment */
    right: 10px; /* Space from right edge */
    position: absolute;
    pointer-events: none; /* Make sure clicks go through */
}

/* Same fix for multiple selects */
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
    height: 100% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 10px;
    position: absolute;
    pointer-events: none;
}


.form-check-input:checked
{
  background-color: #000000 ;
    border-color: #000000 ;
    box-shadow: none;
}
