/* =========================================================
   QUICK CHIPS - 2x2 COMPACT GRID
========================================================= */

.quick-buttons {
  padding: 9px 12px !important;

  background: #ffffff;
  border-top: 1px solid #e2edf7;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;

  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.quick-buttons::-webkit-scrollbar {
  display: none !important;
}

.quick-buttons button {
  width: 100% !important;
  min-width: 0 !important;
  flex: unset !important;

  min-height: 34px !important;
  padding: 0 10px !important;

  border: 1px solid #bfdaf0;
  border-radius: 999px;

  background: #ffffff;
  color: var(--hcb-blue-700);

  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;

  cursor: pointer;

  box-shadow: 0 4px 10px rgba(15, 35, 65, 0.045);

  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
	
outline: none !important;
box-shadow: 0 4px 10px rgba(15, 35, 65, 0.045) !important;
-webkit-tap-highlight-color: transparent;
}

.quick-buttons button:hover,
.quick-buttons button:focus,
.quick-buttons button:focus-visible {
  transform: translateY(-1px);

  background: linear-gradient(135deg, #f2fbff 0%, #dff5ff 100%) !important;
  border-color: #86d8ff !important;
  color: #075fa8 !important;

  outline: none !important;

  box-shadow:
    0 8px 18px rgba(14, 165, 245, 0.13),
    0 0 0 2px rgba(103, 216, 255, 0.28) !important;
}

.quick-buttons button:active {
  transform: translateY(0) scale(0.99);
  background: linear-gradient(135deg, #e8f8ff 0%, #d2efff 100%) !important;
  border-color: #6fd0ff !important;
  color: #075fa8 !important;

  outline: none !important;

  box-shadow:
    0 5px 12px rgba(14, 165, 245, 0.14),
    0 0 0 2px rgba(103, 216, 255, 0.30) !important;
}

.quick-buttons button:active {
  transform: translateY(0) scale(0.99);
}

@media (max-width: 420px) {
  .quick-buttons {
    padding: 8px 10px !important;
    gap: 7px !important;
  }

  .quick-buttons button {
    min-height: 33px !important;
    padding: 0 8px !important;
    font-size: 10.5px !important;
  }
}