.brushed-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Suggestion Dropdown Responsive Width */
.suggestion-dropdown-responsive {
  width: 100% !important;
  left: 0 !important;
}

@media (min-width: 768px) {
  .suggestion-dropdown-responsive {
    width: calc(100% + 22.8rem) !important;
    left: -10px !important;
  }
}

/* Suggestion Dropdown Close Button */
.suggestion-dropdown-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(220, 53, 69, 0.9);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1002;
}

.suggestion-dropdown-close:hover {
  background: rgba(220, 53, 69, 1);
  transform: scale(1.1);
}

.suggestion-dropdown-close::before {
  content: '×';
  color: white;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

