.button-group {
    display: flex;
    justify-content:center;
    gap: 1rem;
    width: 100%;
    max-width: 394px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.button {
    background-color: #01158a;
    color: #fff;
    min-width: 187px;
    min-height: 44px;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .625rem;
    padding-bottom: .625rem;
    padding-left: .875rem;
    padding-right: .875rem;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    outline: none;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    cursor: pointer;
}

.button-grey {
    background-color: #a3a3a3;
    color: #fff;
    min-width: 187px;
    min-height: 44px;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .625rem;
    padding-bottom: .625rem;
    padding-left: .875rem;
    padding-right: .875rem;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    outline: none;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    cursor: pointer;
}

.button-table {
    background-color: #01158a;
    color: #fff;
    min-width: 80px;
    min-height: 32px;
    border-radius: .5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    outline: none;
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: 600;
    cursor: pointer;
}

.button-table:disabled {
    background-color: #a3a3a3;
    cursor: not-allowed;
    opacity: 0.7;
}

.button-table-grey {
    background-color: #a3a3a3;
    color: #fff;
    min-width: 80px;
    min-height: 32px;
    border-radius: .5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    outline: none;
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: 600;
    cursor: pointer;
}