body {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 10px;
}
section {
    box-sizing: border-box;
    width: 415px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.head {
  box-sizing: border-box;
  width: 415px;
  padding: 0 15px 0 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot {
  box-sizing: border-box;
  width: 415px;
  display: flex;
  align-items: center;
  justify-content:end; 
  padding: 7px;
}

a {
  line-height: 0; 
}

h5
{
    color: #444;
    margin: 0 0 4px 0;
}

select, input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
select {
    width: 100%;
}

.txtclk {
    cursor: pointer;
    color: #0056b3;
    font-size: 12px;
}

button {
    background-color: black;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
    height: 30px;
    width: 65px;
    line-height: 30px;

    
    display: inline-flex;           
    align-items: center;
    justify-content: center;
    padding: 0;
                             
}

.btn-map { background-color: #007bff; }
.btn-map:hover { background-color: #0056b3; }

.btn-json { background-color: #28a745; }
.btn-json:hover { background-color: #218838; }

.btn-csv { background-color: #ffc107; }
.btn-csv:hover { background-color: #e0a800; }

button.loading .label { animation: spin 1.5s ease-in-out infinite; display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }









