#button-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    gap: 10px;
    margin-top: 20px;
    text-align: center; /* optional, doesn't affect flex centering */
}

button {
    padding: 14px 24px;
    font-size: 16px;
    color: white;
    background-color: #1489EF;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover {
    background-color: #1077D0;
}