.login {
	position: fixed;
	z-index: 2001; /* Overlay'den daha yüksek */
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	box-sizing: content-box;
} 

/* Overlay arka plan */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	background: linear-gradient(135deg, rgba(11, 28, 44, 0.95) 0%, rgba(61, 11, 11, 0.95) 100%);

	z-index: 2000; /* Login modalın altında */
}

/* Kapalıyken her şey normal görünür */
body.no-scroll {
	overflow: hidden; /* Scroll'u engeller */
}

.close-btn {
	position: absolute;
	top: -10px; /* Modalın üst kısmına taşır */
	right: -10px; /* Sağ üst köşeye taşır */
	background-color: #fff; /* Beyaz arka plan */
	border: 2px solid #ddd; /* İnce çerçeve */
	border-radius: 50%; /* Yuvarlak görünüm */
	font-size: 16px; /* Daha kompakt görünüm */
	font-weight: bold;
	color: #333; /* Varsayılan renk */
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Hafif gölge efekti */
	transition: all 0.3s ease-in-out;
}

.close-btn:hover {
	background-color: #333; /* Hover sırasında koyu arka plan */
	color: #fff; /* Beyaz renk simge için */
	transform: scale(1.1); /* Hafif büyüme efekti */
}


div#profileDiv {
    max-width: 50%;
    width: 50%;
    align-self: center;
}

button#profileUpdateBtn {
    float: right;
}

#languageSelectionDiv .dropdown-toggle::after {
  display: none; /* Oku gizler */
}

svg#topMenuLanguageIcon {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
	margin-right: 0.0rem !important;
}

#carouselExampleCaptions {
	max-width: 960px;
	width: calc(100% - 32px);
}

#carouselExampleCaptions .carousel-item img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

#carouselExampleCaptions .home-hero-card {
	left: 8%;
	right: 8%;
	bottom: 32px;
	padding: 18px 22px;
	text-align: left;
	color: #f8fafc;
	background: rgba(15, 23, 42, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.24);
	backdrop-filter: blur(8px);
}

#carouselExampleCaptions .home-hero-title {
	margin-bottom: 6px;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.15;
}

#carouselExampleCaptions .home-hero-subtitle {
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
}

@media (max-width: 767.98px) {
	#carouselExampleCaptions {
		width: calc(100% - 24px);
	}

	#carouselExampleCaptions .home-hero-card {
		position: static;
		margin: 10px 0 16px;
		padding: 14px 16px;
		color: var(--cui-body-color);
		background: var(--cui-body-bg);
		border-color: var(--cui-border-color);
		box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
	}

	#carouselExampleCaptions .home-hero-title {
		font-size: 1.25rem;
	}

	#carouselExampleCaptions .home-hero-subtitle {
		font-size: 0.95rem;
	}
}
