body {
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    min-height: 100vh;
    font-family: Poppins;
  }
  
  .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100vw;
  }
  
  .image-container {
    position: relative;
    flex: 1;
    min-height: 100vh;
  }
  
  .image-container img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
  }
  
  .form-container {
    flex: 1;
    padding: 50px;
    min-height: 100vh;
    overflow-y: auto;
  }
  
  .price-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #c1717c;
    color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  
  h3 {
    margin-top: 15px;
  }
  
  input[type="checkbox"] {
    margin-right: 5px;
  }
  
  select,
  label {
    display: block;
    margin-top: 10px;
  }
  
  #type {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
    border: 2px solid #c1717c;
    border-radius: 10px;
  }
  
  #topping-price {
    color: #c1717c;
  }
  
  #totalPriceDisplay {
    color: #c1717c;
  }

#pancakeForm input {
  padding: 10px 20px;
  border: 2px solid #c1717c;
  border-radius: 10px;
  margin-top: 20px;
}

#seeOrder {
  padding: 10px 20px;
  border: 2px solid #c1717c;
  border-radius: 10px;
  margin-top: 20px;
}

#seeOrder:hover {
  cursor: pointer;
  background-color: #c1717c;
  color: white;
  font-size: 14px;
}