body { background-color: #f8f9fa; font-family: "Helvetica Neue", Arial, sans-serif; }
#loadingSpinner {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(2px);
  z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white;
}
.custom-header {
  background-color: #343a40; color: white; font-weight: bold; font-size: 0.8rem;
  padding: 8px 4px; border-radius: 6px; margin-bottom: 6px;
}
.table-input { font-size: 0.9rem; padding: 0.3rem 0.4rem; }
.table-select { font-size: 0.9rem; padding: 0.3rem 1.5rem 0.3rem 0.4rem; }
.d-none { display: none !important; }

/* Autocomplete suggestions */
.position-relative { position: relative; }
.suggestion-list {
  display: none; position: absolute; top: 100%; left: 0; width: 100%;
  max-height: 200px; overflow-y: auto; background: white; border: 1px solid #ccc;
  z-index: 1000; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.suggestion-item {
  padding: 8px; cursor: pointer; border-bottom: 1px solid #eee;
}
.suggestion-item:hover { background-color: #f0f0f0; }