html,
body{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    overflow:hidden;
	
		font-size:clamp(16px, 3vw, 14px);

	background:#A8B58A;
}
body.gray{
filter: grayscale(100%);
}
input, select{
	width:100%;
	background:lavender;
}
#app{
    width:95%;
	max-width:860px;
    max-height:95vh;
	
	background:#BCC59B;
	palmbackground:#7A8C5A;


    border:3px solid #4a5a4a;
    box-shadow:
        0 0 5px rgba(0,0,0,0.3),
        0 0 15px rgba(0,0,0,0.15);

    margin: auto;
	margin-top: 5px;
	overflow:hidden;
}

/*acopilot v2.0*/
#appname{
	font-size:clamp(24px, 2vw, 24px);
	text-align: center;
	
	border-bottom: 3px solid black;
	margin-bottom: 5px;	
}

/* linea menu superior*/
#apptools{
	display:table;
	width:100%;	
}
.toptools{
	display:table-cell;
	padding:5px;
}
.menuname{
	color:white;
	background:black;
	padding: 3px;
}
#mainMenu{
	cursor: pointer;
}
#contenedor{
	position: relative;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	min-height: 30vh;
	overflow: auto;
	max-height: 75vh;
}
/* menu desplegable */
.dropdown{
display:none;
position:absolute;
right:0;
top:0;
background:#e0e0e0;
border:1px solid #000;
width:160px;
z-index:100;
}

.dropdown div{
padding:5px;
cursor:pointer;
}

.dropdown div:hover{
background:#cfcfcf;
}
#secMenu{
	
}
#secciones{
	border-bottom: solid 1px black;
}
button.activo{
    background:#aaa;
    transform:translateY(1px);
}
