.action-button {
    background-color: rgba(0, 65, 129, 1);
    color: white;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Roboto, sans-serif;
    font-size: 16px;
    font-weight: bold;
    width: 220px;
    margin: 0 auto;
    padding: 15px;
    border: 2px solid rgba(0, 65, 129, 1);
    border-radius: 5px;
    cursor: pointer;
}

.print-button {
    background-color: white;
    color: rgba(0, 65, 129, 1);
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Roboto, sans-serif;
    font-size: 16px;
    font-weight: bold;
    width: 220px;
    margin: 0 auto;
    padding: 15px;
    border: 2px solid rgba(0, 65, 129, 1);
    border-radius: 5px;
    cursor: pointer;
}

.flex-mobile {   
    display: flex;
    flex-direction: row;
  }

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .flex-mobile {   
    flex-direction: column;
  }