.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;

    .button {
        width: fit-content;
        &:hover {
            background-color: rgb(204, 204, 204) !important;
        }
    }

    .secondary {
        background-color: #f3dbbe !important;
        &:hover {
            background-color: #d7bfa2 !important;
        }
        
    }
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    .secondary {
        margin-top: 0px !important;
    }
}