/* adressevaelger styles*/
.autocomplete-container {
    /* relative position for at de absolut positionerede forslag får korrekt placering.*/
    position: relative;
    width: 100%;
    max-width: 30em;
}

.autocomplete-container input {
    /* Både input og forslag får samme bredde som omkringliggende DIV */
    width: 100%;
    box-sizing: border-box;
}

.adressevaelger-suggestions {
    margin: 0.3em 0 0 0;
    padding: 0;
    text-align: left;
    border-radius: 0.3125em;
    background: white;
    box-shadow: 0 0.0625em 0.15625em rgba(0, 0, 0, 0.15);
    position: relative;
    left: 0;
    right: 0;
    z-index: 9999;
    overflow-y: auto;
    box-sizing: border-box;
    overflow-y: scroll;
    max-height: 250px;
}


.adressevaelger-suggestions .adressevaelger-suggestion {
    margin: 0;
    list-style: none;
    cursor: pointer;
    padding: 20px 30px;
    color: #333;
    border-bottom-width: 0;
}

.adressevaelger-suggestions .adressevaelger-suggestion:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.adressevaelger-suggestions .adressevaelger-suggestion:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    border-bottom-width: 0.0625em;
}

.adressevaelger-suggestions
.adressevaelger-suggestion.dawa-selected,
.adressevaelger-suggestions .adressevaelger-suggestion:hover {
    background: #f0f0f0;
}

.manual-address-box {
  position: relative;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem; /* Tailwind p-4 = 1rem (16px) */
  background-color: #f3f4f6; /* Tailwind bg-gray-100 */
}

.manual-address-btn {
    display: inline-flex;
    align-items: center;

    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;

    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 500;

    color: #ffffff;
    background-color: #111827;

    transition: background-color 150ms ease-in-out,
    border-color 150ms ease-in-out,
    box-shadow 150ms ease-in-out;

    cursor: pointer;
}

.manual-address-btn:hover {
    background-color: #374151;
}

.manual-address-btn:active {
    background-color: #374151;
}

.manual-address-btn:focus {
    outline: none;
    border-color: #374151;
    box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.15);
}
