.btn-icon {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: stroke 0.2s ease-in-out;
}

.btn-icon:hover .icon {
    stroke: #1A1A1A;
}

.btn .icon {
    margin-right: 8px;
    vertical-align: middle;
}
