html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: tan;
}

.centeredDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    text-align: center;
    background-color: beige;
    border-radius: 5px;
}

.restaurant-listing {
    border: 1px solid;
    padding: 10px;
    margin: 10px;
    text-align: center;
    box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: lightslategray;
    width: 200px; /* Fixed width for all boxes */
    display: inline-block;
    height: 340px; /* Fixed height for all boxes */
    vertical-align: top;
}

.actionButton {
    padding: 10px;
    margin-top: 10px;
    background-color: forestgreen;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.review-listing {
    border: 1px solid;
    padding: 10px;
    margin: 10px;
    background-color: lightslategrey;
    box-shadow: 0px 3px 5px 0 rgba(0, 0, 0, 0.2);
    width: 700px;
}

.restaurant-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: beige;
}
x
.reservation {
    text-align: center;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: beige;
}

.restaurants-holder {
    background-color: #f5f5f5;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px;
    text-align: left;
}

.myrestaurants-listing {
    background-color: #ccc;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px;
    text-align: left;
}

.newRestaurant {
    background-color: #f5f5f5;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px;
    text-align: left;
}

.newReview {
    background-color: beige;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px;
    text-align: center;
}

.myrestaurants-image {
    width: 200px; /* Set the desired width */
    height: 200px;
}


.reviews-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: beige;
}

.review-content {
    color: white;
    font-weight: bold;
}

.restaurant-image {
    max-width: 85%;
    max-height: 55%; /* Ensure the image fits within the box */
    overflow: hidden;
}

.restaurant-name {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: white;
    display: block; /* Display as a block-level element */
}

.restaurant-rating {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: white;
    display: block; /* Display as a block-level element */
}

.view-button {
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.restaurant-info {
    text-align: center;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: beige;
}

.restaurant-info-image {
    max-width: 75%;
    max-height: 250px;
}

.restaurant-details {
    font-weight: bold;
}