.signup_left_side {
	background-image: url('../images/profile-img.png'); 
	background-size: cover; 
	background-position: center;
}

.bg-overlay2 {
	background: linear-gradient(135deg, rgba(59,130,246,0.85), rgba(79,70,229,0.85)) !important; position:absolute; inset:0;
}
.module-card {
	transition: all 0.2s;
	cursor: pointer;
	padding: 1rem;        /* thoda aur padding */
	min-height: 50px;     /* height increase */
	display: flex;
	align-items: center;  /* vertically center content */
	gap: 0.5rem;          /* icon-text gap */
}

.module-card:hover { 
	transform: scale(1.02); 
}

.border-primary { 
	border-color: #4f46e5 !important; 
}

.bg-light { 
	background-color: #eef2ff !important; 
}

small {
	font-size: 0.75rem;
}
::-webkit-scrollbar {
    width: 6px;        /* patla scrollbar */
}

/* scrollbar track */
::-webkit-scrollbar-track {
    background: transparent;  /* background hide */
}

/* scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: #9ca3af; /* color */
    border-radius: 10px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
}

/* top-bottom arrows hide */
::-webkit-scrollbar-button {
    display: none;
}
.role-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.role-item:hover {
    border-color: rgb(80 165 241);
}

.role-item input {
    display: none;
}

/* ✅ When checkbox is checked */
.role-item:has(input:checked) {
    background-color: rgb(80 165 241);
    color: #fff;
    border-color: rgb(80 165 241);
    box-shadow: 0 4px 12px rgba(13,110,253,.3);
}

/* Optional: text smooth */
.role-item span {
    display: block;
    font-weight: 500;
}

/* Hide horizontal scrollbar but allow scroll */
.table-responsive {
    overflow-x: auto;
    -ms-overflow-style: none;   /* IE & Edge */
    scrollbar-width: none;      /* Firefox */
}

.table-responsive::-webkit-scrollbar {
    display: none;              /* Chrome, Safari */
}
/* Mobile ke liye pagination responsive */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;              /* next line me wrap hoga */
        justify-content: center;       /* center align */
    }
    .pagination .dots {
        display: none;
    }

    .pagination .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }

    .d-flex.justify-content-between {
        flex-direction: column;       /* text upar, pagination neeche */
        align-items: center;
        gap: 8px;
    }

}
.permission-table td {
    vertical-align: middle;
}

.permission-checkbox {
    transform: scale(1.3);
    cursor: pointer;
}

.permission-table tbody tr:hover {
    background-color: #f8f9fa;
}