.edit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .edit-popup {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .edit-popup input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .popup-buttons {
    display: flex;
    justify-content: space-between;
  }
  
  .popup-buttons button {
    padding: 10px;
    width: 48%;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    font-weight: bold;
  }
  
  #updateProduct {
    background: green;
    color: white;
  }
  
  #cancelEdit {
    background: #eee;
  }
  .changeImageButton{
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 20px;
    cursor: pointer;
  }
  .changeImageButton:hover{
    background-color: white;
    color: black;
    box-shadow: 0 0 10px black;
  }
