.edit-product-btn, #create-new-product {
    margin-top: 10px;
    display: block;
}

.product-edit-form {
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    margin-top: 10px;
    display: none;
}

.product-edit-form label {
    display: block;
    margin: 5px 0;
}

.product-edit-form select, .product-edit-form input, .product-edit-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.cancel-edit-btn {
    background-color: red;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
}

#edit-form {
    max-width: 600px;
    margin: 0 auto;
}

#edit-form, #create-new-product {
    margin-top: 20px;
    text-align: center;
}


.product-edit-form {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border: 2px solid #ccc;
    z-index: 1000;
    max-width: 600px;
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
body.modal-open::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
