
.no-underline {
    text-decoration-line: none;
    -moz-text-decoration-line: none;
}

/* Hint tooltip */
.hint-tooltip { 
    right: 10px; 
    cursor: pointer;
}
/* Hint tooltip */


/* global overlay  */
.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body>.global-overlay {
    position: fixed;
}

.global-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.global-overlay .loading-message {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

/* /global overlay */

/* Avatars */
.avatar-sm {
    width: 28px;
    height: 28px;
    font-size: 12px;
    font-weight: 600;
}

#feeCollectionChart, #attendanceChart {
    max-height: 300px;
}