@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,300&display=swap");
#header {
    padding: 0.5em 2em 0.5em 2em ;
    background-color: rgba(212, 242, 240, 0.313);
}

    #header nav {
        font-size: 2em;
        position: absolute;
        right: 2em;
        z-index: 10000;
    }

        #header nav ul {
            display: -moz-flex;
            display: -webkit-flex;
            display: -ms-flex;
            display: flex;
            -moz-align-items: center;
            -webkit-align-items: center;
            -ms-align-items: center;
            align-items: right;
            list-style: none;
            margin: 0;
            padding: 0;
        }


                #header nav ul li a {
                    display: block;
                    position: relative;
                    margin-right: 0.5em;
                    border-radius: 2px;
                    border: 0;
                    font-weight:300;
                    font-style:italic;
                    font-size:0.7em;
                    color:black;
                }
html{
    font-family: "Open Sans", sans-serif;
}

main{
    padding: 0.5em 2em 0.5em 2em ;
}

#map{
    height:700px;
    width:100%;
    margin-left: 10px;
    
}

h1 {margin-left:10px;
    font-weight:300;
    font-style:italic;
}


    h1 #unionsq{
        margin-top: 0em;
        margin-bottom: 0em;
        
    }


h2{font-weight:300;
    font-size: 1em;
    font-style:italic;
    color:lightseagreen;
    margin-bottom: 0;
    margin-left:1em;
}



p {
    margin-top: 0em;
    margin-bottom: 0em;
}

label{
    font-weight: 100;
    font-size:0.7em;
}

main{
    display:flex;
    flex-direction:row;
    margin-bottom: 50px;
}

.address-input{    
    margin-right: 10px;
    margin-left: 10px;
}


.biz-input{    
    margin-right: 10px;
    margin-left: 10px;
}

input[type="text"]{
    border: 1px solid lightblue;
    width:100%;    
    height: 30px;
    font-size: 80%;
}


.list-input{
    margin-right: 10px;
    margin-left: 10px;
}

.right-side{
    width:500px;
    margin-left: 30px;
    display:grid;

}

label{display:block}

.biz-filters {column-count:2;
    width:400px;
    margin-bottom: 1em;
    margin-left:1em;
}


.point-list{
    padding: 0em;;
    list-style:none;
}

.point-name{
    font-size: 0.9rem;
    margin-left:0.5rem;
    
}


.address{
    display:inline;
    font-style:italic;
}

.phone-number{
    margin-left:0.5rem;
    margin-right: 1rem;
    margin-bottom: 0rem;
    display:inline;
    border: 1px solid lightblue;
    border-radius: 1rem;
    padding-left:1rem;
    padding-right: 1rem;
    background-color: #eee;
    font-style: italic;
    font-size:0.8rem;
}

.point-name{
    margin-bottom:0.5rem;
    margin-top: 1rem;
}

#address-choices li:hover {
    background-color: lightcyan;
    cursor: pointer;
}


.dropdown {
    position: relative;
    display: inline-block;
  }

  /* Styling for the button */
  .btn {
    background-color: blue;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
  }

  /* Styling for the dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Styling for the checkbox labels */
  .checkbox-label {
    display: block;
    margin: 8px;
  }


  /* Add this to your CSS file or in a style tag in the head of your HTML */
#storedDataSection {
    border: 2px solid red; /* Add a border to make it visible */
}