.category-box {
      padding: 20px;
      text-align: center;
      border-radius: 5px;
      margin-bottom: 10px;
      cursor: pointer;
      background-color: #ffa500; /* Orange */
      color: #ffffff; /* White text */
      border: 1px solid #ffa500;
    }
    .category-box:hover {
      background-color: #ff240d; /* Red on hover */
      border: 1px solid #ff240d;
    }
    .menu-item3 {
      padding: 10px;
      margin-bottom: 5px;
      border: 1px solid #dee2e6;
      border-radius: 5px;
      cursor: pointer;
      background-color: #ff240d; /* Red */
      color: #ffffff; /* White text */
    }
    .menu-item3:hover {
      background-color: #ffa500; /* Orange on hover */
      border: 1px solid #ffa500;
    }
    .order-summary {
      background-color: #ff240d; /* Red */
      color: #ffffff; /* White text */
      padding: 10px;
      border-radius: 5px;
    }
    .order-summary h3 {
      margin-top: 0;
      margin-bottom: 5px;
      position: relative;
      font-size: 1.1rem; /* Adjusted font size */
    }
    .order-summary .delete-btn {
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer;
    }
    .order-summary .edit-btn {
      position: absolute;
      top: 0;
      right: 25px;
      cursor: pointer;
    }
    .order-summary .quantity {
      display: inline-block;
      width: 30px;
      height: 30px;
      background-color: #ffa500; /* Orange */
      color: #fff;
      text-align: center;
      border-radius: 50%;
      margin-right: 5px;
      line-height: 30px;
    }
    .order-summary .addons {
      font-weight: bold;
    }
    .order-summary .spice-level {
      margin-top: 5px;
    }

    /* Custom CSS for modal buttons */
    .modal-close-btn {
      background-color: #ff240d; /* Red */
      border-color: #ff240d; /* Red */
    }

    .modal-save-btn {
      background-color: #ffa500; /* Orange */
      border-color: #ffa500; /* Orange */
    }

    /* Styling for Inventory */
    #inventory {
        margin-top: 20px;
    }

    .inventory-item {
        padding: 10px;
        margin-bottom: 5px;
        border: 1px solid #dee2e6;
        border-radius: 5px;
        background-color: #ff240d; /* Red */
        color: #ffffff; /* White text */
    }
