/* demo.css */

/*  Main Styling  */
*,
::after,
::before {
	box-sizing: border-box;
}
:focus-visible,
:focus {
	outline: none;
	box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
html,
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
	overflow-x: hidden;
	scroll-behavior: smooth;
	max-width: 100%;
	height: 100%;
	margin: 0;
	color: var(--color-main);
	position: relative;
	z-index: 1;
	overflow: auto;
}
.index-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
    padding-bottom: 4rem;

}


/* Hero */
.hero-section {
	text-align: center;
	margin: 3rem 0 1.5rem;
}
.hero-section h1 {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}
.hero-section p {
	color: #666;
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Panels */
.picker-showcase {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	max-width: 1100px;
	padding: 0 2rem;
}
.picker-panel {
	background: #fff;
	border: 1px solid var(--box-light-border);
	border-radius: 12px;
	padding: 1.8rem 2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.picker-panel h2 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
	color: #111;
}

/* Grid */
.demo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem 2rem;
}
.demo-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.demo-item h3 {
	font-size: 1.05rem;
	font-weight: 500;
	margin: 0;
	color: #222;
}
.demo-item small {
	font-size: 0.85rem;
	color: #888;
	margin-top: 4px;
}

/* Range Container */
.date-range-container {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

/* Submit Button */
.submit-button {
	background-color: var(--color-accent);
	color: white;
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	margin-top: 10px;
}
.submit-button:hover {
	background-color: #005fb2;
}
