.component_buttonrow {
    margin-top: 10px;
    display: flex;
    justify-content: space-evenly;
}

.component_buttonrow a {
    cursor: pointer;
    padding: 2px 10px 2px 10px;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #287F72;
    border: none;
    border-radius: 3px;
    box-shadow: 3px 3px #999;
    margin: 0px 10px;
}

.component_buttonrow a:hover {
    background-color: #388F82;
    transition-duration: 0.4s;
}

.component_buttonrow a:active {
    transform: translateY(3px);    
    box-shadow: 0 3px;
    transition-duration: 0s;
}