.submit_button {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #0077B3;
    color: white;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit_button:hover {
    background-color: #447d46;
}

.cs_button {
    background-color: #0077B3;
    font-family: "Montserrat", sans-serif;
    color: white;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 50px;
    width: 200px;
    font-size: 1rem;
    text-decoration: underline;
    transition: background-color 0.3s;
}

.cs_button:hover {
    background-color: #447d46;
    text-decoration: none;
}

#as_button {
    font-family: "Montserrat", sans-serif;
    color: white;
    background-color: #ec931f;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    height: 50px;
    width: 200px;
    transition: background-color 0.3s;
}

#as_button:hover {
    background-color: #c57409;
}

#lo_button {
    font-family: "Montserrat", sans-serif;
    color: white;
    background-color: #ec931f;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    height: 50px;
    width: 200px;
    transition: background-color 0.3s;
    margin-right: 10px;
    margin-left:10px;
}

#lo_button:hover {
    background-color: #c57409;
}

.return_button {
    margin-top: 20px;
    background-color: #0077B3;
    font-family: "Montserrat", sans-serif;
    color: white;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    margin-bottom: 20px;
    height: 50px;
    width: 200px;
    font-size: 1rem;
    transition: background-color 0.3s;
    flex: 0 0 auto;
}

.return_button:hover {
    background-color: #447d46;
}

.update_button {
    background-color: #0077B3;
    color: white;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.update_button:hover {
    background-color: #447d46;
}

.external_link_button {
    background-color: #0077B3;
    color: white;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.external_link_button:hover {
    background-color: #447d46;
}

@media only screen and (max-width: 600px) {
    .cs_button {
        margin-right: 0;
    }
}