/* --- FORCE ELEMENTOR OVERRIDE --- */
.crb-wrapper *,
.crb-wrapper *::before,
.crb-wrapper *::after {
  all: revert;
  box-sizing: border-box !important;
  font-family: "Inter", sans-serif !important;
}

/* Layout */
.crb-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 40px 16px !important;
}

.crb-card {
  width: 100% !important;
  max-width: 380px !important;
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  overflow: hidden !important;
}

/* Search Box */
.crb-wrapper .crb-search-box {
  position: relative !important;
  padding: 16px 18px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  background: #fff !important;
  overflow: visible !important;
}

/* INPUT */
.crb-wrapper .crb-search-box input {
  width: 100% !important;
  padding: 10px 14px 10px 40px !important; /* left padding reduced for icon */
  border: 2px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  color: #111827 !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease !important;
}

.crb-wrapper .crb-search-box input::placeholder {
  color: #9ca3af !important;
}

.crb-wrapper .crb-search-box input:focus {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.15) !important;
}

/* ICON */
.crb-wrapper .crb-icon {
  position: absolute !important;
  top: 50% !important;
  left: 20px !important;              /* PERFECT alignment inside input */
  transform: translateY(-50%) !important;
  z-index: 101 !important;            /* ensures it’s above input background */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;    /* keeps input clickable */
}

.crb-wrapper .crb-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #22c55e !important;         /* visible on white background */
  stroke-width: 2 !important;
  display: block !important;
  opacity: 1 !important;              /* guarantees visibility */
}

/* Filter Row */
.crb-wrapper .crb-filter-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important; /* pushes label left & select right */
  padding: 12px 18px !important;
  gap: 120px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  font-size: 14px !important;
  color: #374151 !important;
  background: #fff !important;
}

.crb-wrapper .crb-filter-row label {
  font-weight: 500 !important;
  white-space: nowrap !important;
}

.crb-wrapper .crb-filter-row select {
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  background: #fff !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  min-width: 110px !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2322c55e' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 14px !important;
}

.crb-wrapper .crb-filter-row select:focus {
  border-color: #22c55e !important;
}


/* List */
.crb-wrapper .crb-list {
  padding: 6px 0 !important;
  background: #fff !important;
}

.crb-wrapper .crb-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 18px !important;
  border-bottom: 1px solid #f3f4f6 !important;
  transition: background 0.2s !important;
}

.crb-wrapper .crb-item:hover {
  background: #f9fafb !important;
}

.crb-wrapper .crb-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.crb-wrapper .crb-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
}

.crb-wrapper .crb-dot.good { background: #10b981 !important; }
.crb-wrapper .crb-dot.blacklisted { background: #ef4444 !important; }

.crb-wrapper .crb-name {
  font-weight: 500 !important;
  color: #111827 !important;
}

.crb-wrapper .crb-checkbox {
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #d1d5db !important;
  border-radius: 4px !important;
}

/* Responsive */
@media (max-width: 480px) {
  .crb-card {
    max-width: 95% !important;
  }
  .crb-wrapper .crb-search-box input {
    padding: 8px 12px 8px 36px !important;
    font-size: 14px !important;
  }
  .crb-wrapper .crb-filter-row {
    flex-wrap: wrap !important;
  }
}









