@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body, html {
	margin: 0px;
	font-family: "Roboto", serif;
}

.header {
	position: fixed;
	z-index: 200;
	top: 0px;
	width: calc(100% - 40px);
	background-color: #a9d6a3;
	color: #141414;
	padding: 10px;
	margin: 10px;
	font-size: 20px;
	border-radius: 100px;
}

.leaflet-control {
	padding-top: 40px;
	border: none !important;
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.preview {
	width: 200px;
	border-radius: 10px;
}

.popuptext {
	padding: 10px;
}

a {
	color: #078e1e;
}

.leaflet-popup-close-button {
	background-color: #fff !important;
	margin: 10px;
	color: #000;
	border-radius: 20px;
	box-shadow: #000 0px 0px 10px;
}

.pill {
	position: fixed;
	z-index: 4000;
	top: 15px;
	right: 14px;
	font-weight: 400;
	border-radius: 100px;
	background-color: #1e722c;
	color: #fff;
	padding: 8px;
	padding-left: 35px;
	padding-right: 13px;
	background-size: 25px;
	background-repeat: no-repeat;
	background-position-y: 5px;
	background-position-x: 6px;
	
	
}

.addbutton {
	background-image: url('./assets/add.svg');
}

.mapbutton {
	background-image: url('./assets/map.svg');
}

.pill a{
	color: #fff !important;
	text-decoration: none !important;
}

.content {
	width: 94%;
	padding: 30px 3% 3% 3%;
}


.leaflet-popup-content-wrapper, .leaflet-popup-tip {
	background-color: #ffffffb3 !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.leaflet-popup-content {
	margin: 0px !important;
}


.leaflet-control {
	position: fixed !important;
	right: 10px !important;
	bottom: 0px !important;
}

.leaflet-control-zoom {
	margin-bottom: 30px;
}

.waveline {
    width: 100%;
    height: 18px;
    background-image: url(./assets/wave.svg);
    background-size: 29px;
    margin-top: 15px;
    margin-bottom: 40px;
    background-repeat: repeat-x;
}

h2 {
	font-weight: 200;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #161616;
		color: #fff;
	}

	a {
		color: #1e722c;
	}

	#map {
		background-color: #161616;
	}

	.leaflet-popup-content-wrapper, .leaflet-popup-tip {
		background-color: #121212dd !important;
		color: #fff !important;
	}

	.leaflet-popup-content-wrapper a{
		color: #0cc8d5 !important;
	}

	.leaflet-layer,
	.leaflet-control-attribution,
	.leaflet-control {
		filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%) saturate(50%);
	}

	.leaflet-marker-icon {
		filter: invert(100%);
		
	}

	.header {
		background-color: #062502;
		color: #fff;
	}
	
}




