.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #fff;
}
.booking-header-inner {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #fff;
    width: 1140px;
    margin: auto;
	padding: 20px 10px;
}
.booking-header .site-title{
	font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
}
#hamburger-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
	padding:0px;
}
#hamburger-menu {
    position: fixed;
    top: 100px; right: -250px;
    width: 250px;
    height: 100%;
    background: white;
    transition: right 0.3s ease;
    padding: 20px;
    z-index:1;
}
#hamburger-menu ul {
  list-style-type: none; /* Removes bullets */
  padding-left: 0; /* Removes left indentation */
  margin: 0; /* Optional: removes margin */
}

#hamburger-menu.active {
    right: 0;
}
main#booking-content {
    width: auto;
    margin: auto;
    padding: 10px;
    /* display: table-column-group; */
    max-width: 1140px;
}