/* Y-Tools Dark Mint Theme Variables for y-select */
:root {
	--bg-color: #0f172a;
	--text-main: #f8fafc;
	--text-muted: #94a3b8;
	/* Select Input Appearance */
	--y-select-display-bg: #161f30;
	--y-select-display-border: 1px solid #334155;
	--y-select-display-radius: 8px;
	--y-select-display-color: #e2e8f0;
	--y-select-display-height: 48px;
	--y-select-display-border-hover: #475569;
	--y-select-display-border-focus: #71F494;
	--y-select-display-outline-width: 0px;
	/* Arrow SVG (Colored to match dark theme) */
	--y-select-arrow-bg: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
	/* Dropdown List Box */
	--y-select-list-bg: #161f30;
	--y-select-list-border: 1px solid #334155;
	--y-select-list-radius: 8px;
	--y-select-list-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
	/* Dropdown Items */
	--y-select-item-color: #cbd5e1;
	--y-select-item-hover-bg: #1e293b;
	--y-select-item-hover-color: #71F494;
	--y-select-item-selected-bg: rgba(113, 244, 148, 0.1);
	--y-select-item-selected-color: #71F494;
}
.container {width: 800px;max-width: 100%;margin: 0 auto;padding: 0 24px;box-sizing: border-box;}
.sections {padding: 100px 0;}
.demo-header {margin-bottom: 48px;text-align: center;}
.demo-header h1 {
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 10px 0;
	background: linear-gradient(to right, #00ff34 0%, #00efe6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -1px;
}
.demo-header p {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin: 0;
	font-weight: 400;
}
.demo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
/* Add Green Glow on Focus/Open */
.y-select-wrap.has-focus .y-select-display,
.y-select-wrap.is-open .y-select-display {
	box-shadow: 0 0 0 1px #71F494;
	border-color: #71F494;
}

/* Instructions & Steps Styles */
.demo-steps-wrapper {
	margin-bottom: 50px;
}
.demo-step {
	margin-bottom: 35px;
	color: var(--text-muted);
}
.demo-step:last-child {
	margin-bottom: 0;
}
.demo-instructions-p {
	font-size: 1.1rem;
	margin-bottom: 12px;
	line-height: 1.5;
}
.demo-instructions-code {
	background: rgba(255, 255, 255, 0.05);
	width: 100%;
	padding: 12px 24px;
	border-radius: 8px;
	border: 1px solid var(--y-select-display-border);
	color: #71F494;
	font-family: 'Courier New', Courier, monospace;
	font-size: 1rem;
	display: inline-block;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.code-block-left {
	text-align: left;
	color: #a5b4fc; /* צבע תכלת נעים שמבדיל את התגיות */
	line-height: 1.5;
}
.presentation-group a {
	color: #71F494;
	text-decoration: none;
}
.presentation-group a:hover {
	text-decoration: underline;
}

@media (max-width: 600px) {
	.demo-grid { grid-template-columns: 1fr; }
	.demo-header h1 { font-size: 32px; }
	.container {
		padding: 0 15px;
	}
	.presentation-group {
		padding: 20px 10px;
	}
	.demo-instructions-code {
		padding: 10px;
	}
}