.inputslinha {

	border-color: black;
	border-top: none;
	border-left: none;
	border-right: none;
	color: black;
	background: transparent;
	text-align: center;
	font-size: 16px;
}

.buttonpadrao {

	border-radius: 5px;
	background: rgb(229, 36, 84);
	border: none;
	color: white;

}

.buttonpadrao:hover {

	background: red;


}

.buttonpadrao:active {

	background: rgb(146, 70, 169);


}

.buttongoogle {

	border-radius: 5px;
	background: transparent;
	color: back;


}

.buttongoogle:hover {

	background: rgba(0, 0, 0, 0.1);
}

.buttongoogle:active {

	background: rgba(0, 0, 0, 0.5);
}

.inputcaixa {

	border: 1px solid gray;
	border-radius: 5px;
	text-align: center;
	font-size: 16px;

}


html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#map {
	width: 100%;
	height: 100%;
}

.marker-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateY(-100%);
	user-select: none;
	position: relative;
}

.marker-label {
	color: #ff5757;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: -2px;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	white-space: nowrap;
	pointer-events: none;
}

.marker-img {
	cursor: pointer;
	display: block;
	position: relative;
	z-index: 1;
}

/* 🔴 Bolinha sobre o marcador */
.marker-badge {
	position: absolute;
	padding-top: 2px;
	top: 0px;
	left: -4px;
	background-color: #ff5757;
	color: white;
	font-weight: bold;
	font-size: 10px;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index: 2;
	/* garante que fica por cima da imagem */
}