.bg-primary {
    background-color: #0f766e;
}

.text-primary {
    color: #0f766e;
}

.table-header {
    background-color: #0f766e33;
}

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

/* =========================
   MINI TAILWIND - OPTION B
   Practical utilities (medium)
   ========================= */

/* -------------------------
   CORE COLORS / BRAND
   ------------------------- */
:root {
    --primary: #0f766e;
    --primary-20: rgba(15, 118, 110, 0.2);
    /* #0F766E33 */
    --border: #e6e6e6;
    --muted: #6b7280;
}

/* -------------------------
   RESET-ish helpers
   ------------------------- */
.box-border {
    box-sizing: border-box;
}

.box-content {
    box-sizing: content-box;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* -------------------------
   DISPLAY
   ------------------------- */
.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* -------------------------
   FLEX
   ------------------------- */
.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-no-wrap {
    flex-wrap: nowrap;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.justify-start {
    justify-content: flex-start;
}

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

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

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-stretch {
    align-items: stretch;
}

.items-baseline {
    align-items: baseline;
}

/* -------------------------
   GRID & COLUMNS
   ------------------------- */
.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-cols-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-cols-8 {
    grid-template-columns: repeat(8, 1fr);
}


.col-span-1 {
    grid-column: span 1 / span 1;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.col-span-4 {
    grid-column: span 4 / span 4;
}

.col-span-5 {
    grid-column: span 5 / span 5;
}

.col-span-6 {
    grid-column: span 6 / span 6;
}

/* -------------------------
   GAP
   ------------------------- */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

/* 4px */
.gap-2 {
    gap: 0.5rem;
}

/* 8px */
.gap-3 {
    gap: 0.75rem;
}

/* 12px */
.gap-4 {
    gap: 1rem;
}

/* 16px */
.gap-6 {
    gap: 1.5rem;
}

/* 24px */
.gap-8 {
    gap: 2rem;
}

.table-responsive-top {
    background-color: rgba(15, 118, 110, 0.2);
    /* height: 41px; */
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    gap: 12px;
    margin-bottom: 20px;
}

.b-green {
    border: rgba(15, 118, 110, 1) !important;
}

.bt-green {
    border-top: rgba(15, 118, 110, 1) !important;
}

.bb-green {
    border-bottom: rgba(15, 118, 110, 1) !important;
}

.bl-green {
    border-left: rgba(15, 118, 110, 1) !important;
}

.br-green {
    border-right: rgba(15, 118, 110, 1) !important;
}

/* 32px */

/* -------------------------
   SPACE-X / SPACE-Y
   (applies margin to adjacent siblings)
   ------------------------- */


/* -------------------------
   SPACING: margin and padding (0 - 10)
   0: 0, 1: .25rem, 2: .5rem, 3: .75rem, 4: 1rem, 5:1.25rem, 6:1.5rem, 8:2rem, 10:2.5rem
   ------------------------- */
.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

.m-1 {
    margin: 0.25rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.m-3 {
    margin: 0.75rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.m-4 {
    margin: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mr-4 {
    margin-right: 1rem;
}

.m-5 {
    margin: 1.25rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.m-6 {
    margin: 1.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.m-8 {
    margin: 2rem;
}

.m-10 {
    margin: 2.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Padding */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pr-1 {
    padding-right: 0.25rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pl-1 {
    padding-left: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

/* -------------------------
   WIDTHS / HEIGHTS
   ------------------------- */
.w-auto {
    width: auto;
}

.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

.w-1-2 {
    width: 50%;
}

.w-1-3 {
    width: 33.333333%;
}

.w-2-3 {
    width: 66.666667%;
}

.w-1-4 {
    width: 25%;
}

.w-3-4 {
    width: 75%;
}

.w-1 {
    width: 0.25rem;
}

.w-2 {
    width: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.w-8 {
    width: 2rem;
}

.w-16 {
    width: 4rem;
}

.max-w-full {
    max-width: 100%;
}

.max-w-screen {
    max-width: 100vw;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-1 {
    height: 0.25rem;
}

.h-2 {
    height: 0.5rem;
}

.h-4 {
    height: 1rem;
}

/* -------------------------
   TEXT / TYPOGRAPHY
   ------------------------- */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-20 {
    font-size: 20px;
}

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

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

.text-right {
    text-align: right;
}

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

.text-muted {
    color: var(--muted);
}

.text-white {
    color: #fff;
}

/* -------------------------
   FONT WEIGHTS
   ------------------------- */
.font-thin {
    font-weight: 100;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

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

/* requested */
.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

/* -------------------------
   BACKGROUNDS
   ------------------------- */
.bg-primary {
    background-color: var(--primary);
}

.table-header {
    background-color: var(--primary-20);
}

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

.bg-transparent {
    background-color: transparent;
}

/* -------------------------
   BORDERS & RADIUS
   ------------------------- */
.border {
    border: 1px solid var(--border);
}

.border-0 {
    border: none;
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-b {
    border-bottom: 1px solid var(--border);
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* -------------------------
   SHADOWS
   ------------------------- */
.shadow {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-md {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.shadow-lg {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

/* -------------------------
   OVERFLOW & SCROLLBAR
   ------------------------- */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* Hide scrollbar (cross-browser) */
.scrollbar-none::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* -------------------------
   POSITION
   ------------------------- */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
    top: 0;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

/* -------------------------
   Z-INDEX
   ------------------------- */
.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

/* -------------------------
   OPACITY / VISIBILITY
   ------------------------- */
.opacity-0 {
    opacity: 0;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-100 {
    opacity: 1;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* -------------------------
   TRANSITIONS & TRANSFORM
   ------------------------- */
.transition {
    transition: all 0.2s ease-in-out;
}

.transition-colors {
    transition:
        color 0.15s ease,
        background-color 0.15s ease;
}

.transition-transform {
    transition: transform 0.2s ease;
}

.transform {
    transform: translateZ(0);
}

.translate-x-1 {
    transform: translateX(0.25rem);
}

.translate-y-1 {
    transform: translateY(0.25rem);
}

.scale-95 {
    transform: scale(0.95);
}

.scale-100 {
    transform: scale(1);
}

/* Hover / Focus helpers (escaped colons for classname usage) */
.hover\:opacity-75:hover {
    opacity: 0.75;
}

.hover\:shadow-lg:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.hover\:translate-y-0:hover {
    transform: translateY(0);
}

.focus\:outline-none:focus {
    outline: 0;
}

.focus\:ring:focus {
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.green-round-button {
    display: inline-block;
    padding: 8px 20px 8px 20px;
    border: 1px solid #0f766e;
    border-radius: 25px;
    color: #0f766e;
    font-size: 14px;
    background: #fff;
    text-decoration: none !important;
    transition: 0.2s;
}

/* -------------------------
   CURSOR
   ------------------------- */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* -------------------------
   UTILITY: VISIBILITY / POINTER
   ------------------------- */
.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

/* -------------------------
   LISTS
   ------------------------- */
.list-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* -------------------------
   TABLE
   ------------------------- */
.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
}

/* -------------------------
   MISC
   ------------------------- */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.truncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* -------------------------
   ANIMATIONS: spin, pulse, ping, bounce
   ------------------------- */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {


    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {


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

    50% {
        opacity: 0.5;
        transform: scale(0.98);
    }
}

@keyframes bounce {


    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* -------------------------
   FORMS (basic)
   ------------------------- */
.input {
    display: inline-block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.08);
    border-color: var(--primary);
}

/* -------------------------
   UTILITIES YOU REQUESTED (explicit)
   ------------------------- */
.overflow-hidden {
    overflow: hidden;
}

/* included above but duplicated for clarity */
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-none::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.mt-0,
.pt-0 {
    margin-top: 0;
    padding-top: 0;
}

.mt-1,
.pt-1 {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

.mt-2,
.pt-2 {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.mt-3,
.pt-3 {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.mt-4,
.pt-4 {
    margin-top: 1rem;
    padding-top: 1rem;
}

.mt-6,
.pt-6 {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.mt-8,
.pt-8 {
    margin-top: 2rem;
    padding-top: 2rem;
}

.mt-10,
.pt-10 {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
}

/* -------------------------
   RESPONSIVE: sm / md / lg
   sm: 640px, md: 768px, lg: 1024px
   Add variant classes like "sm\:flex" in HTML.
   ------------------------- */
@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:flex {
        display: flex;
    }

    .sm\:grid {
        display: grid;
    }

    .sm\:hidden {
        display: none;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sm\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .sm\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .sm\:w-full {
        width: 100%;
    }

    .sm\:text-center {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:grid {
        display: grid;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .md\:text-left {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }

    .lg\:grid {
        display: grid;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
}

/* -------------------------
   USAGE NOTES:
   - Use the responsive variants like "sm\:flex" literally in the class attribute.
   - For hover/focus behaviors use the provided escape-style classes (e.g. "hover:...").
   - Brand colors are available as .bg-primary, .text-primary and .table-header.
   ------------------------- */

/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */
/* custom css */



.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green:focus-visible {
    color: #fff !important;
}


.breadcrumb {
    padding: 13.5px 0px !important;
    display: flex;
    align-items: center;
    /* margin-bottom: 10px !important; */
    font-size: 12px;
    color: rgba(15, 118, 110, 1);
    /* primary color */
    font-family: Arial, sans-serif;
    background-color: transparent !important;
}

.breadcrumb .crumb {
    text-decoration: none;
    color: rgba(15, 118, 110, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.breadcrumb .crumb i {
    margin-right: 6px;
}

.breadcrumb .crumb:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: rgba(15, 118, 110, 1);
    font-size: 12px;
}



input[readonly] {
    background-color: rgba(15, 118, 110, 0.1) !important;
    /* light green */
    cursor: not-allowed !important;
}



.popover-content {
    max-height: 425px;
    overflow-y: auto;
}

.select2-results__group {
    background-color: #eee !important;
    text-transform: uppercase;
}

.selectSpan .select2-container {
    width: 120px !important;
    margin-right: 11px;
}

/* .quoteTypeDiv .onoffswitch-active .quoteType::before{
    left: 60px !important;
  }
  .quoteTypeDiv .onoffswitch-inactive .quoteType::before{
    right: 60px !important;
  } */
.select2-selection__clear {
    display: none !important;
}

.search-wrapper {
    position: relative;

    /* responsive width logic */
    width: 100%;
    max-width: 328px;
    /* max half screen */

    /* layout safety inside flex */
    flex: 1 1 auto;
}



/* Mobile full width */
@media (max-width: 768px) {
    .search-wrapper {
        max-width: 50%;
    }
}

/* ICON */
.search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
}

/* INPUT */
.search-wrapper input {
    width: 100%;
    padding: 10px 16px;
    padding-left: 48px !important;
    /* space for icon */
    background-color: #f3f8f8;

    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.search-wrapper input:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.search-wrapper input::placeholder {
    color: #00000080;
    font-size: 12px;
}


/* Buttons Group */
.btn-group {
    display: flex;
    gap: 12px;
}

/* General Button Styles */
.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 1px;
    font-size: 14px !important;
    cursor: pointer;
    transition: 0.2s;
}

.btn i {
    font-size: 20px;
}

/* Export Button */
.export-btn {
    background: #fff !important;
    color: #0f766e !important;
    border: 1px solid #0f766e;
    border-radius: 10px !important;
    /* ROUNDED */
    padding: 10px 20px 10px 20px;
}

/* Refresh Button */
.refresh-btn {
    border-radius: 10px !important;
    /* ROUNDED */
    padding: 10px 20px 10px 20px;
    color: #fff;
}

.export-btn:hover {
    color: #0f766e !important;
}

.export-btn:active {
    color: #0f766e !important;
}

.export-btn:focus {
    color: #0f766e !important;
}

/* Refresh Button */
.refresh-btn {
    background: #0f766e;
    /* blue-600 */
}

.refresh-btn:hover {
    color: #fff;
}

/* Wrapper UL */
#quoteMenu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0% !important;
}

/* Remove the default bullet & spacing */
#quoteMenu li {
    list-style: none;
    margin: 0;
    text-align: center;

}

/* Base style for ALL quote tabs */
#quoteMenu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px 10px 20px;
    border: 1px solid #0f766e;
    /* Teal border */
    border-radius: 25px;
    /* Full rounded pill */
    color: #0f766e;
    font-size: 14px !important;
    background: #fff;
    font-weight: 500;
    text-decoration: none !important;
    transition: 0.2s;
    height: 37px !important;

}

/* Hover effect */
#quoteMenu li a:hover {
    background: #e6f7f5;
}

/* Active State (Matches the screenshot green filled tab) */
.quote-active {
    background: #0f766e !important;
    color: #fff !important;
    border-color: #0f766e !important;
}

.custom-green {
    border: 1px solid #0f766e !important;
    height: 45px !important;
    padding: 8px 10px;
    border-radius: 10px;
    appearance: none !important;
    /* Removes browser default select UI */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: white;
    /* Optional */
}

.input-1 {
    border: 1px solid #0f766e !important;
    height: 45px !important;
    padding: 8px 10px;
    border-radius: 10px;
    appearance: none !important;
    /* Removes browser default select UI */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: white;
    /* Optional */
}



.green-select2+.select2-container--default .select2-selection--single {
    border: 1px solid #0f766e !important;
    height: 45px !important;
    border-radius: 10px !important;
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
}

.green-select3 {
   border: 1px solid #0f766e !important;
    height: 45px !important;
    border-radius: 10px !important;
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    padding: 11.5px 10px !important;
    font-size: 14px;
}

/* .green-select2+.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px !important;
    height: 42px !important;
} */

.green-select2+.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}

.label-green {
    font-size: 12px !important;
    padding: 0% !important;
    font-weight: 400 !important;
    margin-bottom: 4px !important;
    color: #0f766e !important;
    font-size: 12px;
    padding: 0% !important;
    margin: 0 0 2px;
}


.label-1 {
    font-size: 12px !important;
    padding: 0% !important;
    font-weight: 400 !important;
    margin-bottom: 4px !important;
    color: #0f766e !important;
    font-size: 12px;
    padding: 0% !important;
    margin: 0 0 2px;
}


tbody {
    /* font-size: 15px !important; */
    font-size: 12px !important;
    /* border: 1px solid #a9cecb !important; */
}

th {
    /* font-size: 15px !important; */
    font-size: 14px !important;
}

thead {
    border: 1px solid #a9cecb !important;
    border-left: 1px solid #a9cecb !important;
    border-right: 1px solid #a9cecb !important;
    padding: 10px !important;
}

th {
    background-color: #0F766E33;
    /* border-left: 1px solid #a9cecb !important; */
    /* border-left: 1px solid #a9cecb !important; */
}

/* OUTER BORDER ONLY ON TOP HEADER */

/* TABLE BODY ROWS (NO BORDER AROUND TABLE) */
#quoteList tbody tr {
    border-bottom: 1px solid #edf5f2;
}

#quoteList tbody tr:last-child {
    border-bottom: none;
}

/* REMOVE DATATABLES DEFAULT BORDERS */
table.dataTable,
table.dataTable th,
table.dataTable td {
    border: none !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}


table.dataTable th {
    font-weight: 500 !important;
    font-size: 14px !important;
}

/* GENERAL WIDTH + SPACING RULES */
#quoteList {
    width: 100%;
    /* border-collapse: separate; */
    border-spacing: 0;
}

/* Pagination container */
.dataTables_paginate {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px !important;
}

/* UL */
.dataTables_paginate .pagination {
    gap: 6px;
}

/* Default page buttons */
.dataTables_paginate .paginate_button a {
    padding: 3px 16px 3px 16px;
    border: 1px solid transparent;
    /* make border invisible */
    border-radius: 0px !important;
    /* remove rounded corners for all */
    color: rgba(0, 0, 0, 1);
    font-size: 12px !important;
    background: transparent;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Hover */

/* Active page button */
.dataTables_paginate .paginate_button.active a {
    background: transparent;
    border-color: #1d6355 !important;
    font-weight: 600;
    color: #1d6355 !important;

    border-radius: 8px !important;
}

/* Active button hover = black text */
.dataTables_paginate .paginate_button.active a:hover {
    color: #1d6355 !important;
}

/* Disabled buttons */
.dataTables_paginate .paginate_button.disabled a {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Remove Bootstrap defaults */
.dataTables_paginate .pagination>li>a {
    box-shadow: none !important;
}

.dataTables_info {
    color: #0f766e;
    font-size: 12px;
    /* display: none !important; */
}

.filterMode.active i {
    color: green;
}

.filter-group {
    display: flex;
    gap: 12px;
}

.filterMode {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e6f2f1;
    /* Light green background */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.filterMode i {
    font-size: 12px;
    color: #2a7564;
    /* Teal icon color */
}

/* Active state */
.filterMode.active {
    background: rgba(15, 118, 110, 1) !important;
    border: 2px solid rgba(15, 118, 110, 1);
}

.filterMode.active i {
    color: #ffffff;
}

.col-sm-12 {
    width: 100% !important;
    padding: 0 !important;
}

.row {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pb-7 {
    padding-bottom: 7px;
}

.table-responsive {
    margin-top: 20px !important;
    padding-top: 0px !important;
    border: 1px solid rgba(15, 118, 110, 0.2) !important;
    border-radius: 12px;
}

/* REMOVE all borders from table cells */
table.dataTable td,
table.dataTable th {
    border: none !important;
}

/* APPLY bottom border only on each row */
#quoteList tbody tr {
    border-bottom: 1px solid rgba(15, 118, 110, 0.2) !important;
}

/* Optional: remove top border DataTables sometimes adds */
#quoteList {
    border: none !important;
}

#quoteList_wrapper .row:nth-of-type(2) {
    padding: 11.5px 10px !important;
    padding-bottom: 20px !important;
    /* adjust as you want */
}

td,
th {
    padding: 12px 10px;
}


td {
    padding-top: 22px;
}

th {
    white-space: nowrap;
}

label {
    font-size: 12px !important;
    padding: 0% !important;
    font-weight: 400 !important;
    margin-bottom: 4px !important;
    color: #0f766e !important;
    font-size: 12px;
    padding: 0% !important;
    margin: 0 0 2px;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 10px solid;
    border-color: rgba(15, 118, 110, 1)
        /* dark green */
        rgba(15, 118, 110, 0.2)
        /* transparent green */
        rgba(120, 200, 190, 0.4)
        /* light pastel green */
        rgba(15, 118, 110, 0.6);
    /* medium green for contrast */
    border-color: rgba(15, 118, 110, 1)
        /* dark green */
        rgba(15, 118, 110, 0.2)
        /* transparent green */
        rgba(120, 200, 190, 0.4)
        /* light pastel green */
        rgba(15, 118, 110, 0.6);
    /* medium green for contrast */
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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


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

.row .col-sm-6 {
    display: none !important;
}

/* new classes  */
/* new classes  */
/* new classes  */
/* new classes  */

.table-wrapper .loader {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.partner-form-wrapper {
    max-width: 366px;
    /* padding: 10px 5px; */
}

.form-row {
    margin-bottom: 28px;
}

.form-label {
    font-size: 12px !important;
    padding: 0% !important;
    font-weight: 400 !important;
    margin-bottom: 4px !important;
    color: #0f766e !important;
    font-size: 12px;
    padding: 0% !important;
    margin: 0 0 2px;
}

.form-input {
    width: 100%;
    height: 44px !important;
    padding: 0px 10px !important;
    padding: 0px 10px !important;
    font-size: 14px;
    border: 1px solid #1d6b63;
    border-radius: 10px;
    outline: none;
}

.form-input:focus {
    border-color: #14564f;
}

/* Checkbox rows layout (label left, toggles right) */
.checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Toggle Yes/No */
.radio-group {
    display: flex;
    align-items: center;
}

.toggle-label {
    cursor: pointer;
}

.toggle-inner {
    display: flex;
    gap: 14px;
    font-size: 18px;
    color: #1d6b63;
}

.toggle-yes,
.toggle-no {
    padding-left: 6px;
}

/* Buttons */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px !important;
    margin-top: 20px !important;
}

.form-input::placeholder {
    font-size: 12px;
    /* change to your preferred size */
    color: #1d6b63;
    /* optional: match your UI color */
    opacity: 1;
    /* ensures full visibility on some browsers */
    font-size: 12px;
    /* change to your preferred size */
    color: #1d6b63;
    /* optional: match your UI color */
    opacity: 1;
    /* ensures full visibility on some browsers */
}

.radio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.radio-group {
    display: flex;
    gap: 25px;
}

.radio-option {
    font-size: 20px;
    color: #1d6b63 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

input[type="radio"] {
    accent-color: rgba(15, 118, 110, 1);
}

@media (max-width: 991px) {
    .adjuster {
        width: 100% !important;
        justify-content: end !important;
        margin-top: 20px;
    }
}


input::placeholder {
    font-size: 12px !important;
}


.custom-modal .modal-dialog {
    max-width: 1140px;
    margin: 40px auto;
}

/* MODAL CONTENT */
.custom-modal-content {
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
    border: none;
}

/* HEADER */
.custom-modal-header {}

.custom-modal-header {}

.custom-modal-header h1 {
    font-size: 20px;
    color: rgba(15, 118, 110, 1) !important;
}

/* CLOSE BUTTON */
.custom-modal-header .close {
    font-size: 20px;
    line-height: 20px;
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

.custom-modal-header .close:hover {
    opacity: 1;
}

/* BODY */
.custom-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar styling */
.custom-modal-body::-webkit-scrollbar {
    width: 6px;
}


.custom-modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* FOOTER */
.custom-modal-footer {
    gap: 12px !important;
    margin-top: 20px !important;
}

/* ICON INSIDE DATE INPUT */
.date-icon-left {
    position: absolute;
    left: 10px;
    top: 35px;
    /* adjust if input height changes */
    top: 35px;
    /* adjust if input height changes */
    font-size: 15px;
    color: #6b7280;
    pointer-events: none;
}

/* Padding so text does not overlap icon */
.date-input-with-icon {
    padding-left: 35px !important;
}


.text-16 {
    font-size: 16px !important;
}

.spacing {
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.spacing-t-b {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

/* UNIVERSAL MODAL WRAPPER */
.custom-modal .modal-dialog {
    max-width: 1140px;
    margin: 40px auto;
}

/* MODAL CONTENT */
.custom-modal-content {
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
    border: none;
}

/* HEADER */
.custom-modal-header {}

.custom-modal-header {}

.custom-modal-header h1 {
    font-size: 20px;
    color: rgba(15, 118, 110, 1) !important;
}

/* CLOSE BUTTON */
.custom-modal-header .close {
    font-size: 20px;
    line-height: 20px;
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

.custom-modal-header .close:hover {
    opacity: 1;
}

/* BODY */
.custom-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar styling */
.custom-modal-body::-webkit-scrollbar {
    width: 6px;
}

.custom-modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* FOOTER */
.custom-modal-footer {
    gap: 12px !important;
    margin-top: 20px !important;
    margin-top: 20px !important;

}

/* ICON INSIDE DATE INPUT */
.date-icon-left {
    position: absolute;
    left: 10px;
    top: 35px;
    /* adjust if input height changes */
    font-size: 15px;
    color: #6b7280;
    pointer-events: none;
}

/* Padding so text does not overlap icon */
.date-input-with-icon {
    padding-left: 35px !important;
}

.form-group {
    margin-bottom: 0px !important;
}

.text-16 {
    font-size: 16px !important;
}

.col-xs-12 {
    padding: 0% !important;
}

.text-14 {
    font-size: 14px;
}

/* Hide the checkbox */
.onoffswitch-checkbox {
    display: none;
}

/* Wrapper */
.onoffswitch-label {
    cursor: pointer;
    display: inline-block;
}

/* INNER container */
.onoffswitch-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Base style for both buttons */
.onoffswitch-switch.quoteType {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgba(15, 118, 110, 1);
    color: rgba(15, 118, 110, 1);
    transition: all 0.25s ease;
}

/* ACTIVE (Admin) — filled pill */
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-active .quoteType {
    background-color: rgba(15, 118, 110, 1);
    color: #fff;
}

/* INACTIVE (Branch) — outlined pill */
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inactive .quoteType {
    background: transparent;
    color: rgba(15, 118, 110, 1);
}

/* When NOT checked → reverse roles */
.onoffswitch-checkbox:not(:checked)+.onoffswitch-label .onoffswitch-active .quoteType {
    background: transparent;
    color: rgba(15, 118, 110, 1);
}

.onoffswitch-checkbox:not(:checked)+.onoffswitch-label .onoffswitch-inactive .quoteType {
    background-color: rgba(15, 118, 110, 1);
    color: #fff;
}

.ui-autocomplete {
    z-index: 9999;
    background: rgb(255, 255, 255);
}

.hidden {
    display: none;
}

.btn-container {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.selectZipcodeOrCity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 20px !important;
    border: 2px solid rgba(15, 118, 110, 1);
    background: #ffffff;
    color: rgba(15, 118, 110, 1);
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.selectZipcodeOrCity i {
    font-size: 14px;
}

.selectZipcodeOrCity:hover {
    color: rgb(0, 0, 0);
}

.selectZipcodeOrCityActive {
    background: rgba(15, 118, 110, 1);
    color: white;
    border-color: rgba(15, 118, 110, 1);
}

.selectZipcodeOrCityActive:hover {
    background: rgba(15, 118, 110, 1);
}

.select-1 {
    border: 1px solid #0f766e !important;
    height: 45px !important;
    border-radius: 10px !important;
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    padding: 11.5px 10px !important;
    font-size: 14px;

}

.mar-left-5 {
    margin-left: 5px !important;
}

.h-150 {
    height: 150px !important;
}

.mar-bot-10 {
    margin-bottom: 10px !important;
}

.arrow-icons-lg {
    height: 36px;
    width: 36px;
}

.arrow-icons-lg i {
    font-size: 15px !important;
}

.arrow-active {
    background-color: #0f766e !important;
    color: #fff;
}

.arrow-active i {
    color: #fff !important;
}

.mar-right-5 {
    margin-right: 5px !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-column {
    flex-direction: column !important;
}

.mar-top-3-percent {
    margin-top: 3%;
}

.mar-10-horizontal {
    margin: 0px 10px !important;
}

.mar-10-vertical {
    margin: 10px 0px !important;
}

.color-black {
    color: #000 !important;
}

/* Refresh Button */
.refresh-btn-sm {
    background: #0f766e;
    border-radius: 5px !important;
    /* ROUNDED */
    padding: 5px 10px 5px 10px;
    color: #fff;
}

.refresh-btn-sm:hover {
    color: #fff;
}

.px-and-g-10 {
    padding: 0px 10px !important;
    gap: 10px !important;
}

a {
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

.mar-top-15rem {
    margin-top: 1.5rem !important;
}

.mar-bottom-10 {
    margin-bottom: 10px !important;
}

.btn-upload {
    height: 42px;
    padding: 0 16px;
    background: #2c8067;
    color: #fff;
    border-radius: 0;
    font-weight: 500;
    border: 1px solid #2c8067;
}

.btn-upload:hover {
    background: #256b56;
    color: #fff;
}

.btn-remove {
    height: 42px;
    padding: 0 14px;
    background: #ef4444;
    color: #fff;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    border: 1px solid #ef4444;
}

.btn-remove:hover {
    background: #dc2626;
    color: #fff;
}

.fileinput-filename {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spacing-1 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.spacing-b-20 {
    margin-bottom: 20px;
}

.spacing-b-20 {
    margin-bottom: 20px;
}

.spacing-t-20 {
    margin-top: 20px;
}

.m-null {
    margin-top: 0% !important;
    margin-bottom: 0% !important;
}

.fs-20 {
    font-size: 20px;
}

.mar-20-vertical {
    margin: 20px 0px !important;
}

.w-98 {
    width: 98%;
}

.height-39 {
    height: 39px !important;
}

.position-relative {
    position: relative;
}

.accepted-btn {
    padding: 5px 10px !important;
    background-color: rgba(15, 118, 110, 0.1);
    border-radius: 20px;
    font-size: 12px;
}

.spacing-detailed-title {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
}

.spacing-detailed-title-2 {
    margin-top: 10px !important;
    margin-bottom: 20px !important;

}

.gap-12 {
    gap: 12px;
}

.gap-20 {
    gap: 20px;
}


.capitalize {
    text-transform: capitalize;
}

.font-600 {
    font-weight: 600 !important;
}

.font-14 {
    font-size: 14px !important;
}


.title {
    color: #0f766e;
    font-size: 20px;
    margin-top: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.title-1 {
    color: #0f766e;
    font-size: 20px;
    font-weight: 600 !important;
    margin-top: 12px !important;
    margin-bottom: 20px !important;
}

.sub-title {
    color: #0f766e;
    font-size: 14px;
    font-weight: 600 !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}


.b-20 {
    margin-bottom: 20px !important;
}

.t-20 {
    margin-top: 20px !important;
}

.center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}



.btn-green {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px !important;
    gap: 8px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 1px;
    transition: 0.2s;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 10px !important;
    background: rgb(15, 118, 110);
    font-weight: 500;
}

.btn-white {
    color: rgb(15, 118, 110) !important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(15, 118, 110);
    border-image: initial;
    padding: 10px 20px;
    background: rgb(255, 255, 255) !important;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px !important;
    gap: 8px;
    transition: 0.2s;
    font-weight: 500;


}

.size-20 {
    font-size: 20px !important;
}

.size-14 {
    font-size: 14px !important;
}


.modal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0 !important;
    margin-bottom: 20px !important;

}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* h1 inside modal title */
.modal-title>h1 {
    margin: 0;
    font-size: 20px !important;
    font-weight: 600;
    color: #0F766E;
}

.custom-modal-header>h1 {
    margin: 0;
    font-size: 20px !important;
    font-weight: 600;
    color: #0F766E;
}



.modal-sub-title {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0F766E;

}

.material-symbols-outlined {
    font-size: 20px !important;
}

.s-24 {
    font-size: 24px !important;
}

.red {
    color: #f50101;
}

.green {
    color: rgba(15, 118, 110, 1) !important;
}

.action {
    padding: 0px 0px !important;
    gap: 10px !important;
    display: flex !important;
    align-items: center !important;
}

.s-22 {
    font-size: 22px !important;
}

.js-green {
    height: 44px;
    width: 44px;
    background-color: rgba(15, 118, 110, 0.2);
    border-radius: 112.5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none !important;
}

.js-green>span {
    font-size: 22px !important;
    color: #11766e !important;
}

.js-red {
    height: 44px;
    width: 44px;
    border-radius: 112.5px !important;
    display: flex;
    border: 1.13px solid rgba(207, 51, 51, 1);
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
}

.js-red>span {
    font-size: 22px !important;
    color: #f75050 !important;
    cursor: pointer !important;

}

.js-red,
.js-red * {
    cursor: pointer !important;
}


.js-red {
    pointer-events: auto !important;
}





input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;

    width: 20px !important;
    height: 20px !important;

    border: 1px solid rgba(15, 118, 110, 1) !important;
    background: transparent !important;

    cursor: pointer !important;
    position: relative !important;
    box-sizing: border-box !important;

    outline: none !important;
    box-shadow: none !important;
}

/* Kill browser focus / active styles */
input[type="checkbox"]:focus,
input[type="checkbox"]:active,
input[type="checkbox"]:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Green tick */
input[type="checkbox"]:checked::after {
    content: "" !important;
    position: absolute !important;

    left: 6px !important;
    top: 2px !important;

    width: 5px !important;
    height: 10px !important;

    border: solid rgba(15, 118, 110, 1) !important;
    border-width: 0 2px 2px 0 !important;

    transform: rotate(45deg) !important;
}


.dataTables_empty {
    text-align: center;
}

.spacing-b-10 {
    margin-bottom: 10px !important;
}

.top-customer {
    background-color: #97e1c2 !important;
    font-weight: 600;
}

.mail-menu {
    list-style-type: none;
}

.w-17 {
    width: 17%;
}

.w-83 {
    width: 83%;
}

.mail-view-container {
    background-color: #f5f5f5;
}


.mail-menu {
    height: 100%;

}

.mail-menu-item {
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mail-menu-item:hover {
    background-color: #e5e5e5;
    border-radius: 3px;
}

.position-fixed {
    position: fixed;
}



.mail-menu-item-active {
    background-color: #0F766E !important;
    color: #ffffff !important;
}




/* Search container */
.global-search-width {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Input wrapper (icon inside input) */
.global-search-input {
    position: relative;
    flex: 1;
}

/* Search icon inside input */
.global-search-input .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #6b7280;
    /* neutral gray */
    pointer-events: none;
}

/* Input styling */
.global-search-input input {
    width: 100%;
    padding-left: 44px !important;
    /* space for icon */
    width: 100%;
    padding: 10px 16px;
    /* space for icon */
    background-color: #f3f8f8;

    border: 1px solid rgba(15, 118, 110, 0.2);
    /* gray-300 */
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Prevent button shrinking */
.global-search-width button {
    flex-shrink: 0;
}

/* Mobile full width */
@media (max-width: 768px) {
    .global-search-width {
        max-width: 50%;
    }
}



.ui-widget-header {
    border: 1px solid #0f766e !important;
    background: #eaf2f1 !important;
    color: #0f766e !important;
    font-weight: bold;
}

.ui-widget-content {
    border: 1px solid #0f766e;
    background: #eaf2f1;
    color: #333333;
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    border-radius: 5px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #0f766e;
    background: #0f766e;
    font-weight: normal;
    color: #ffffff;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none;
    padding: 6px;
    text-align: center !important;
}

.custom-green-mail {
    border: none;
    border-bottom: 1px solid #0f766e !important;
    margin-bottom: 10px;
    width: 100%;
}

.custom-green-mail:focus {
    outline: none;
    border-bottom: 1px solid #0b635b !important;
}

.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    z-index: 1000;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #e5e5e5;
    border-radius: 3px;
}

.search-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-title {
    font-weight: 600;
}

.search-meta {
    font-size: 12px;
    color: #666666;
}



.select2-dropdown {
    background-color: #fff;
    border: 1px solid #0f766e;

    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}


.select2-search--dropdown {
    display: block;
    padding: 0px;


}



.text-only {
    font-size: 20px !important;
    margin: 0px !important;
    color: #0F766E !important;

}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px !important;
    color: #000;
}

a.js-red {
    cursor: pointer !important;
}

/* Base modal */
.modal-dialog {
    width: 95% !important;
    max-width: 600px !important;

}

.green-hover{

}
.green-hover:hover{
    background-color: #0F766E !important;
    color: white !important;
}
.modal-lg {
    width: 95% !important;
    max-width: 1100px !important;
}

/* ===== MD screens (tablets) ===== */
@media (max-width: 1024px) {
    .modal-dialog {
        max-width: 90% !important;
    }

    .modal-lg {
        max-width: 95% !important;
    }
}

/* ===== SM screens (mobile) ===== */
@media (max-width: 640px) {
    .modal-dialog,
    .modal-lg {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px auto !important;
    }
}


.spin {
    display: inline-block;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 10px;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: right 10px center;
} */



.refresh-btn:active,
.refresh-btn:focus,
.refresh-btn:focus-visible {
  color: white !important;

}


a {
  color: inherit;
  text-decoration: none;
}

/* a {
  color: inherit;
}

a:active{
    color: inherit;;
} */


 ::placeholder {
  color: #00000080 !important;
  opacity: 1; /* Important for Firefox */
}



label{
    text-transform: capitalize !important;
}


.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0F766E;
}

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