.dashboard {
        height: 100vh;
    }

.h-30 { height: 33%; }
.h-70 { height: 67%; }

.scroll-interno {
    overflow-y: auto;
    scrollbar-width: thin;                 /* Firefox */
    scrollbar-color: rgba(0,0,0,0.4) transparent;
}

/* Chrome, Edge, Safari */
.scroll-interno::-webkit-scrollbar {
    width: 6px;   /* deixa fino */
}

.scroll-interno::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-interno::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.scroll-interno:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
}

.text-small-schedule-item{
    font-size: 0.78rem;
}