/* Target only Scalenut Admin Menu Icon */
#adminmenu #toplevel_page_scalenut-settings .wp-menu-image img {
	width: 32px;
	height: 32px;
	padding: 0 !important; /* Reset padding */
	opacity: 1 !important; /* Reset opacity */
	filter: grayscale(100%);
	transition:
		filter 0.3s ease,
		opacity 0.3s ease;
}

/* Hover state for Scalenut Admin Menu Icon */
#adminmenu #toplevel_page_scalenut-settings:hover .wp-menu-image img {
	filter: grayscale(0%); /* Restore original color */
	opacity: 1 !important; /* Ensure full visibility */
}

.wrap.scalenut-settings {
	font-family: "Inter", "San Francisco", Helvetica, Arial, sans-serif;
	margin: 20px;
	line-height: 1.8;
	max-width: 800px;
}

/* Title Styles */
.scalenut-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 40px;
	margin-bottom: 20px;
	color: #333333;
}

/* Intro Section */
.scalenut-intro {
	display: flex;
	align-items: center;
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 15px;
}

.scalenut-logo {
	width: 40px;
	height: 40px;
	margin-left: -11px;
}

/* Description Text */
.scalenut-description {
	font-size: 14px;
	color: #555555;
}

/* Container Styles */
.scalenut-container {
	background-color: #ffffff;
	padding: 15px;
	max-width: 650px;
}

/* Heading Styles */
.scalenut-heading {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #333333;
	margin: 0;
	padding: 0;
}

/* Text Styles */
.scalenut-text {
	font-size: 16px;
	color: #444444;
	margin-bottom: 20px;
	line-height: 1.6;
}

/* Button Styles */
.scalenut-btn {
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	border: none;
	width: auto;
	max-width: 200px;
}

/* Primary Button (Login) */
.scalenut-btn-primary {
	background-color: #0073aa;
	color: #ffffff;
}

.scalenut-btn-primary:hover {
	background-color: #005a8e;
}

/* Secondary Button (Disconnect) */
.scalenut-btn-secondary {
	background-color: #ffffff;
	color: #333333;
	border: 1px solid #ddd;
}

.scalenut-btn-secondary:hover {
	border-color: #bbb;
}

/* Button Group Layout */
.scalenut-btn-group {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

/* Login Container Styles */

.scalenut-login-container {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
}

.scalenut-loader {
	padding-top: 5px;
	display: none;
}

.button-disabled {
	opacity: 0.8;
	cursor: not-allowed;
	background-color: #b0b0b0;
	border-color: #b0b0b0;
	color: #a0a0a0;
	pointer-events: none;
}

.scalenut-divider {
	border-top: 1px solid #ddd;
	margin: 20px 0;
	width: 85%;
}

.scalenut-support-text {
	font-size: 0.875rem;
	color: #666;
}

.scalenut-support-link {
	color: #0073e6;
	text-decoration: none;
	cursor: pointer;
}

.scalenut-support-link:hover {
	text-decoration: underline;
}
