html, body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  position: relative;
}

a span {
  margin: auto 10px;
}

/*Styling the map and map controls*/

.map {
  height: calc(100vh - 90px);
  width: 100vw;
}

.ol-rotate, .ol-attribution button {
    display: none !important;
}

.ol-attribution {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 11px;
    padding: 4px;
    z-index: 1000;
}

.ol-zoom {
    position: absolute !important;
    top: 0.75rem !important;
    left: 0.75rem !important;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
}

.ol-zoom button {
    opacity: 0.8;
    background-color: #0d6efd;
    border: 1px solid #0a58ca;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    text-align: center;
    border-radius: 0.2rem;
    transition: background-color 0.15s ease-in-out;
    cursor: pointer;
    width: 34px;
    height: 34px;
}

.ol-zoom button:hover {
    opacity: 0.8;
    background-color: #0b5ed7;
}

/*Styling the output on the results page*/

.res-wrap {
  padding-top: 10px;
}

#res-text, #download-btn, h1, h3 {
    padding-left: 45px;
    padding-right: 45px;
}

h1, h3{
    padding-top: 25px;
}

#back-btn {
    float: right;
    padding-right: 45px;
}

/*Styling the buttons and forms on the index page*/

.form-group {
    margin-bottom: 1rem;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    text-align: center;
}

.form-select-sm {
    width: 220px !important;
    height: 30px !important;
}


#clear {
    border: none;
    background: none;
}


#submit {
    width: 90px;
    height: 40px;
    float: right;
    margin-left: 20px;
    margin-top: 20px;
}