.avr-wrapper{
font-family:Arial;
background:white;
padding:30px;
max-width:1100px;
margin:auto;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
border-radius:10px;
}

.avr-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-bottom:20px;
}

.avr-grid-full{
grid-column:1/4;
}

label{
font-weight:bold;
display:block;
margin-bottom:4px;
}

input,textarea,select{
width:100%;
padding:6px;
border:1px solid #ccc;
border-radius:4px;
}

.avr-coords{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-bottom:10px;
}

#map{
height:420px;
width:100%;
border-radius:6px;
margin-top:10px;
}

.avr-buttons{
margin-top:15px;
display:flex;
gap:15px;
}

button{
background:#ca9b52;
color:white;
border:none;
padding:10px 16px;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#ca9b52;
}

table{
width:100%;
margin-top:25px;
border-collapse:collapse;
}

th{
background:#ca9b52;
color:white;
}

td,th{
border:1px solid #ccc;
padding:6px;
text-align:center;
}