
/* Make secondary button styling apply to links that look like buttons */

a.btn.btn-secondary {
    color: white;
}

a.btn.btn-secondary:hover {
    color: white;
    background-color: rgb(25, 64, 91);
    border-color: rgb(25, 64, 91);
    box-shadow: 0 -1px 0 0 rgb(25, 64, 91) inset;
}

a.btn.btn-no-underline {
    text-decoration: none;
}

/* Other fixes */

*.nowrap {
    white-space: nowrap;
}
