.btn-component {
    padding: 6px 18px;
    border-radius: 4px;
    border: 2px solid whitesmoke;
    background-color: transparent;
    color: inherit;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-component:hover {
    color: black;
    background-color: whitesmoke;
    outline: none;
}