.query-panel-container {
  position: relative;
  z-index: 1050 !important;
  transition: opacity 0.15s ease, height 0.15s ease;
  opacity: 1;
}

.query-panel-container.hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin-bottom: 0 !important;
}

/* Add styles for the quick panel positioning if needed */
quick-panel {
    position: fixed;
    bottom: 50px; /* Adjust as needed, above footer */
    right: 20px;
    z-index: 10000 !important; /* Highest priority - must be above all other elements */
    /* Add other styles like background, padding, shadow etc. */
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
