body {
    display: flex;
    font-family: 'Arial', ;
    margin: 0;
    background: url('https://png.pngtree.com/background/20220714/original/pngtree-big-isolated-motorcycle-vector-colorful-icons-flat-illustrations-of-delivery-by-picture-image_1607599.jpg') no-repeat center center fixed;
    background-size: cover;
}

.sidebar {
    width: 200px;
    background-color: rgba(226, 125, 125, 0.9);
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    height: 100vh;
    position: fixed;
}

.sidebar h1 {
    font-family: 'Chubby Cheeks', cursive;
    margin-bottom: 20px;
    font-size: 36px;
    animation: bounce 2s infinite; /* Bounce animation loop */
}

.sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar nav ul li {
    margin-bottom: 19px;
}

.sidebar nav ul li a {
    text-decoration: Decorative Fonts;
    color: #f8f2f8;
    font-size: 20px;
    transition: color 0.3s;
}

.sidebar nav ul li a:hover {
    color: #ff6347;
}

.content {
    margin-left: 270px;
    padding: 20px;
    width: calc(100% - 270px);
}

.food-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.food-box {
    width: calc(50% - 20px);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.food-box img {
    max-width: 100%;
    border-radius: 10px;
}

.food-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.food-box .price {
    margin-top: 10px;
    font-size: 18px;
    color: #ff6347;
    display: grid;
}

#rate-form {
    max-width: 400px;
    padding: 20px;
    background-color: rgba(226, 125, 125, 0.9);
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(243, 238, 238, 0.1);
    display: flex;
    flex-direction: column;
}

#rate-form label {
    margin-top: 10px;
}

#rate-form textarea {
    margin-top: 5px;
}

#rate-form button {
    display: flex;
  width: 17%;
  padding: 8px;
  background-color: #FF6347; /* Tomato color */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  
}
#rate-form select {
    display: flex;
    justify-content: left;
    margin-bottom: 20px;
  }
  
  #rate-form select {
    font-size: 20px;
    color: #FF6347; /* Gold color */
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  }

/* Add this CSS to your styles.css file */

.content form {
    max-width: 300px;
    margin: 0;
  }
  
  .content form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
  }
  
  .content form input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  
  .content form button {
    display: block;
    width: 30%;
    padding: 10px;
    background-color: #FF6347; /* Tomato color */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .content form button:hover {
    background-color: #FF6347; /* Orange Red color */
  }
  
  @keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  .food-box .add-to-cart {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #FF6347; /* Tomato color */
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.food-box .add-to-cart:hover {
    background-color: #FF4500; /* Orange Red color */
}

.search-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.search-input {
    padding: 5px;
    font-size: 14px;
    width: 200px;
    box-sizing: border-box;
    border: 1px solid rgba(226, 125, 125, 0.9);
    border-radius: 5px;
}