
        body { 
            background-color: #f8f9fa; 
            font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
        }
        .cairo-font {
            font-family: 'Cairo', sans-serif;
        }
        .container-custom {
            max-width: 1400px;
            margin: 0 auto;
        }
        .card { 
            border: none; 
            border-radius: 15px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
            margin-bottom: 20px; 
        }
        .stats-card {
            transition: transform 0.2s ease;
        }
        .stats-card:hover {
            transform: translateY(-5px);
        }
        .kindergarten-title {
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            color: #2c3e50;
        }
        .button-link {
            display: inline-block;
            padding: 8px 15px;
            background-color: #6c757d;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
            margin: 0 5px;
        }
        .button-link:hover {
            background-color: #5a6268;
            color: white;
        }
        .profit-positive {
            color: #28a745;
            font-weight: bold;
        }
        .profit-negative {
            color: #dc3545;
            font-weight: bold;
        }
        .progress {
            height: 8px;
        }
        .financial-health {
            font-size: 1.2em;
            font-weight: bold;
        }
        .health-excellent { color: #28a745; }
        .health-good { color: #20c997; }
        .health-fair { color: #ffc107; }
        .health-poor { color: #dc3545; }
        .student-stats {
            font-size: 0.9em;
        }
        .filter-section {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }
        /* Ensure all cards in the same row have equal height */
        .row-equal-height {
            display: flex;
            flex-wrap: wrap;
        }
        .row-equal-height > [class*='col-'] {
            display: flex;
            flex-direction: column;
        }
        .card-body-flex {
            flex: 1;
        }
		
				.logo {
			position: absolute;
			/* or absolute if you prefer */
			top: 0;
			left: 0;
			margin: 10px;
			z-index: 999;
		}

		.logo2 {
			position: absolute;
			/* or absolute if you prefer */
			top: 0;
			right: 0;
			margin: 10px;
			z-index: 999;
		}
		        .mt-3 {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-link {
    flex: 0 0 auto;
    width: 120px; /* Perfect for icon + text */
    text-align: center;
    padding: 8px 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

		a{
			text-decoration: none;
		}
/*goto top*/
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: black;
    color: white;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    z-index: 1000;
    transition: all 0.3s ease;
    display: grid;
    /* 👈 Switch from flex to grid */
    place-items: center;
    /* 👈 This always centers perfectly */
}

#backToTop .icon-wrap {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#backToTop i {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

#backToTop:hover {
    background-color: #ff6600;
    opacity: 1;
    transform: translateY(-4px);
}

#backToTop:focus {
    outline: none;
}

#backToTop:active {
    transform: translateY(2px);
}

@media (max-width: 600px) {
    #backToTop {
        width: 40px;
        height: 40px;
    }

    #backToTop i {
        font-size: 18px;
    }
}
		
/* Ensure financial overview cards have equal height - SPECIFIC TO THIS GROUP */
.financial-overview-cards {
    display: flex;
    flex-wrap: wrap;
}

.financial-overview-cards > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Make the anchor fill the entire column height */
.financial-overview-cards > [class*='col-'] > a {
    display: flex;
    flex: 1;
    text-decoration: none;
}

/* Make cards fill their container */
.financial-overview-cards .card {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.financial-overview-cards .card-body-flex {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Make net profit card link non-clickable but maintain structure */
.financial-overview-cards > [class*='col-'] > a[href="#"] {
    pointer-events: none;
    cursor: default;
}
		
		#myheart a {
			text-decoration: none !important;
			color: plum;
		}

