.mlmmc-master-notifications-card {
	background: linear-gradient(135deg, #17697a 0%, #0d4652 100%);
	color: #ffffff;
	border-radius: 14px;
	padding: 24px;
	margin-top: 16px;
	margin-bottom: 28px;
	box-shadow: 0 10px 25px -5px rgba(23, 105, 122, 0.25);
}
.mlmmc-master-card-header {
	margin-bottom: 18px;
}
.mlmmc-master-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 6px 0 !important;
	display: flex;
	align-items: center;
	gap: 8px;
}
.mlmmc-master-card-subtitle {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
}
.mlmmc-master-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 16px;
}
.mlmmc-master-toggle-box {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.mlmmc-master-toggle-box:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
}
.mlmmc-toggle-info {
	display: flex;
	align-items: center;
	gap: 12px;
}
.mlmmc-toggle-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.mlmmc-toggle-text h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 2px 0 !important;
}
.mlmmc-toggle-text p {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 !important;
}

/* Toggle Switch Styling */
.mlmmc-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 26px;
	flex-shrink: 0;
}
.mlmmc-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.mlmmc-slider {
	position: absolute;
	cursor: pointer;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: rgba(255, 255, 255, 0.3);
	transition: .3s;
	border-radius: 26px;
}
.mlmmc-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .3s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.mlmmc-switch input:checked + .mlmmc-slider {
	background-color: #10b981;
}
.mlmmc-switch input:checked + .mlmmc-slider:before {
	transform: translateX(22px);
}

/* Quick Batch Action Bar */
.mlmmc-quick-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 16px;
}
.mlmmc-quick-btn {
	background: #f1f5f9;
	border: 1px solid #cbd5e1;
	color: #334155;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.mlmmc-quick-btn:hover {
	background: #e2e8f0;
	color: #0f172a;
}

/* Fix BuddyBoss table styling on standalone notifications tab */
.bp-profile-wrapper .main-notification-settings {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}
.bp-profile-wrapper .main-notification-settings td,
.bp-profile-wrapper .main-notification-settings th {
	padding: 12px 16px;
	vertical-align: middle;
}
.bp-profile-wrapper .main-notification-settings tr.notification_heading td {
	background: #f8fafc;
	font-weight: 700;
	color: #1e293b;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.95rem;
}
.bp-profile-wrapper .main-notification-settings td.email,
.bp-profile-wrapper .main-notification-settings th.email {
	width: 120px;
	text-align: center;
}
.bp-profile-wrapper .main-notification-settings td.web,
.bp-profile-wrapper .main-notification-settings th.web {
	width: 120px;
	text-align: center;
}

