/* Styling for address fields */
input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
}

/* Styling for autofill fields */
input[type="text"] {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    color: #555;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    padding: 8px 12px;
    box-sizing: border-box;
}

/* Highlight autofilled fields */
input[type="text"].autofilled {
    background-color: #e0f7fa;
    border-color: #80deea;
    font-weight: bold;
    color: #333;
}

/* Style for placeholder text */
input[type="text"]:placeholder-shown {
    font-style: italic;
    color: #999;
}

/* Google Places Autocomplete dropdown styling */
.pac-container {
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-family: inherit;
    border: 1px solid #ddd;
}

.pac-item {
    padding: 8px 12px;
    cursor: pointer;
}

.pac-item:hover {
    background-color: #f5f5f5;
}

.pac-item-selected {
    background-color: #e0f7fa;
} 