    body {
        font-family: Arial, sans-serif;
        margin: 20px;
        background: #f5f5f5;
    }

    .mf-order-box {
        max-width: 100%;
        margin: 0;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;

        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.10),
            0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .mf-order-box h2 {
        margin-top: 0;
    }

    .mf-customer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 15px;
    }

    .mf-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 100px 120px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .mf-order-box label {
        font-weight: bold;
        font-size: 14px;
        display: block;
        margin-bottom: 3px;
    }

    .mf-order-box select,
    .mf-order-box input,
    .mf-order-box button {
        width: 100%;
        padding: 4px 6px;
        font-size: 13px;
        height: 32px;
        box-sizing: border-box;
    }

    .mf-order-box button {
        cursor: pointer;
        background: #65855F;
        color: #ffffff;
        border: none;
        border-radius: 4px;
    }

    .mf-order-box .remove-button {
        background: #b00020;
    }

    .mf-order-box table {
        width: 100%;
        border-collapse: collapse;
    }

    .mf-order-box th,
    .mf-order-box td {
        padding: 8px;
        border-bottom: 1px solid #cccccc;
        text-align: left;
        font-size: 13px;
    }

    .mf-order-box th {
        font-weight: bold;
    }

    .mf-category-row td {
        background: #e6e6e6;
        font-weight: bold;
        font-size: 14px;
    }

    @media (max-width: 850px) {
        .mf-customer-grid,
        .mf-form-grid {
            grid-template-columns: 1fr;
        }
    }
    .mf-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    .mf-modal-overlay.is-open {
        display: flex;
    }

    .mf-modal-box {
        background: #ffffff;
        width: 90%;
        max-width: 500px;
        padding: 18px;
        border-radius: 8px;
    }

    .mf-modal-box h3 {
        margin-top: 0;
    }

    .mf-modal-box textarea {
        width: 100%;
        height: 120px;
        padding: 6px;
        font-size: 13px;
        box-sizing: border-box;
        resize: vertical;
    }

    .mf-modal-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 15px;
    }

.mf-category-header {
    background: #e6e6e6;
    font-weight: 700;
    font-size: 15px;
    color: #333333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.imagedisplay {
    display: none;
}
.mf-corrguard-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 15px;
}

.mf-new-row {
    animation: mfHighlight 2s ease;
}

@keyframes mfHighlight {
    0% {
        background-color: #fff8b3;
    }

    100% {
        background-color: transparent;
    }
}