@media screen and (max-width: 480px) {
    
html {
    font-size: 50%;
}

.logo img {
    max-width: 100px;
}

div.menu {
    position: fixed;
    z-index: 9999;
    top:0;
    right:0;
    height: 100%;
    width: 200px;
    background-color:white;
    border-left: solid 1px rgba(108, 122, 137, 0.5);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    transform: translateX(200px);
}

.menu__secondary a, .menu__secondary button {
    flex-direction: row-reverse;
}

#menu-open {
    display: flex;
}

div.menu.open {
    transform: translateX(0);
    transition: transform 0.5s ease-out;
}

div.menu a, .menu__secondary button  {
    font-size:  var(--medium);
    margin-top: 30px;
}

.menu__primary, .menu__secondary {
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
}

.welcome {
    padding: 10px;
    top:0;
    left: 0;
    width:100%;
    bottom:auto;

    background-color:  rgb(68,80,169); 
    color: white;

}

.main {
    padding-inline: 3%;
}

.spot .wraper {
    flex-direction: column;
    align-items: stretch;
}


.form-row {
    flex-direction: column;
    align-items: stretch;
}

.form-row > * {
    flex: 1 !important;
}






.reservations th:nth-child(1),.reservations th:nth-child(2)  {
    min-width: 0;
    
}

.reservations th,
.reservations td {
  font-size: var(--small);
}




.categories__grid {
    grid-template-columns: 1fr;
}


}