.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;
}

.permission-item {
    display: flex;
    align-items: center;   /* 🔥 ye main fix hai */
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.permission-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
.main-content {
    min-height: calc(100vh - 140px);
    padding-bottom: 40px;
}

/* ===== Current Plan ===== */
.current-plan {
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ===== Plan Card ===== */
.plan-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #4f46e5;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
    position: relative;
}

/* Hover */
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Active Plan */
.active-plan {
    border: 2px solid #4f46e5;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(79,70,229,0.2);
}

/* Popular Badge */
.badge-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #4f46e5;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* Price */
.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
}

.plan-price span {
    font-size: 14px;
    color: #888;
}

/* Title */
.plan-title {
    font-weight: 600;
}

/* Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.plan-features li {
    margin: 12px 0;
    font-size: 14px;
    color: #444;
}

/* Tick / Cross */
.plan-features li::before {
    content: "✔";
    color: #22c55e;
    margin-right: 8px;
}

.plan-features li.disabled {
    color: #bbb;
    text-decoration: line-through;
}

.plan-features li.disabled::before {
    content: "✖";
    color: #ccc;
}
.plan-color {
    color : #0047AB;
}
.page-content{
    padding: calc(70px + 24px) calc(24px * .75) 10px calc(24px * .75);
}


#sidebar-menu ul li a:hover {
    background: #0047AB;
}

body[data-sidebar=dark] .mm-active .active {
    background: #0047AB;
}

/*body[data-sidebar=dark] .mm-active>a {
    color: #6366F1 !important;
}*/

.navbar-brand-box {
    padding: 0px;
}

body[data-sidebar=dark] .navbar-brand-box {
    border-bottom: 1px solid #0047AB;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0047AB;
    --bs-btn-border-color: #0047AB;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #485ec4;
    --bs-btn-hover-border-color: #4458b8;
    --bs-btn-focus-shadow-rgb: 111, 132, 234;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4458b8;
    --bs-btn-active-border-color: #4053ad;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0047AB;
    --bs-btn-disabled-border-color: #0047AB;
}

.text-primary {
    --bs-primary-rgb: 0, 71, 171;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.bg_color {
    background: #0047AB;
}

.text_color {
    color: #ffffff;
}

.noti-icon i {
    color: #ffffff;
}

.auth-right-section {
    background: #ffffff; 
    /*margin-left: 30px; */
    border: 16px double #0047AB; 
    border-radius: 12px;
}

.Upgradebtn {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #0047AB;
    border-color: #0047AB;
}

.text-light {
    color: #0047AB !important;
}