body, html{ 
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	}


header{ 
		background-color: white;
	display: flex;
	align-items: center;
	padding: 10px; /*espacio al borde*/
}

header h1{ 
		color: #000369;
	text-align: center;
	flex-grow: 1; /* centrar ocupando el espacio restante*/
}

@media(max-width:768px){
    header{
        flex-direction: column;
        text-align: center;
    }

    #logo{
        margin-right: 0;
        margin-bottom: 10px;
    }
}

#logo{ 		
		height: 50px;
	margin-right: 20px;
	display: flex;
	align-items: center;	
}

#map{ 
		border-style: ridge;
		height: calc(100vh - 180px);
		min-height: 600px;
}

.popup-img-zona{
    width   : 400px;
    height  : 245px;
	max-width: 100%;
}
.popup-img-prov{
    width   : 200px;
    height  : auto;
	max-width: 100%;
}

.button-container {
    padding: 20px; 
}
.button-container button {
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
}

.button-container button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#selector {
	margin: 10px;
	padding: 8px 10px;
}


#route button {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding: 10px 12px;
	border: 0;
	border-radius: 4px;
	background: #0d6efd;
	color: #fff;
	cursor: pointer;
}

#route button:disabled {
	background: #b7c2d0;
	cursor: not-allowed;
}

@media(max-width:768px){
    #map {
        height: calc(100vh - 240px);
        min-height: 420px;
    }

    .popup-img-zona{
        width: 100%;
        height: auto;
    }
}
