/* Your custom CSS here */
.country-list ul {
    list-style: none;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-grow: 1;
	flex-shrink: 0;
	margin: 0;
	gap: 35px;
	
}

.country-list li {
    margin: 0;
}

.country-link {
    font-size: 16px;
	font-weight: 500;
    color: rgba(0, 85, 159, 1) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.3s ease;
	padding: 30px;
	min-width: 170px;
	box-shadow: 0px 5px 8px 0px rgba(237,237,237,1);
	background: #fff;
	border-radius: 20px;
	display: flex;
flex-direction: column;
}


.country-count {
    color: rgba(0, 85, 159, 1);
	font-size: 34px;
	font-weight: 600;
	margin-top: 10px;
}

.map-container {
    width: 100%;
	height: 500px;
    position: relative;
    border: 1px solid #ddd;
    margin-top: 80px;
}

.common-map {
    width: 100%;
    height: 100%;
}

.leaflet-tooltip {
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 4px;
    padding: 5px;
}
.leaflet-popup-content {margin: 0 !important;}
.bindpopup-wrap {display: flex; flex-wrap: wrap; flex-direction: column; font-family: Montserrat,sans-serif;}
.country-name {color: rgba(0, 0, 0, 1); font-size: 12px; font-weight: 500;}
.country-number {color: rgba(0, 85, 159, 1); font-size: 20px; font-weight: 600;}

@media (min-width: 1025px) and (max-width: 1380px) {
	.map-container {
	margin-top: 70px;
		}
}


@media (min-width: 768px) and (max-width: 1024px) {
	.map-container {
	margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.map-container {
	margin-top: 50px;
	}
}