.coverage-area-form{
	display:flex;
	gap:10px;
}
.coverage-area-form label{
	color:#ffffff!important;
}
#check-coverage-btn{
	width:100%;
	padding:12px 24px;
	border-radius:10px;
	border:0px;
	font-size:18px;
	cursor:pointer;
}
#check-coverage-btn:hover{
	background:#ffffff;
	color:#23214D;
}
/* Popup styles */
.coverage-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999; /* Increased z-index to ensure it appears above other elements */
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.popup-close:hover {
    color: #333;
}

.popup-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.happy-icon, .sad-icon {
    width: 100%;
    height: 100%;
}

.popup-content p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

#coverage-available-popup p {
    color: #4CAF50;
}

#no-coverage-popup p {
    color: #F44336;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    flex: 1;
    font-size: 16px;
}

#packages-btn, #connect-btn {
    background-color: #4CAF50;
    color: white;
}

#packages-btn:hover, #connect-btn:hover {
    background-color: #388e3c;
}

#search-again-btn, #notify-us-btn {
    background-color: #F44336;
    color: white;
}

#search-again-btn:hover, #notify-us-btn:hover {
    background-color: #d32f2f;
}
