/**
 * Address Autocomplete Styles
 */

/* Autocomplete wrapper */
.mtj-address-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

/* Autocomplete dropdown */
.mtj-address-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.mtj-address-autocomplete-dropdown.active {
    display: block;
}

/* Autocomplete items */
.mtj-address-autocomplete-item {
    padding: 16px 20px !important;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mtj-address-autocomplete-item:last-child {
    border-bottom: none;
}

.mtj-address-autocomplete-item:hover,
.mtj-address-autocomplete-item.active {
    background-color: #f0fdf4;
}

.mtj-address-autocomplete-item.active {
    background-color: #dcfce7;
}

/* Icon */
.mtj-address-autocomplete-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.mtj-address-autocomplete-item:hover .mtj-address-autocomplete-icon,
.mtj-address-autocomplete-item.active .mtj-address-autocomplete-icon {
    color: #16a34a;
}

/* Text content */
.mtj-address-autocomplete-text {
    flex: 1;
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.mtj-address-autocomplete-text strong {
    color: #111827;
    font-weight: 600;
}

/* Loading state */
.mtj-address-autocomplete-loading {
    padding: 16px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.mtj-address-autocomplete-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top-color: #16a34a;
    border-radius: 50%;
    animation: mtj-spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes mtj-spin {
    to {
        transform: rotate(360deg);
    }
}

/* No results */
.mtj-address-autocomplete-empty {
    padding: 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Input styling when dropdown is open */
.mtj-address-autocomplete-wrapper.active input {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Type badge for vejnavne */
.mtj-address-type-badge {
    font-size: 10px;
    text-transform: uppercase;
    padding: 2px 6px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
