.core-button {
    width: 100%;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    padding: 6px 16px;
    font-size: 1rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.75;
    text-transform: none;
    padding: 11px 16px;
    text-align:center;
    text-decoration:none;
}

.listbox-swap-button {
    width: 50px;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    font-size: 1rem;
    min-width: 64px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.75;
    text-transform: none;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    background-color: #0C72CE;
    border-radius: 4px;
    border: 0;
}

.light-blue-button {
    color: #fff;
    background-color: #0C72CE;
    border: none;
    border-radius: 100px;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

    .light-blue-button:hover {
        background-color: #023A70;
        color: #fff !important;
    }

.dark-blue-button {
    color: #fff;
    background-color: #023A70;
    border: none;
    border-radius: 100px;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

    .dark-blue-button:hover {
        background-color: #0C72CE;
        color: #fff !important;
    }


.white-button {
    color: #0C72CE;
    box-shadow: none;
    background-color: #fff;
    border-radius: 100px;
    border: 0;
}

    .light-blue-button:hover {
        background-color: #023A70;
    }