/* ==========================================================================
   Viesman Meilisearch — FO search styles (Doofinder-style modal)
   Author: gofenice
   ========================================================================== */

:root {
  --vms-primary: #ff5a00; /* Viesmann orange */
  --vms-primary-hover: #e04e00;
  --vms-text-main: #1e293b;
  --vms-text-muted: #64748b;
  --vms-border: #e2e8f0;
  --vms-bg-light: #f8fafc;
  --vms-overlay: rgba(15, 23, 42, 0.4);
  --vms-radius-sm: 6px;
  --vms-radius-md: 12px;
  --vms-radius-lg: 30px;
  --vms-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --vms-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --vms-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ── 1. Header Trigger Input ────────────────────────────────────── */
.vms-trigger-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 0;
}
.vms-trigger-bar {
  display: flex;
  align-items: center;
  border: 2px solid var(--vms-border);
  border-radius: var(--vms-radius-lg);
  padding: 8px 16px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vms-trigger-bar:hover {
  border-color: var(--vms-primary);
  box-shadow: var(--vms-shadow-sm);
}
.vms-trigger-icon {
  font-size: 16px;
  color: var(--vms-text-muted);
  margin-right: 10px;
  user-select: none;
}
.vms-trigger-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--vms-text-muted);
  cursor: pointer;
  pointer-events: none; /* Prevents focus on trigger input since it redirects to modal */
}

/* ── 2. Fullscreen Search Modal ──────────────────────────────────── */
.vms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vms-overlay);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.vms-modal.is-open {
  opacity: 1;
}

.vms-modal-content {
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--vms-shadow-lg);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.vms-modal.is-open .vms-modal-content {
  transform: translateY(0);
}

/* Modal Header */
.vms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--vms-border);
  gap: 30px;
}
.vms-modal-logo {
  display: flex;
  align-items: center;
  min-width: 140px;
}
.vms-logo-img {
  max-height: 45px;
  object-fit: contain;
}
.vms-logo-fallback {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--vms-primary);
}

.vms-modal-searchbox-wrap {
  flex: 1;
  max-width: 800px;
}
.vms-modal-searchbox-wrap .ais-SearchBox-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--vms-border);
  border-radius: var(--vms-radius-lg);
  padding: 6px 12px 6px 20px;
  background: var(--vms-bg-light);
  transition: all 0.25s ease;
}
.vms-modal-searchbox-wrap .ais-SearchBox-form:focus-within {
  border-color: var(--vms-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
}
.vms-modal-searchbox-wrap .ais-SearchBox-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--vms-text-main);
  padding: 6px 0;
}
.vms-modal-searchbox-wrap .ais-SearchBox-submit,
.vms-modal-searchbox-wrap .ais-SearchBox-reset {
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
  color: var(--vms-text-muted);
}
.vms-modal-searchbox-wrap .ais-SearchBox-submitIcon,
.vms-modal-searchbox-wrap .ais-SearchBox-resetIcon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.vms-modal-close {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 300;
  color: var(--vms-text-muted);
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s;
}
.vms-modal-close:hover {
  color: var(--vms-primary);
}

/* Recent searches row */
.vms-modal-recent-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 40px;
  background: #fffcf9;
  border-bottom: 1px solid rgba(255, 90, 0, 0.08);
  flex-wrap: wrap;
}
.vms-recent-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vms-text-muted);
}
.vms-recent-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vms-recent-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--vms-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--vms-text-main);
  cursor: pointer;
  transition: all 0.15s;
}
.vms-recent-pill:hover {
  border-color: var(--vms-primary);
  color: var(--vms-primary);
}
.vms-recent-pill-remove {
  font-size: 10px;
  color: var(--vms-text-muted);
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  padding: 2px;
}
.vms-recent-pill-remove:hover {
  color: var(--vms-primary);
}
.vms-recent-clear-all {
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--vms-primary);
  cursor: pointer;
  margin-left: auto;
}
.vms-recent-clear-all:hover {
  text-decoration: underline;
}

/* ── 3. Modal Body Layout ────────────────────────────────────────── */
.vms-modal-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  flex: 1;
  overflow: hidden;
}
.vms-modal-sidebar {
  border-right: 1px solid var(--vms-border);
  padding: 30px 40px;
  overflow-y: auto;
}
.vms-modal-main {
  padding: 30px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--vms-bg-light);
}

/* Popular searches */
.vms-pop-searches-section {
  display: flex;
  flex-direction: column;
}
.vms-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vms-text-main);
  margin-bottom: 20px;
}
.vms-pop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vms-pop-list li {
  margin-bottom: 12px;
}
.vms-pop-item {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--vms-text-muted);
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
  transition: color 0.15s;
}
.vms-pop-item:hover {
  color: var(--vms-primary);
}

/* Sidebar refinements */
.vms-filter-block {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--vms-border);
  padding-bottom: 20px;
}
.vms-filter-block:last-child {
  border: none;
}
.vms-filter-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vms-text-main);
  margin-bottom: 14px;
}

/* InstantSearch refinement widgets */
.ais-RefinementList-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ais-RefinementList-item {
  margin-bottom: 8px;
}
.ais-RefinementList-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--vms-text-main);
  cursor: pointer;
  width: 100%;
}
.ais-RefinementList-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--vms-primary);
  border: 1px solid var(--vms-border);
  border-radius: 4px;
}
.ais-RefinementList-labelText {
  flex: 1;
}
.ais-RefinementList-count {
  font-size: 11px;
  color: var(--vms-text-muted);
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 10px;
}
.ais-RefinementList-item--selected .ais-RefinementList-labelText {
  font-weight: 700;
  color: var(--vms-primary);
}

/* Price range inputs */
.ais-RangeInput-form {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ais-RangeInput-input {
  width: 100%;
  border: 1.5px solid var(--vms-border);
  border-radius: var(--vms-radius-sm);
  padding: 6px;
  font-size: 13px;
  outline: none;
}
.ais-RangeInput-submit {
  background: var(--vms-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--vms-radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Main content top header */
.vms-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.vms-results-count {
  font-size: 14px;
  color: var(--vms-text-muted);
  font-weight: 500;
}
.vms-results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vms-sort-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vms-text-muted);
}
.ais-SortBy-select {
  border: 1px solid var(--vms-border);
  border-radius: var(--vms-radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  background: #ffffff;
  outline: none;
  cursor: pointer;
}

/* Hits Grid */
.vms-modal-hits-grid {
  width: 100%;
}

/* ── 4. Product Card Styling ────────────────────────────────────── */
.vms-hit-card {
  background: #ffffff;
  border: 1px solid var(--vms-border);
  border-radius: var(--vms-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}
.vms-hit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vms-shadow-md);
}

.vms-hit-img-link {
  display: block;
  position: relative;
  padding-bottom: 100%; /* Square aspect ratio */
  background: #f8fafc;
  overflow: hidden;
}
.vms-hit-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}
.vms-hit-card:hover .vms-hit-img {
  transform: scale(1.04);
}
.vms-hit-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--vms-text-muted);
}

/* Stock status badge */
.vms-stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 10;
}
.vms-stock-badge--in {
  background: #e6f7ed;
  color: #2e7d32;
}
.vms-stock-badge--low {
  background: #fff3e0;
  color: #ef6c00;
}
.vms-stock-badge--out {
  background: #ffebee;
  color: #c62828;
}

.vms-hit-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.vms-hit-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vms-primary);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-align: center;
}
.vms-hit-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--vms-text-main);
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
}
.vms-hit-excerpt {
  font-size: 11px;
  color: var(--vms-text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
}

/* ── B2B Price Box Styling ─────────────────────────────────────── */
.vms-price-box {
  margin-top: auto;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.vms-price-large {
  font-size: 16px;
  font-weight: 800;
  color: var(--vms-text-dark);
  line-height: 1.2;
}
.vms-price-small {
  font-size: 11px;
  font-weight: 500;
  color: var(--vms-text-muted);
  margin-top: 3px;
}
.vms-price-discount-label {
  font-size: 10px;
  font-weight: 700;
  color: #e2001a;
  margin-top: 6px;
  text-transform: uppercase;
}
.vms-price-discount-value {
  font-size: 14px;
  font-weight: 800;
  color: #e2001a;
  line-height: 1.2;
  margin-top: 2px;
}

/* Add to cart button */
.vms-add-to-cart-btn {
  display: block;
  width: 100%;
  background: #e2001a;
  color: #ffffff !important;
  border: none;
  border-radius: var(--vms-radius-sm);
  padding: 10px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  margin-top: auto;
}
.vms-add-to-cart-btn:hover {
  background: #be0014;
  text-decoration: none !important;
}
.vms-add-to-cart-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}
.vms-add-to-cart-btn.success {
  background: #10b981;
}ackground: var(--vms-primary);
  color: #ffffff !important;
  border: none;
  border-radius: var(--vms-radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none !important;
}
.vms-hit-btn:hover {
  background: var(--vms-primary-hover);
}

/* Pagination */
.vms-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.vms-pagination-wrap .ais-Pagination-list {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vms-pagination-wrap .ais-Pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--vms-border);
  border-radius: var(--vms-radius-sm);
  color: var(--vms-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  background: #ffffff;
  transition: all 0.15s;
}
.vms-pagination-wrap .ais-Pagination-link:hover {
  border-color: var(--vms-primary);
  color: var(--vms-primary);
}
.vms-pagination-wrap .ais-Pagination-item--selected .ais-Pagination-link {
  background: var(--vms-primary);
  color: #ffffff;
  border-color: var(--vms-primary);
}

/* No results */
.vms-no-results {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: var(--vms-radius-md);
  border: 1px solid var(--vms-border);
}
.vms-no-results-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .vms-modal-header {
    padding: 15px 20px;
  }
  .vms-modal-recent-row {
    padding: 10px 20px;
  }
  .vms-modal-body {
    grid-template-columns: 1fr;
  }
  .vms-modal-sidebar {
    display: none; /* Hide filters on mobile for simpler layout */
  }
  .vms-modal-main {
    padding: 20px;
  }
}

/* Hide native browser search input cancel buttons */
.vms-modal-searchbox-wrap input[type="search"]::-webkit-search-decoration,
.vms-modal-searchbox-wrap input[type="search"]::-webkit-search-cancel-button,
.vms-modal-searchbox-wrap input[type="search"]::-webkit-search-results-button,
.vms-modal-searchbox-wrap input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  display: none;
}
.vms-modal-searchbox-wrap input[type="search"] {
  -moz-appearance: none;
  appearance: none;
}

/* Load More / Show More button styling */
.vms-load-more-btn {
  display: block;
  margin: 30px auto 10px;
  background: var(--vms-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--vms-radius-sm);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  outline: none;
  box-shadow: var(--vms-shadow-sm);
}
.vms-load-more-btn:hover {
  background: var(--vms-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--vms-shadow-md);
}
.vms-load-more-btn:active {
  transform: translateY(0);
}
.ais-InfiniteHits-loadMore--disabled {
  display: none !important;
}

/* Featured Products grid and card styles */
.vms-featured-products-section {
  margin-top: 10px;
  margin-bottom: 40px;
  width: 100%;
}
.vms-featured-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vms-text-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--vms-primary);
  display: inline-block;
  padding-bottom: 5px;
}
/* Custom featured wrapper (relying on Bootstrap layout) */
.vms-featured-grid {
  margin-top: 15px;
}

/* ── Rheostat Price Slider Custom Styling ──────────────────────── */
.ais-RangeSlider {
  padding: 15px 10px 5px;
}
.rheostat {
  overflow: visible;
  margin-top: 25px;
  margin-bottom: 25px;
}
.rheostat-background {
  background-color: var(--vms-border);
  border: none;
  border-radius: 4px;
  height: 6px;
  position: relative;
}
.rheostat-progress {
  background-color: var(--vms-primary);
  height: 6px;
  position: absolute;
  top: 0;
}
.rheostat-handle {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 2px solid var(--vms-primary);
  border-radius: 50%;
  cursor: grab;
  top: -6px;
  margin-left: -9px;
  box-shadow: var(--vms-shadow-sm);
  transition: transform 0.1s, background-color 0.15s;
  position: absolute;
  z-index: 2;
  outline: none;
}
.rheostat-handle:hover {
  background-color: var(--vms-bg-light);
  transform: scale(1.1);
}
.rheostat-handle:active {
  cursor: grabbing;
}
.rheostat-tooltip {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: var(--vms-text-dark);
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.rheostat-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: var(--vms-text-dark) transparent transparent;
  display: block;
  width: 0;
}

/* ── Custom Grid System for Search overlay ──────────────────────── */
.vms-products-row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-right: -10px !important;
  margin-left: -10px !important;
  width: 100% !important;
  list-style: none !important;
  padding: 0 !important;
}

.vms-product-col {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  padding: 10px !important;
  box-sizing: border-box !important;
}

@media (max-width: 992px) {
  .vms-product-col {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
  }
}

@media (max-width: 768px) {
  .vms-product-col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 480px) {
  .vms-product-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* ── Custom Card styling (completely independent) ───────────────── */
.vms-product-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-sizing: border-box !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  position: relative !important;
}
.vms-product-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03) !important;
}

.vms-card-img-wrap {
  width: 100% !important;
  padding-bottom: 100% !important;
  position: relative !important;
  background: #f8fafc !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
}
.vms-card-img-wrap img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 10px !important;
}
.vms-img-placeholder {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f1f5f9 !important;
  color: #94a3b8 !important;
  font-size: 24px !important;
}

.vms-card-body {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.vms-card-brand {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #e2001a !important;
  margin-bottom: 4px !important;
}

.vms-card-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin: 0 0 10px !important;
  text-align: center !important;
  height: 38px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}
.vms-card-title a {
  color: #0f172a !important;
  text-decoration: none !important;
}
.vms-card-title a:hover {
  color: #e2001a !important;
}

.vms-card-prices {
  margin-top: auto !important;
  margin-bottom: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.vms-price-ht {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}
.vms-price-ttc {
  font-size: 11px !important;
  color: #64748b !important;
  margin-top: 2px !important;
}
.vms-price-discount-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #e2001a !important;
  margin-top: 6px !important;
  text-transform: uppercase !important;
}
.vms-price-discount-val {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #e2001a !important;
  margin-top: 2px !important;
}

.vms-card-btn-wrap {
  width: 100% !important;
}
.vms-card-add-btn {
  display: block !important;
  width: 100% !important;
  background: #e2001a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 10px 12px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  text-align: center !important;
  outline: none !important;
}
.vms-card-add-btn:hover {
  background: #be0014 !important;
}
.vms-card-add-btn:disabled {
  background: #94a3b8 !important;
  cursor: not-allowed !important;
}
.vms-card-add-btn.success {
  background: #10b981 !important;
}




