.jvm-zoom-btn.jvm-zoomin,
.jvm-zoom-btn.jvm-zoomout {
  top: 10px;
  background: #d1d5db;
  color: #111827;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}

.slick-dots {
  display: flex !important;
}

.fc-toolbar-title {
  font-size: 24px !important;
  font-weight: 600;
}

.fc-button {
  border-color: var(--primary-600) !important;
  background: #fff !important;
  color: var(--primary-600) !important;
  font-weight: 600 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-width: 80px !important;
}

.fc-button:hover {
  background-color: var(--primary-50) !important;
}

.fc-button-active {
  color: #fff !important;
  background-color: var(--primary-600) !important;
}

.fc-button-active:hover {
  color: #fff !important;
  background-color: var(--primary-600) !important;
}

.fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
  box-shadow: none !important;
}

.fc-toolbar-chunk {
  display: flex !important;
}

.fc .fc-button-primary:focus {
  box-shadow: none !important;
}

.fc-h-event {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  background-color: var(--primary-50) !important;
  color: var(--primary-600) !important;
}

.fc-h-event .fc-event-main {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  background-color: var(--primary-50) !important;
  color: var(--primary-600) !important;
}

.fc-v-event .fc-event-main {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  background-color: var(--primary-50) !important;
  color: var(--primary-600) !important;
}

.fc-daygrid-day-number {
  transition: background-color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 50%;
}

.fc-daygrid-day:hover .fc-daygrid-day-number {
  background-color: var(--primary-100) !important;
  color: var(--primary-600) !important;
  transition: background-color 0.2s;
}

.slider-progress .active {
  transition: all 0.3s linear;
}

.slick-list {
  margin: 0 -7px;
}

.slick-slide>div {
  padding: 0 10px;
}

.center-gap {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.image-upload__boxInner.custom {
  display: flex;
  justify-content: center;
  align-items: center;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: unset !important;
}

/* Hide all submenus by default */
.sidebar-submenu {
  /* display: none; */
  list-style: none;
  padding-left: 20px;
  /* Adjust as needed */
}

.sidebar-menu .sidebar-submenu {
  display: block;
}

/* Optional: Add transition for smooth toggle */
.sidebar-menu .dropdown .sidebar-submenu {
  transition: max-height 0.3s linear;
  overflow: hidden;
  max-height: 0px;
}

/* .sidebar-menu .dropdown.open .sidebar-submenu {
  max-height: 1000px;
} */

.sidebar-menu li>a>i {
  margin-inline-end: 0;
}

.mr-10 {
  margin-right: 10px !important;
}

.sidebar-menu .sidebar-submenu li a {
  gap: 12px;
}

.sidebar-menu .sidebar-submenu li>.active-page {
  background-color: var(--button-secondary);
  color: var(--text-primary-light);
}

.sidebar-menu li>a.active-page:hover {
  color: var(--text-primary-light);
}

.me-8 {
  margin-right: 8px;
}

.gap-10 {
  display: flex;
  gap: 8px;
}

.w-33 {
  width: 33.33%;
}

.overlay::after {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 0;
  height: 100%;
  background-color: #000;
  opacity: 0.65;
  transition: all 0.3s;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.overlay.active::after {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

@media(max-width : 620px) {
  .overlay.active::after {
    width: 0%;
    transition: all 0.3s ease-in-out;
  }
}


@media(min-width : 1200px) {
  .overlay.active::after {
    width: 0%;
    transition: all 0.3s ease-in-out;
  }
}

.Gallery-masonry {
  background: #000;
  z-index: 99999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

/* ── Project pipeline status pills (Board + List) ──────────────────────────
   Pastel fill + dark text + a leading colour dot, matching the app's badge
   language. Class is `status-pill status-<key>` (see statusConfig.jsx). */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.status-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.status-draft            { background: #EEF0F2; color: #5A6473; }
.status-quoted           { background: #E7F0FF; color: #1F5BD0; }
.status-technical_survey { background: #FFF3E0; color: #9A6304; }
.status-in_production    { background: #F1EAFB; color: #6A38C9; }
.status-complete         { background: #E6F7EF; color: #0F7A52; }
.status-dead             { background: #FBEAEA; color: #B23636; }

/* ── Pipeline list view ────────────────────────────────────────────────── */
.pipeline-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.pipeline-table thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-light-gray, #8a8f98);
  padding: 0 20px 12px;
  border-bottom: 1px solid #ebecef;
  white-space: nowrap;
}
.pipeline-table thead th.text-end { text-align: right; }
.pipeline-table tbody tr {
  background: #fff;
  transition: background 0.15s ease;
}
.pipeline-table tbody tr:hover { background: #f7f8fa; }
.pipeline-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f1f3;
  vertical-align: middle;
  font-size: 14px;
  color: #1a1a2e;
}
.pipeline-table tbody tr:last-child td { border-bottom: none; }
.pipeline-cust { display: flex; align-items: center; gap: 12px; }
.pipeline-cust__avatar {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ebecef;
  background: #f3f4f6;
}
.pipeline-cust__name { font-size: 14px; font-weight: 500; color: #1a1a2e; line-height: 1.2; }
.pipeline-cust__code {
  font-size: 11px; font-weight: 400; letter-spacing: 0.5px;
  text-transform: uppercase; color: #8a8f98;
}
.pipeline-model { font-size: 14px; color: #1a1a2e; }
.pipeline-model small { display: block; color: #8a8f98; font-size: 12px; }
.pipeline-muted { color: #6b7176; font-size: 13px; }
.pipeline-value { font-weight: 600; color: #1a1a2e; white-space: nowrap; }
.pipeline-empty { text-align: center; color: #8a8f98; padding: 48px 0; }
.pipeline-count { font-size: 13px; color: #8a8f98; }
