.button-remove{
    
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 3px;
    font-size: 0.8em;
    cursor: pointer;
    transition: border-color 500ms, color 150ms;
    height: 22px;
    width: fit-content;
}

.button-remove:hover{
    
    border-color: var(--color-red);
    color: var(--color-red);
    background: #fff1f1;
}