html {
	width: 100%;
	height: 100%;
}

body {
	font: 14px helvetica neue, helvetica, arial, sans-serif;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

button {
	margin-right: 10px;
}

#cy {
	width: 100%;
	height: 90%;
	z-index: 999;
}

#refresh {
    background-color: #4CAF50; /* Colore verde moderno */
    border: none;
    color: white;
    padding: 10px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#refresh i {
    margin-right: 8px;
}

#refresh:hover {
    background-color: #45a049; /* Colore più scuro al passaggio del mouse */
    transform: scale(1.05); /* Leggera espansione al passaggio del mouse */
}

.config {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 17em;
	background: rgba(0, 0, 0, 0.666);
	box-sizing: border-box;
	padding: 1em;
	color: #fff;
	transition-property: opacity;
	transition-duration: 250ms;
	transition-timing-function: ease-out;
	overflow: auto;
	z-index: 1;
}

.param {
	margin-bottom: 1em;
}

.preamble {
	margin-bottom: 2em;
}

p {
	margin: 0.5em 0;
	font-size: 0.8em;
}

.param button {
	width: 3em;
	margin-right: 0.25em;
	text-align: center;
}

a,
a:hover {
	color: #8BB0D0;
}

.label {
	display: block;
}

.slider {
	display: block;
	width: 100%;
	margin: 0;
}

.config-toggle {
	position: absolute;
	right: 0;
	top: 0;
	padding: 1em;
	margin: 0.2em;
	cursor: pointer;
	color: #fff;
	z-index: 9999999;
}

.config-closed .config {
	opacity: 0;
	pointer-events: none;
}

.config-closed #cy {
	right: 0;
}

.tip-link {
	display: block;
}

@media (max-width: 600px){
	#cy {
		right: 0;
	}
}