@charset "UTF-8";
.dmind-menu-search-li .toggle-search {
  margin: 0 1rem;
  background-color: transparent;
  border-width: 0;
}

/* Suchformular als Overlay über die gesamte Seite */
#search-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* Dunkles Overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  /* Wenn aktiv, wird das Suchformular sichtbar */
  /* Suchfeld-Container */
  /* Suchfeld */
  /* Suchbutton */
  /* Schließen-Button (optional) */
}
#search-form-container.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#search-form-container .search-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#search-form-container .search-container .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#search-form-container .search-field {
  width: 80%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  outline: none;
  background: rgb(240, 240, 240);
  color: black;
}
#search-form-container #searchbutton {
  background: #007bff;
  border: none;
  padding: 12px 18px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  transition: background 0.3s ease;
}
#search-form-container #searchbutton:hover {
  background: #0056b3;
}
#search-form-container #searchbutton svg {
  fill: white;
}
#search-form-container .close-search {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#search-form-container .close-search:hover {
  opacity: 0.7;
}

/* Responsives Design für Mobilgeräte */
@media (max-width: 768px) {
  .search-container {
    width: 90%;
  }
  .search-field {
    width: 70%;
    font-size: 16px;
  }
  #searchbutton {
    padding: 10px 14px;
  }
}

/*# sourceMappingURL=dmind-wp-searchfield.css.map */
