.bulk-tabs-wrapper { margin-bottom: 20px; }
.bulk-tab-buttons { display: flex; border-bottom: 2px solid #ccc; }
.bulk-tab-buttons button {
	padding: 10px 20px;
	cursor: pointer;
	background: #ffd1c0;
	border: none;
	border-bottom: 2px solid transparent;
	font-weight: bold;
	transition: all 0.2s;
	color: black;		
}
.bulk-tab-buttons button.active {
   border-bottom: 2px solid #0073aa;
background: #f48157;
color: #fffdfd;
}
.bulk-tab-content { display: none; padding: 20px 0; }
.bulk-tab-content.active { display: block; }
.bulk-manager-columns {
	display: flex;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;
	padding: 0px 30px;
}
.bulk-column { 
flex: 1; 
min-width: 300px;
border: 1px solid #b3a1a1;
  padding: 10px;
  }
.bulk-column select {
	width: 100%;
}
.bulk-actions {
	margin-top: 20px;
	text-align: center;
}
.bulk-actions button {
	padding: 10px 25px;
	font-size: 16px;
	background-color: #0073aa;
	color: white;
	border: none;
	cursor: pointer;
}	

.bulk-remove-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
background: #fff;
padding: 0px 30px;
border-radius: 10px;
font-family: 'Segoe UI', sans-serif;
margin-top: 0px;
}

.remove-user-list,
.remove-course-list {
padding: 10px;
}

.remove-user-list > label,
.remove-course-list > label {
font-size: 18px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 15px;
display: block;
}

.remove-user {
display: flex;
align-items: center;
justify-content: space-between;
background: #eaf1f9;
border: 1px solid #eee;
border-radius: 30px;
padding: 6px 15px;
margin-bottom: 8px;
transition: background 0.3s;
position: relative;
margin-right: 10px;
}

.remove-user:hover {
background: #f0faff;
}

.remove-user .left-side {
display: flex;
align-items: center;
}

.remove-user input[type="checkbox"] {
margin-right: 10px;
transform: scale(1.2);
}

.remove-user .user-name {
font-weight: 600;
font-size: 15px;
color: #333;
}

.tooltip-iconxx {
font-size: 14px;
color: #007bff;
cursor: pointer;
margin-left: 8px;
position: relative;
z-index: 10;
}

.tooltip-iconxx::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(10px, -50%);
    background: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: pre-wrap;
    max-width: 250px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tooltip-iconxx:hover::after {
    opacity: 1;
}

.remove-course-list label {
display: inline-flex;
align-items: center;
background: #eef3f8;
border-radius: 20px;
padding: 8px 14px;
margin-bottom: 10px;
margin-right: 10px;
font-size: 14px;
color: #333;
cursor: pointer;
}

.remove-course-list input[type="checkbox"] {
margin-right: 8px;
transform: scale(1.1);
}

.remove-warning {
grid-column: span 2;
background: #fff4e5;
border: 1px solid #ffc107;
padding: 10px;
border-radius: 8px;
font-size: 14px;
color: #856404;
margin: 15px 30px;
}

.bulk-actions {
grid-column: span 2;
margin-top: 20px;
text-align: center;
}

.remove-btn {
background: linear-gradient(90deg, #dc3545, #bd2130);
color: #fff;
border: none;
padding: 12px 30px;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.section-heading {
text-align: center;
font-size: 20px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 25px;
padding: 5px;
border-bottom: 2px solid #0073aa;
display: block;
background: #ddecf9;
}

.remove-btn:hover {
background: linear-gradient(90deg, #c82333, #a71d2a);
}

.remove-user .user-courses {
font-size: 14px;
color: #6c757d;
white-space: nowrap;
max-width: 50%;
overflow: hidden;
text-overflow: ellipsis;
text-align: right;
}

.remove-course-list {
   display: flex;
flex-direction: column;
gap: 0px;
}



.remove-course-list label:hover {
	background: #d8e9f7;
}

.remove-course-list input[type="checkbox"] {
	margin-right: 8px;
	transform: scale(1.1);
}


.remove-btn {
	background: linear-gradient(90deg, #dc3545, #bd2130);
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.remove-btn:hover {
	background: linear-gradient(90deg, #c82333, #a71d2a);
}

#select-all-users-remove {
	margin-right: 8px;
	transform: scale(1.2);
}


.remove-user-list > div,
.remove-course-list > div {
    scrollbar-width: thin;
    scrollbar-color: #0073aa #f1f1f1; 
    overflow-y: auto;
    max-height: 160px;
}

.remove-user-list > div::-webkit-scrollbar,
.remove-course-list > div::-webkit-scrollbar {
    width: 8px;
}

.remove-user-list > div::-webkit-scrollbar-thumb,
.remove-course-list > div::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0073aa, #00aaff);
    border-radius: 8px;
}

.remove-user-list > div::-webkit-scrollbar-track,
.remove-course-list > div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.remove-user-list,
.remove-course-list
{
	border: 1px solid #c8c1c1;
}


.ldc_courses_search_box:focus {
    border-color: #0073aa;
    outline: none;
}

.mycustselect {
    width: 100%;
    min-height: 160px;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
	background: #fdfdfd;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
}
.mycustselect:focus {
    border-color: #0073aa;
    background-color: #fff;
    outline: none;
}

.btn_classroomzz:hover {
    background: linear-gradient(135deg, #005f8d, #003f5c);
}
.btn_classroomzz i {
    transition: transform 0.3s;
}
.btn_classroomzz:hover i {
    transform: translateX(5px);
}

.mycustselect {
    scrollbar-width: thin;
    scrollbar-color: #0073aa #f0f0f0; 
}


.mycustselect::-webkit-scrollbar {
    width: 8px;
}

.mycustselect::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.mycustselect::-webkit-scrollbar-thumb {
    background: #0073aa;
    border-radius: 10px;
    transition: background 0.3s;
}

.mycustselect::-webkit-scrollbar-thumb:hover {
    background: #005f8d;
}

.custom-popup-modal {
  width: 100%;
  height: 100%;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; 
  box-sizing: border-box;
}


.custom-popup-content {
  background-color: #fff; 
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

.modal-blur {
  filter: blur(3px);
  pointer-events: none;
}

.dnone{
	display:none;
}

.mysearchbt{
	padding: 4px 0px !important;
	border-radius: 25px !important;
	border-color: #a29292 !important;
	width: 35% !important;
	margin-right: 10px !important;
}