.button-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.button-2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .5em 2em;
    border: 1px solid #1e72ae;
    border-radius: 5px;
    background-color: #ebf6fc; 
    color: #1e72ae;
    font-size: 14px;
    white-space: nowrap;
    line-height: 1;
    cursor: pointer;
}

.button-2::after {
    content: '';
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #1e72ae;
    border-right: 2px solid #1e72ae;
    transform: rotate(45deg);
}

.button-2:hover {
    border: none;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
}
