body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
#logo-container {
    text-align: center;
    margin: 20px 0;
    margin-bottom: -11px;
}

#hotel-logo {
    width: 150px;  /* Adjust as needed */
    height: auto;  /* Maintain aspect ratio */
}

#categories, #items {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#categories ul, #items ul {
    list-style-type: none;
    padding: 0;
}

#categories li, #items li {
    background: #fff;
    padding:5px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    text-align: center;
}

#categories img, #items img {
    max-width: 50%;
    border-radius: 8px;
}

#categories h3, #items h3 {
    font-size: 20px;
    margin: 10px 0;
}

#items p {
    margin: 5px 0;
}
h1 {
    margin-bottom: 20px;
}

.card-header h2 {
    margin: 0;
}

.form-check-label {
    margin-left: 10px;
}
@media (max-width: 768px) {
    #categories li, #items li {
        width: 100%;
        margin-bottom: 10px;
        margin-left: -5px;
    }
}
.item img {
    max-width: 100%;
    border-radius: 8px;
}
#search-container {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgb(10 51 243 / 40%);
    z-index: 1000;
}

#search-bar {
    width: 90%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #408302;
    border-radius: 4px;
}
.item h3 {
    font-size: 20px;
    margin: 10px 0;
}

.item p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.item p img {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .item {
        width: 100%;
    }
}

