body {
    /* font-family: 'Inter', sans-serif !important; */
    background-color: #fff;
}

.container-fluid {
  margin-top: 3px;
}

.wh-card-header {
    font-weight: 600;
    font-size: 20px;
    margin: 0px;
    padding: 0.6rem 1rem;
    letter-spacing: 0.3px;
    color: #1e2a35;                  /* modern dark text */
}

.offcanvas-header {
    border-bottom: 1px solid #e0e0e0; /* light gray border */
    background-color: #1a2a39;       /* light background */
    padding: 0.65rem 0.80rem;
}

.offcanvas-header .btn-close {
    filter: invert(1); /* Invert color for dark background */
}

.offcanvas-header .offcanvas-title {
    /* font-weight: 600;
    margin: 0px;
    padding: 0.25rem 1rem; */
    font-size: 17px;
    letter-spacing: 0.3px;
    color: #eaedf0;                  /* modern dark text */
}
.offcanvas-header .text-muted {
    color: #d1d5db !important;       /* lighter text for dark background */
    font-size: 12px;
}

.offcanvas-body {
    padding: 1rem;
    background-color: #f9f9f9;       /* light background */
    color: #333333;                  /* dark text */
    font-size: 13px;
}

.filter-panel-bar {
    margin-left: 0.08rem;
    margin-right: 0.08rem;
}

/* font size adjustments */
.f-9 {
    font-size: 9px !important;
}
.f-10 {
    font-size: 10px !important;
}
.f-11 {
    font-size: 11px !important;
}
.f-12 {
    font-size: 12px !important;
}
.f-13 {
    font-size: 13px !important;
}
.f-14 {
    font-size: 14px !important;
}
.f-15 {
    font-size: 15px !important;
}
.f-16 {
    font-size: 16px !important;
}

.wh-required {
    position: relative;
}

/* Red star */
.wh-required::after {
    content: " *";
    color: rgb(238, 10, 10);
    margin-top: 4px;
    font-weight: 600;
    font-size: 14px;
}

/* Tooltip default state */
.wh-required::before {
    content: "This field is required";
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #333;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;

    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

/* Show tooltip on hover */
.wh-required:hover::before {
    opacity: 1;
}

.swal2-container {
    z-index: 2000000000 !important;
}

.input-group-select2 {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.select2-group-text {
    border-top-right-radius: 0; 
    border-bottom-right-radius: 0; 
    border-right: 0; 
    height: auto;
}
.input-group-select2 .select2-container--default .select2-selection--multiple {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    width: 100% !important;
}


/* More Details offcanvas */
.details-list .list-group-item {
    padding: 18px 20px;
}

.details-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.details-row {
    margin-bottom: 6px;
    font-size: 14px;
}

.details-row .details-row-title {
    color: #6c757d;
    margin-right: 5px;
}

.details-badges .badge {
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 6px 10px;
    font-size: 12px;
}



/* Timeline container */
.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #dee2e6;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.timeline-content {
  padding-left: 15px;
}

.timeline-title {
  font-weight: 600;
  font-size: 14px;
}

.timeline-meta {
  font-size: 13px;
  color: #6c757d;
}

/* CSV Drop Zone */
.csv-drop-zone {
    border: 2px dashed #0d6efd;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #f8faff;
}

.csv-drop-zone:hover {
    background: #eef4ff;
}

.csv-drop-zone.dragover {
    background: #e0ebff;
    border-color: #084298;
}

#csvFileInfo {
    font-size: 14px;
    color: #084298;
}

button.btn.btn-outline-light.active,
a.btn.btn-outline-light.active {
    background-color: #664c4c33 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}


/* table font size adjustments */
/* .table td {
    font-size: 12px !important;
}
.table th {
    font-size: 13px !important;
} */

/* font size in modal */
/* .modal-body {
    font-size: 14px !important;
}
.modal-header .modal-title {
    font-size: 18px !important;
} */



