#user-notes-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background: #fff;
    padding: 20px;
    border: 2px solid #333;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
}

#user-notes-textarea {
    width: 100%;
    height: 150px;
    resize: vertical;
}

#user-notes-popup button {
    margin-top: 10px;
    margin-right: 10px;
}

/* Set a fixed width for the Customer Notes column */
th.column-customer_notes,
td.column-customer_notes {
  text-align: center;
  vertical-align: middle;
}

/* Center the content within the data cell using Flexbox */
td.column-customer_notes {
  display: flex;
  justify-content: center;
  align-items: center;
}

td.column-customer_notes.hidden {
  display: none !important;
}
