
.montserrat-rg {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
  

body {
    display: flex;
    height: 100vh;
    margin: 0;
    flex-direction: row;
}
.sidebar {
    width: 25%;
    background: #f4f4f4;
    overflow-y: auto;
    padding: 10px;
}
.button-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}
.toggle-button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: #ddd;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}
.toggle-button.selected {
    background: #34f100;
    color: white;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}
.item-list-header {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.main-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100vh;
}
.map-container {
    flex: 2;
    position: relative;
    width: 100%;
}
#map {
    width: 100%;
    height: 100%;
}
.order-panel {
    flex: 1;
    background: white;
    border-top: 1px solid #ccc;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-height: 400px; /* Set the maximum height for the order panel */
    overflow-y: auto;  /* Make the panel scrollable if content exceeds max height */
}

.item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 5px 0;
    background: #a4ff8b;
    cursor: pointer;
    position: relative;
}
.item:hover {
    background: #bbbbbb;
}

.restaurant-name {
    text-align: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif; 
}

.distance {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.8em;
    color: #555;
}
.meals-list {
    font-size: 0.9em;
    margin-top: 5px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}
.meal-item {
    cursor: pointer;
    padding: 10px;
    background: #eee;
    border: 1px solid #ccc;
    margin: 5px;
    display: inline-block;
    width: calc(100% - 20px);
    text-align: center;
}
.meal-item.selected {
    background: #34F100;
}
.order-button {
    margin-top: 10px;
    padding: 10px;
    background: #34f100;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}
.order-input {
    margin: 10px 0;
}

.order-input label {
    font-size: 1em;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.order-input input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 1em;
}

.mandatory {
    color: red;
    font-size: 1.2em;
    margin-left: 5px;
}
