*{padding: 0; margin: 0; box-sizing: border-box;}
.up{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.title{
    background-color: rgb(233, 233, 233);
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: 2%;
}
.logo {
    border-radius: 10px;
    /* box-shadow: 2px 2px 4px gray; */
    /* border: 1px solid gray; */
    flex-wrap: wrap;
    width: 100px;
    height: 78px;
    background-size: cover;
}
.menubar{
    position:sticky;
    top: 0px;
}
.menu {
    padding: 1%;
    gap: 1.3rem;
    background-color: lightgray;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}
.menu li{
    list-style: none;
    background-color: whitesmoke;
    border: 1px solid gray;
    padding: 3px 6px;
    border-radius: 10px;
    box-shadow: 2px 2px 4px gray;
}
.menu li:hover{
    background-color: gray;
    color: white;
    border: 1px solid whitesmoke;
    box-shadow: 2px 2px 5px white;
}
.book {
    background-color: green !important;
    color: white;
    padding: 10px !important;
    border-radius: 25px !important;
}
.book:hover {
    background-color: rgb(172, 123, 0) !important;
}
            /* Hall Are */

.booking{
    display: flex;
    justify-content: space-evenly;
    padding: 1rem;
    flex-wrap: wrap;
   
}

/*.hall {
    width: 541px;
    padding: 5px;
    background-color: bisque;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 5px;
}*/
.hall-old {
    width: 541px;
    padding: 5px;
    background-color: bisque;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 5px;
}
.chair{
    background-color: green;
    color: white;
    border-radius: 5px;
    border: .1rem solid lightgray;
    box-shadow: .1rem .1rem .1rem gray;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.chair:hover{
    background-color: maroon;
    color: white;
    border-radius: 5px;
    border: .1rem solid lightgray;
    box-shadow: .1rem .1rem .1rem gray;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}
#way1{
    grid-row-start: 1;
    grid-row-end: 8;
    grid-column-start: 6;
}
#way2{
    grid-row-start: 4;
    grid-column-start: 1;
    grid-column-end: 6;
}
#way3{
    grid-row-start: 5;
    grid-column-start: 1;
    grid-column-end: 4;
}
#way4{
    grid-row-start: 6;
    grid-row-end: 9;
    grid-column-start: 1;
    grid-column-end: 3;
}
#way5{
    grid-row-start: 6;
    grid-row-end: 9;
    grid-column-start: 10;
    grid-column-end: 12;
}

.Select {
    width: 620px;
    /* height: 510px; */
    background-color: whitesmoke;
    border: 1px solid gray;
    padding: 15px;
}
.footer{
    padding: 3%;
    background-color: lightgray;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Select input {
    width: auto;
}
/*table#example1 thead {
    display: block;
}*/

.event_type_box {
    border: 1px solid gray;
    box-shadow: 2px 2px 4px gray;
    border-radius: 15px;
    width: 300px;
    height: 200px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.current {
    background-color: green;
}

.coming {
    background-color: rgb(172, 123, 0);
}

.recent {
    background-color: red;
}


.event_type_box h5 {
    color: #fff;
    font-size: 21px;
}