
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;  /* Two columns layout */
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
    }

    .form-row label {
        font-weight: bold;
        margin-bottom: 5px;
	    display: flex;
		align-items: end;
    }

    .form-row input[type="text"],
    .form-row input[type="number"],
    .form-row select {
        padding: 8px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    .form-row select {
      max-width:100% !important;
     }
    .form-row input[type="checkbox"] {
        margin-top: 10px;
    }

    .form-actions {
        margin-top: 20px;
        text-align: center;
    }
    .catering-title {
    text-align: center;
    font-size: 25px !important;
    margin-bottom: 20px !important;
   }

    /* To handle responsiveness for smaller screens */
    @media (max-width: 768px) {
        .form-grid {
            grid-template-columns: 1fr;  /* Stacks the form fields in one column */
        }
    }
   /* Container for pagination */
.tablenav {
    margin: 20px 0;
    padding: 0;
    clear: both;
    text-align: right;
}

/* Pagination page numbers */
.tablenav-pages {
    display: inline-block;
    background-color: #f1f1f1;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 4px;
}

/* Individual page link styling */
.page-numbers {
    color: #0073aa;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 0 2px;
    text-decoration: none;
    border-radius: 3px;
}

/* Hover effect for page numbers */
.page-numbers:hover {
    color: white;
    background-color: #0073aa;
    border-color: #0073aa;
}

/* Current page (active) styling */
.page-numbers.current {
    color: white;
    background-color: #0073aa;
    border-color: #0073aa;
    font-weight: bold;
}

/* Disabled pagination links */
.page-numbers.dots {
    color: #999;
    border: none;
}

/* Previous/Next pagination button styling */
.tablenav .prev,
.tablenav .next {
    display: inline-block;
    padding: 6px 12px;
    color: #0073aa;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 0 5px;
    text-decoration: none;
}

/* Hover effect for Previous/Next */
.tablenav .prev:hover,
.tablenav .next:hover {
    color: white;
    background-color: #0073aa;
    border-color: #0073aa;
}

/* Disabled previous/next buttons */
.tablenav .prev.disabled,
.tablenav .next.disabled {
    color: #ccc;
    background-color: #f9f9f9;
    border-color: #ddd;
    cursor: not-allowed;
}
.catering-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.catering-menu-header h2 {
    margin: 0;
    font-size: 18px; /* Optional: Adjust size as needed */
}

.catering-menu-pagination {
    text-align: right;
}

/*search form css*/
/* Style for the search input field */
.catering-menu-header input[type="text"] {
    padding: 4px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 300px;
    /* margin-right: 10px; */
}

/* Style for the search button */
.catering-menu-header button {
    padding: 8px 12px;
    background-color: #135e96;
    color: white;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    /* transition: background-color 0.3s ease; */
}
h1.order-catering-title {
    font-weight: 600;
    padding-bottom: 50px;
}
button#upload_image_button {
    width: 40%;
}

/*css for delete item image*/
.image-preview-wrapper {
    display: inline-block;
    position: relative;
}

.delete-image-button {
    position: relative;
    top: -70px;
    right: 15px;
    background: #ff5b5b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: background 0.3s;
}
.delete-image-button:hover {
    background: #d9534f;
}
/*end css for delete item image*/
/* css start for confirm order page **/
.confirm-your-order {
        max-width: 1261px;
        margin: 30px auto;
        padding: 30px;
        border-radius: 16px;
        background: #FFFFFF;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        border: 1px solid #E2E2E2;
        font-family: 'Arial', sans-serif;
    }

    .confirm-your-order h2 {
        color: #C14400;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    #privacy_check {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 4px;
        background: white;
        border: 2px solid #D35400;
        cursor: pointer;
        position: relative;
        margin-right: 10px;
    }

    #privacy_check:checked {
        background: #D35400;
    }

    #privacy_check::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
    }
/** end css for confirm order page **/
