.pac-container, .pac-item {
	z-index: 2147483647 !important;	
}

/* Modal overlay */
.verification-modal {
	display: none; /* Hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	z-index: 1000; /* Ensure it's on top of other elements */
	font-size: 12px;
	color: black;
	
}
.modal-message {
	padding: 4px 0px 0px 0px;
}
/* Modal content */
.verification-modal .modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	width: 90%;
	max-width: 300px;
}

.address-details {	
	padding: 10px 0px 0px 0px;	
	/*border-radius: 8px;
	border: solid 1px;	
	padding: 5px;
	border-color: blue;*/
}
	.address-details .header {
		padding: 5px 0px 5px 0px;
	}
	.address-details .details {
		border-radius: 8px;
		border: solid 1px;
		padding: 5px;
		border-color: #ecf0ef;
	}
	/* Address suggestions list */
	.verification-modal .address-suggestions {
		list-style: none;
		padding: 0;
		margin: 20px 0;
	}

		.verification-modal .address-suggestions li {
			padding: 10px;
			border-bottom: 1px solid #eee;
			cursor: pointer;
		}

			.verification-modal .address-suggestions li:hover {
				background: #f9f9f9;
			}

.address-note {
	color: #7b7878 !important;
	font-style: italic !important;
	font-size: 10px !important;
	padding: 2px 2px 2px 4px !important;
	clear: both;
}

.address-radio {
	display: flex;
	padding: 10px 20px 0px 0px;	
	justify-content: space-between;
}
/* Modal buttons */
.verification-modal .modal-buttons {
	display: flex;
	margin-top: 20px;
	justify-content: right;
	direction: rtl;
}

		.verification-modal .modal-buttons button {
			padding: 10px 20px;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			font-size: 14px;
			margin-right :5px;
		}

		.verification-modal .modal-buttons .confirm-address {
			background: #007bff;
			color: white;
		}

			.verification-modal .modal-buttons .confirm-address:hover {
				background: #0056b3;
			}

		.verification-modal .modal-buttons .cancel-verification {
			background: #6c757d;
			color: white;
		}

			.verification-modal .modal-buttons .cancel-verification:hover {
				background: #5a6268;
			}
