body {
    font-family: Arial, sans-serif;
  }
  
  .menu-sweets-item {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px;
    background-color: #f8b400;
    color: white;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
  }
  
  /* Modal styling */
  .modal-sweets {
    display: none; /* Hidden by default */
    position: absolute;
    top: 120px; /* Position it slightly below the hover item */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 15px;
  }
  
  .modal-content-sweets {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  
  .modal-section {
    text-align: center;
    width: 30%;
  }
  
  .modal-img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #f8b400;
  }
  
  .modal-description {
    font-size: 14px;
    color: #333;
  }
  
  
  