/* SCROLL FIX - Phantom scroll sorununu çöz */

/* Yatay scrollbar'ı gizle */
html,
body {
	overflow-x: hidden !important;
}

/* Wrapper'ın yüksekliğini kontrol et */
#wrapper {
	height: auto !important;
	min-height: 100vh !important;
	max-height: none !important;
	overflow: visible !important;
}

/* Content alanlarının yüksekliğini kontrol et */
#content,
.content-wrap {
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

/* Scrollbar'ı gizle */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
	width: 0 !important;
	height: 0 !important;
	display: none !important;
}

html,
body {
	-ms-overflow-style: none !important;
	scrollbar-width: none !important;
}

/* Page content spacing */
#page-content {
	padding-top: 0;
	padding-bottom: 0;
}
