#main-content {
	max-width: 90%;
	margin: 0 auto;
	padding: 40px;
	border: 1px solid rgba(28, 140, 253, 0.3); /* border style'ı daha net tanımlandı */
	box-shadow: 5px 5px 15px rgba(0, 0, 50, 0.3);
	border-radius: 10px;
}

#main-content p {
	font-size: 16px;
	line-height: 1.5;
	margin: 20px;
	color: rgba(60, 60, 60, 1);
}

#main-content a {
	color: rgba(52, 152, 219, 1);
	text-decoration: none;
	transition: all 0.3s ease;
}

#main-content a:hover {
	color: rgba(231, 76, 60, 1);
	text-decoration: none;
}

#main-content strong {
	font-weight: bold;
}

#main-content span {
	color: rgba(231, 76, 60, 1);
}

#calculations-header {
	text-align: center;
	font-size: 24px;
	padding:10px;
	padding-top: 25px;
	padding-bottom:25px;
	
	background-color: rgba(255, 255, 255, 1);
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-right: auto;
	margin-left: 0px;
	width: calc(100% - 15px);
}

#calculations-header:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 255, 0.7);
}

#link-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Safari uyumlu olması için 300px yerine 280px */
	gap: 45px;
	margin-top: 30px;
	margin-right: 10px;

	
}

.link-item {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
	padding: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-right: auto;
	margin-left: auto;
	width: 95%;
	height: 40px;
}

.link-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 255, 0.7);
}

.link-item a {
	font-size: 15px;
	/*         font-weight: bold; */
}

.link-icon {
	width: 32px;
	height: 32px;
	margin-right: 7px;
	vertical-align: middle;
}

/* Mobil uyumlu stil ayarları */
@media (max-width: 768px) {
	#main-content {
		max-width: 75%;
	}
	.link-item {
		display: block;
		margin-right: 125px;
		margin-left: auto;
		width: 95%;
		margin-top: 20px;
	}
	#link-list {
		display: block;
		margin-top: 30px;
	}
}
