/* Theme file for custom styles in bootstrap, without making global changes */

.btn-app {
    background-color: #212529;
    border: none;
    color: #ffffff;
    text-decoration: underline dashed #ffffff;
    transition: all .2s ease;
}

a.btn.btn-app {
    color: #ffffff;
    text-decoration: underline dashed #ffffff;
}

.btn-app:hover {
    background-color: #007bff;
}

.btn-app:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

