html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
main { flex: 1; }
.dashboard-card { min-height: 180px; }
.dashboard-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
}
@media (max-width: 991px) {
    .dashboard-sidebar { display: none; }
}
.fs-8 {font-size: 8pt;}
.fs-10 {font-size: 10pt;}
.fs-12 {font-size: 12pt;}
.fs-14 {font-size: 14pt;}
.fs-16 {font-size: 16pt;}
.fs-18 {font-size: 18pt;}
.display-6 {font-size: 1.5rem;}
.canfade {
    transition: opacity 0.6s;
    opacity: 1;
}
.fade-out {
    opacity: 0;
}
.active {
    background-color:  #1bbd36 !important;
    border-color: #1bbd36 !important;
    color: rgb(248, 249, 250) !important;
}
.text-green {
    color: rgb(27, 189, 54) !important;
}
.cursor-pointer {
    cursor: pointer;
}
.label-mb {
    margin-bottom: 2px;
}
.bg-green {
    background-color: rgb(27, 189, 54) !important;
}
.dashboard-icon {
    color: #1bbd36 !important;
}
.btn-outline-green {
    border: 1px solid #1bbd36 !important;
    color: #1bbd36 !important;
    font-weight: bold !important;
}
.btn-green {
    background-color: #1bbd36 !important;
    font-weight: bold;
    color: rgb(248, 249, 250) !important;    
}
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(27, 189, 54, 0.25) !important;
}

@media (min-width: 768px) {  /* md breakpoint */
  .w-md-50 { width: 50% !important; }
}
