html {
    height: 100%;
    margin: 0;
}

body {
    height: 100%; 
    margin: 0px;
    display: flex;
}


.left {
    flex-wrap:wrap;
    flex: 1;
}

.right {
    flex: 1;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 50vh;
    margin: 0;
    gap: 10px;
    background-color: rgb(204, 204, 204); /* grey */
/*     overflow-y: auto; */
}

#map {
    min-height: 100%;
}

#content {
    height: 100%;
    padding: 10px;
    overflow: hidden;
}

#edited-div {
    height: 100%;
    margin: 0;
}

#info {
    display: flex;
    flex-direction: column;
    background-color: rgb(204, 204, 204);
    margin: 0px;
    height: 100%;
}

#up {
    color: white; /* text color */
    padding: 10px;
    margin-bottom: 5px;
    text-align: center;
    /* background-color: rgb(255, 234, 234); */ /* pink */
    /* background-color: rgb(224, 247, 247); */ /* light blue */
    background-color: #2660b9;
    border-radius: 5px;
    height: 30px;
}

#home-down {
    font-family: Arial, Helvetica, sans-serif;  
    font-size: 14px;    
    padding: 10px;
    margin-bottom: 10px;
    background-color: white; /* light blue */    
    /* background-color: rgb(224, 247, 247); */ /* light blue */
    overflow-y: auto;
    border-radius: 5px;
}

#down {
    margin: 5px;
    background-color: white;
    /* background-color: rgb(224, 247, 247); */ /* light blue */
    overflow-y: auto;
}

h1, h2 {
    font-family: Arial, Helvetica, sans-serif;  
    font-size: 16px;
    margin: 0;
}

p {
    font-family: Arial, Helvetica, sans-serif;  
    font-size: 12px;
    margin: 5px;
}


table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;  
    font-size: 12px;
    vertical-align: text-top; 
}

th {
    position: sticky;
    top: 0;
    background-color: aliceblue;
}

img {
    max-height: 100%;
    max-width: 100%;
}

ul {
    margin: 0px;
    padding: 0 5px 0 20px ;
}

/* County Labels are Permanent Popups */

.countyLabels .leaflet-popup-content-wrapper{
    font-size: small
    color: blue;
    font-weight: bold;
    background: rgba(0,0,0,0) !important;
    box-shadow: none !important;
    border: none !important;
    position: relative;
    top: 33px;
}

.countyLabels .leaflet-popup-content {
    margin: 0;
    line-height: normal;
}

/* Get rid of the triangle on popups for county labels */
.countyLabels .leaflet-popup-tip {
    display: none;
}