.fundraiserButtons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fundraiserButtons .button {
    padding: 8px 15px;
    border-radius: 5px;
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.3px;
    cursor: pointer;
    background-color: white;
    color: #4e47ea;
    border: 1px solid #4e47ea;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 58px;
}

.fundraiserButtons .button.hide,
.fundraiserButtons .textContainer.hide {
    display: none;
}

.fundraiserButtons .button.primary {
    /* background-color is set dynamically via JavaScript using mainColor */
    color: white;
    border: none;
    margin-bottom: 12px;
}

.fundraiserButtons .textContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fundraiserButtons .textContainer .text {
    font-family: "Metropolis Regular";
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2px;
}

.fundraiserButtons .textContainer .boldText {
    font-family: "Metropolis Bold";
    margin-inline: 5px;
}

/* mobile */
@media (max-width: 767px) {
    .fundraiserButtons {
        justify-content: space-around;
        gap: 10px;
    }
    .fundraiserButtons .button {
        padding: 5px 10px;
        font-size: 17px;
        letter-spacing: 0.22px;
        min-width: 130px;
    }
}

/* iPad */
@media (min-width: 768px) and (max-width: 1025px) {
    .fundraiserButtons {
        justify-content: space-between;
        gap: none;
        width: 100%;
    }
    .fundraiserButtons .button {
        padding: 5px 10px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.18px;
    }
}

/* DARK MODE */
.dark .fundraiserButtons .button {
    color: rgba(255, 255, 255, 0.87);
    border-color: rgba(255, 255, 255, 0.87);
}

.dark .fundraiserButtons .button.primary {
    background-color: #0d4962;
    color: white;
    border: none;
}
