#main_display {
    border: 1px solid black;
    width: 100%;
    height: 500px;
}

#lot-nav-box { 
    position: absolute;
    height: 40px;
    font-size: 30px;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}
    .lot-nav {
        display: inline-block;
        margin-right: 7px;
        margin-left: 7px;
        cursor: pointer;
    }
    .lot-nav.active {
        color: red;
        cursor: default;
    }

#parking-row-container {
    padding-top: 50px;
    position: absolute;
    width: 75%;
    height: 70%;
}

.parking-row {
    width: 46%;
    height: 20px;
    border: 1px solid grey;
    margin-left: 6px;
    margin-right: auto;
    margin-bottom: 2px;
    display: inline-block;
    background: white;
    transition: transform 0.2s;
}
    .parking-row .taken .label, .parking-row .free .label {
        position: relative;
        width: 100%;
        height: 100%;
        color: black;
        text-align: center;
        bottom: 3px;
    }
    .parking-row:hover {
        transform: scale(1.5);
        filter: drop-shadow(0px 0px 4px black);
    }   
    .parking-row .taken {
        background-color: red;
        display:inline-block;
        height: 100%;
    }
    .parking-row .free {
        background-color: green;
        display: inline-block;
        height: 100%;
    }