@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
  overscroll-behavior-x: none;
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: white;
  text-align: center;
  height: 1.5em !important;
  opacity: .5;
  margin-top: 0px;
  margin-bottom: 0px;
}

.hr-text::before {
  content: '';
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}

.hr-text::after {
  content: attr(content);
  position: relative;
  display: inline-block;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #818078;
  background-color: inherit;
}

button[class*="MUIDataTableSelectCell-expandDisabled"] svg {
  display: none !important;
}

.react-autosuggest__container {
  position: relative;
  width: 100%;
}

.react-autosuggest__suggestions-container {
  display: none;
}

.react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  top: 48px;          /* Höhe des TextFields */
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background-color: #1e1e1e; /* dark mode */
  border: 1px solid #555;
  border-radius: 20px;
  z-index: 3000;       /* ABOVE everything */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.react-autosuggest__suggestion {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}

.react-autosuggest__suggestion--highlighted {
  background-color: #333;
}
