

h1, h2, h3, h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}
h1, h2, h3, h4 {
    line-height: 1.5;
}

body {
    font-family: 'Open Sans', Helvetica Neue, Helvetica;
}
body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
}

h2 {
    font-size: 21px;
}

.btn{
    margin: 5px;
    width: 120px;
    height: 40px;
}


 /* Swap button */
#swap-btn {
    background-color: #6c757d;  /* Bootstrap grey */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#swap-btn:hover {
    background-color: #5a6268; /* Slightly darker grey on hover */
}

/* Convert button */
#convert-btn {
    background-color: #007bff; /* Bootstrap blue */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#convert-btn:hover {
    background-color: #0069d9; /* Darker blue on hover */
}

/* Clear button */
#clear-btn {
    background-color: #6c757d;  /* Same grey as swap button */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#clear-btn:hover {
    background-color: #5a6268;
}

.map_marker_tooltip{
    text-align: left;
}

#table-container {
    height:50vh;
    overflow:scroll;
    border: solid 1px grey;
}

#map-container {
    height:30vh;
}

#map-id {
    margin-top:50px;
}