/**
 * Autocomplete Google Address - Frontend Styles
 */
.aga-autocomplete-dropdown {
    position: absolute;
    z-index: 99999;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    box-sizing: border-box;
}

.aga-dropdown-above {
    border-top: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.aga-autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s ease;
}

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

.aga-autocomplete-item:hover,
.aga-autocomplete-item--active {
    background-color: #f5f5f5;
}

/* Loading & Status Messages */
.aga-autocomplete-status {
    padding: 12px 14px;
    font-size: 13px;
    color: #888;
    text-align: center;
    cursor: default;
}

/* Google Attribution */
.aga-autocomplete-attribution {
    padding: 6px 14px;
    text-align: right;
    border-top: 1px solid #f0f0f0;
    cursor: default;
    background: #fafafa;
}

.aga-autocomplete-attribution img {
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;
}

/* Map Preview */
.aga-map-preview {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    overflow: hidden;
}
