/* Fix body's top area because of fixed navbar */
body {
    background: lightgray;
}

.btn:focus {
    box-shadow: none;
}

.clickable {
    cursor: pointer;
}

.my-navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1071;
    min-height: 4em;
}

.my-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 4rem;
    z-index: 1000;
    height: calc(100vh - 4rem);
}