/**
 * TrustLens Admin Notifications Styles
 *
 * @package TrustLens
 */

/* ==========================================================================
   Notifications table & toggles
   ========================================================================== */

.wstl-notifications-table {
	border: none;
	box-shadow: none;
}

.wstl-notifications-table tbody tr {
	border-bottom: 1px solid #eee;
}

.wstl-notifications-table tbody tr:last-child {
	border-bottom: none;
}

.wstl-notifications-table td {
	padding: 15px 10px;
	vertical-align: top;
}

.wstl-notification-toggle {
	width: 60px;
	text-align: center;
}

.wstl-notification-info strong {
	font-size: 14px;
}

.wstl-notification-info .description {
	margin-top: 4px;
}

.wstl-notification-settings {
	margin-top: 10px;
	padding: 10px 15px;
	background: #f9f9f9;
	border-radius: 4px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.wstl-notification-settings label {
	font-size: 13px;
	color: #555;
}

.wstl-notification-settings .small-text {
	width: 70px;
}

.wstl-toggle {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
}

.wstl-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.wstl-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	border-radius: 24px;
	transition: 0.3s;
}

.wstl-toggle-slider::before {
	content: "";
	position: absolute;
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: #fff;
	border-radius: 50%;
	transition: 0.3s;
}

.wstl-toggle input:checked + .wstl-toggle-slider {
	background-color: #2271b1;
}

.wstl-toggle input:checked + .wstl-toggle-slider::before {
	transform: translateX(20px);
}
