.edit-button{
    background-color:rgb(var(--color-primary-600));
    color: #fff; /* White text */
    border: none; /* No border */
    border-radius: 6px; /* Rounded corners */
    padding: 6px 14px; /* Padding for the button */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 6px; /* Margin on top */
    margin-right: 6px; /* Margin on right */
    transition: background 0.2s; /* Smooth transition for background color */
}