.actions-objects {
 display: flex;
 flex-wrap: nowrap;
 justify-content: flex-end;

}

.edit-obj, .delete-obj {
    display: inline-block;
    padding: 1px 4px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #fff;
    color: black;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    margin: 2px;
    line-height: 1.5;

}

.edit-obj:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    color: white;
    text-decoration: none;
}

.delete-obj:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    color: white;
    text-decoration: none;
}