button {
    width: max-content;
    height: fit-content;

    font-size: inherit;
    line-height: inherit;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--text-gap);

    padding: .6rem .8rem;
    border-radius: var(--border-radius);

    cursor: pointer;
}

button svg {
    height: 1rem;
    width: auto;
}

.button-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--gap);
    white-space: nowrap;
}

.button-flex.right {
    justify-content: flex-end;
}

.button-flex.center {
    justify-content: center;
}

/* Button Colors */

button.button-yellow {
    border: 0;
    background-color: var(--yellow1);
    color: var(--blue1);
}

button.button-yellow svg {
    fill: var(--blue1);
}

button.button-white-stroke {
    border: 1px solid var(--white1);
    background-color: transparent;
    color: var(--white1);
}

button.button-white-stroke svg {
    fill: var(--white1);
}

button.button-black-stroke {
    border: 1px solid var(--black1);
    background-color: transparent;
    color: var(--black1);
}

button.button-blue-dark {
    border: 0;
    background-color: var(--blue2);
    color: var(--white1);
}

button.button-blue-dark svg {
    fill: var(--white1) !important;
}

button.button-blue {
    border: 0;
    background-color: var(--blue1);
    color: var(--white1);
}

button.button-blue svg {
    fill: var(--white1);
}

button.button-blue-stroke {
    border: 1px solid var(--blue1);
    background-color: transparent;
    color: var(--blue1);
}

button.button-blue-stroke svg {
    fill: var(--blue1);
}