.searchBar {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    outline: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

#searchTextField {
    font-family: 'Lato';
    font-size: 12pt;
    width: 80%;
    height: 95%;
    outline: none;
    border: none;
    border-right: solid 1pt lightgray;
    border-top-left-radius: 25px;
    text-indent: 20px;
}

#searchButton {
    font-family: 'Lato';
    font-size: 12pt;
    width: 20%;
    height: 100%;
    outline: none;
    border: none;
    background-color: inherit;
    border-top-right-radius: 25px;
}

#searchButton:hover {
    background-color: lightgray;
}

#livesearch {
  position: absolute;
  background-color: white;
  z-index: 100;
}

#datePanel {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-evenly;
    width: 100%;
    height: 50px;
    outline: none;
    border: none;
    border-top: solid 1pt lightgray;
    font-family: 'Lato';
    font-size: 12pt;
}

.dateField {
    height: 30px;
    width: fit-content;
    align-self: center;
    border: lightgray solid 1pt;
    border-radius: 25pt;
    text-align: center;
}

.dateField:focus {
    border: solid 1pt gray;
    outline: none;
}

#datePanelToLabel {
    height: 50%;
    width: fit-content;
    align-self: center;
    vertical-align: middle;
}

.categoryPanel {
    display: flex;
    flex-direction: row;
    outline: none;
    border: none;
    border-top: solid 1pt lightgray;
    width: 100%;
    height: 50px;
    justify-content: space-around;
}

.categoryCheckbox {
    display: flex;
    flex-direction: column;
    font-family: 'Lato';
    min-height: 30px;
    height: fit-content;
    width: 125px;
    justify-content: center;
    align-self: center;
    align-content: center;
    text-align: center;
    outline: solid 1pt lightgray;
    border-radius: 25px;
    user-select: none;
}

.categoryCheckbox:hover {
    outline: solid 1pt gray;
}

/* Venues and Events box colors */
.CC_venues_checkbox {
    background-color: blue;
    outline: none;
}

.CC_events_checkbox {
    background-color: pink;
    outline: none;
}
/* End Venues and Events box colors */

/* Venue Tags Colors */
.CC_galleries_checkbox {
    background-color: rgb(249, 109, 111);
    outline: none;
}

.CC_museums_checkbox {
    background-color: rgb(248, 150, 29);
    outline: none;
}

.CC_opera_checkbox {
    background-color: rgb(77, 144, 142);
    outline: none;
}

.CC_theatres_checkbox {
    background-color: rgb(144, 190, 108);
    outline: none;
}
/* End Venue Tags Colors */

/* Venue Tags Colors */
.CC_evenice_1_checkbox {
    background-color: rgb(249, 109, 111);
    outline: none;
}

.CC_evenice_2_checkbox {
    background-color: rgb(248, 150, 29);
    outline: none;
}

.CC_evenice_3_checkbox {
    background-color: rgb(77, 144, 142);
    outline: none;
}

.CC_evenice_4_checkbox {
    background-color: rgb(144, 190, 108);
    outline: none;
}
/* End Venue Tags Colors */

.CC_disabled {
    background-color: white;
}
