@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600&display=swap');

.roeid-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    height: 40px;
    padding: 0 16px;
    min-width: 190px;
    width: max-content;

    font-family: "Sora", HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-decoration: none;
    user-select: none;
    cursor: pointer;

    border-radius: 10px;
    box-sizing: border-box;
}

.roeid-btn__icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
}

.roeid-btn__icon img {
    width: 19px;
    height: 19px;
    display: block;
}

.roeid-btn__icon--spacer {
    visibility: hidden;
}

.roeid-btn__label {
    flex: 1 1 auto;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roeid-btn--gray {
    background-color: #f4f4f4;
    border: 1px solid #d1d9e8;
}

.roeid-btn--gray .roeid-btn__label {
    color: #2e5ae6;
}

.roeid-btn--gray:hover {
    background-color: #f1f3f8;
    border-color: #d1d9e8;
}