 .customStyling label {
     display: flex;
     align-items: center;
     gap: 9px;
     float: left;
 }

 /* Global page loader (admin, counsellor, institute) */
 #global-page-loader {
     position: fixed;
     inset: 0;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.2s ease-in-out;
 }

 #global-page-loader.is-active {
     opacity: 1;
     pointer-events: auto;
 }

 #global-page-loader .loader-backdrop {
     position: absolute;
     inset: 0;
     background: rgba(15, 23, 42, 0.55);
     backdrop-filter: blur(2px);
 }

 #global-page-loader .loader-content {
     position: relative;
     z-index: 1;
     text-align: center;
     padding: 24px 32px;
     border-radius: 16px;
     background: rgba(15, 23, 42, 0.9);
     color: #f9fafb;
     box-shadow: 0 20px 40px rgba(15, 23, 42, 0.65);
 }

#global-page-loader .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25rem;
}

/* Summary Cards Hover Effects */
.summary-card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.summary-icon-wrapper {
    transition: all 0.3s ease;
}

.summary-card:hover .summary-icon-wrapper {
    transform: scale(1.1);
}

/* Table Improvements */
.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    background-color: rgba(105, 108, 255, 0.04) !important;
    transform: scale(1.001);
}

/* Form Filter Section */
.bg-light.rounded {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Card Header Improvements */
.card-header.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* table text centers */
table th, table td {
    text-align: center;
    vertical-align: middle;
}

/* toggle ko center karne ke liye */
table td .form-check {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    margin: 0;
}
