
/* MDM.GPX.CSS */

:root { 
  --layersPNGImagePath: url('../images/layers.png');
  --layersSVGImagePath: url('../images/layers.svg'); 
  --layers2xImagePath: url('../images/layers-2x.png'); 
}

.dialogs {
	max-width: 500px;
	overflow: auto;
	white-space: pre-wrap;
	border-radius: 10px;
	border: 2px solid #008060;
	background-color: #E8E8E8;
}

/* Fixes the issue of the blue border around the dialog box in Safari */
.dialogs:focus {
	outline: none !important;
}

.dialogButtons {
	display: inline-block;
	outline: 0;
	cursor: pointer;
	text-align: center;
	border: 0;
	padding: 7px 10px;
	min-height: 30px;
	min-width: 36px;
	color: #ffffff;
	background: #008060;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px, rgba(0, 0, 0, 0.2) 0px -1px 0px 0px inset;
	:hover {
	    background: #006e52;
	}
	margin: 2px;
}
