.mt-label {
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .mt-label {
        margin-top: 0;
    }
}

.entry_selection_container {
    overflow: hidden;
    max-width: 0;
    transition: max-width 0.5s;
}

.entry_selection_active .entry_selection_container {
    max-width: 31px;
}

.entry_selection_info {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    border-width: 0 !important;
    transition: max-height 0.5s, border-width 0.5s, opacity 0.25s 0.25s;
}

.entry_selection_active .entry_selection_info {
    max-height: 90px;
    opacity: 1;
    border-width: 1px !important;
    transition: max-height 0.5s, border-width 0.5s, opacity 0.25s;
}

.entry_selection_active label:hover {
    background-color: #f8f9fc;
    transition: background-color 0.25s;
}

.nav-scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
 }
.nav-scrollable .nav-link {
    white-space: nowrap;
}

.canvas {
    border: 1px solid #d1d3e2;
    border-radius: 5px;
}
