body{
    font-family: Arial, Helvetica, sans-serif;
}
.nav{
    position: absolute;
    top:0;
    left:0;
    width:100vw;
    background-color: whitesmoke;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 10;
    align-items: center; /* Align items vertically */
    height:90px;
    /* display: none; */
}

#title {
    display: inline-block;
    color: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2rem;
    padding:1rem 1rem;
}

.nav img{
    display: inline-block;
    height: 85px;
    margin-left: 2rem;
}

.nav div{
    flex-direction: row;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.navButtons {
    margin-right: 1vw;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
}
.navButtons div {
    padding-left: 15px;
    padding-right: 15px;
    font-size: small;
}

.navButtons a {
    color: inherit;
    text-decoration:none;
}

.navButtons div:hover {
    background-color: black;
    color: white;
}

.row {
    display: flex;
    flex-direction: row;
}

.column1 {
    flex: 3;
    width: 75vw;
    background-color: #f1f1f1; /* Just for visualization */
}

.column2 {
    flex: 1;
    width: 25vw;
    height: 100vh;
    overflow: auto;
    background-color: white; /* Add background color for visibility */
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .8em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body { 
    margin: 0; 
    padding: 0; 
}

#map { 
    position: absolute; 
    top: 90px; 
    bottom: 0; 
    width: 75%; 
    height: calc(100vh - 90px);
}

#menu {
    display: flex;
    flex-direction: column;
    padding: 6.5rem 1rem 1rem 1rem;
    width: 85%;
}

#menu span {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}


.toggle {
    background-color: rgb(235, 235, 235);
    color: inherit;
}

.toggle:hover{
    background-color: rgb(215, 215, 215);
}

.activeToggle {
    background-color: rgba(81, 126, 4, 0.872); 
    color: #ffffff;
}
.toggle , 
.activeToggle {
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: .7rem 15px;
    margin: .3rem;
    border-radius: 2rem;
    font-weight: bold;
}

#exports {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center; 
    justify-content: center; 


}

#exports button {
    background-color: rgb(235, 235, 235);
    color: inherit;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: .7rem 15px;
    margin: .3rem;
    margin-bottom: 3rem;
    border-radius: 2rem;
    font-weight: bold;
    width: 40%;
    border: none;
    cursor: pointer;
}

#exports button:hover{
    background-color: rgb(215, 215, 215);
}


#estimation-info{
    position: absolute; 
    top: 100px; 
    left: 10px; 
    width: 280px;
    padding: 1rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(255, 255, 255, 0.7);
    /* background-color: rgba(0, 0, 0, 0.646);
    color: #f1f1f1; */
    font-weight: lighter;
    text-align: center;
    border-radius: .3rem;
    display: flex;
    flex-direction: column;
}

#pedestrian-count{
    font-size: 2rem;
    font-weight: bold;
    padding-top: 8px;
}

.legend-container {
    position: absolute;
    bottom: 30px; 
    left: 10px; 
    background-color: rgba(255, 255, 255, 0.7);
    /* background-color: rgba(0, 0, 0, 0.646);
    color: #f1f1f1; */
    padding: 15px 20px 5px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    font-size: 14px;
}

.legend-container b{
    padding-bottom: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.legend-icon {
    width: 12px;
    height: 12px;
    margin: 0 12px;
    border:1px solid black;
    border-radius: 5%;
}

.legend-label {
    font-size: 12px;
}

.off{
    display: none;
}

.content {
    position: absolute;
    top:90px;
    left:0;
    padding: 5rem;
}

table {
    border-collapse: collapse;
    width: 80%;
    margin: 20px 10%;
}

th {
    font-weight: bold;
    background-color: rgb(198, 5, 5);
    color: white;
}

th, td {
    text-align: left;
    padding: 15px;
    border: 1px solid black;
}

table a {
    color: inherit;
    text-decoration:none;
}

table span{
    text-decoration: solid underline red 3px;
}

.head {
    font-weight: bold;
}
/* 
#toggleButton {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    position: absolute;
    bottom: 10px;
    right: calc(25vw + 10px);
    z-index: 10;
}

#toggleButton:hover {
    background-color: #0056b3;
} */