.tooltip {
	position: static;
	display: inline-block;
	bottom: 0;
	border-bottom: 1px dotted #575757;
	color: #575757;
	opacity: 1;
	line-height: 1;
	cursor: help;
}

.loading {
	text-align: center;
}
.end-message {
	text-align: center;
	font-weight: bold;
	color: #999;
}

.post-container {
	max-width: 100%;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.post-container {
		max-width: 80%
	}
}

.post {
	background: #ffffff;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.post-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.numara {
	color: #575757;
    margin-top: -25px;
    font-size: 11px;
}

.profile-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
}

.post-user-info {
	flex-grow: 1;
}

.post-username {
	margin: 0;
}

.post-date {
	color: #888;
	font-size: 14px;
}

.post-content {
	margin: 10px 0;
}

.post-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.like-count {
	color: #0056b5;
	font-weight: bold;
	bottom: 0;
	border-bottom: 1px dotted #0056b5;
	cursor: help;
}

.like-button {
	padding: 5px 10px;
	background-color: #0056b5;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.like-button.liked {
    background-color: white;
    border: 2px solid;
    color: #0056b5;
    border-color: #0056b5;
    border-width: 1px;
}

.like-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

#img-popup {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
#img-popup img {
	max-width: 90%;
	max-height: 90%;
	border: 4px solid white;
	border-radius: 8px;
}
.video-thumb-wrapper {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.video-thumb {
	display: block;
	border-radius: 8px;
}

hr.mediaa {
	margin: 3px 0px -10px 0px
}
.mediaa-vid {
	height: 100px;
	margin: 10px 10px;
}
.mediaa-img {
	height: 70px;
	margin: 5px 5px;
}
.post-mediaa {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.post-mediaa img,
.post-mediaa video {
	max-width: 90%;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


a.amenu:hover {
	text-decoration: none;
	color: inherit;
}

.menu{
	background:#eebc25;
	height:100vh;
	width:240px;
	position:fixed;
	top:0;
	left:0;
	z-index:5;
	outline:none;

	.avatar{
		background:rgba(0,0,0,0.1);
		padding:2em 0.5em;
		text-align:center;

		img{
			width:100px;
			border-radius:50%;
			overflow:hidden;
			border:4px solid #ffea92;
			box-shadow:0 0 0 4px rgba(255,255,255,0.2);
		}

		h2{
			font-weight:normal;
			margin-bottom:0;
		}
	}
	
	.keknet{
		background:rgba(0,0,0,0.1);
		padding:2em 0.5em;
		text-align:center;

		img{
			width:100px;
		}
	}

	ul{
		list-style:none;
		padding:0.5em 0;
		margin:0;

		li{
			padding:0.5em 1em 0.5em 3em;
			font-size:0.95em;
			font-weight:regular;
			background-repeat:no-repeat;
			background-position:left 15px center;
			background-size:auto 20px;
			transition:all 0.15s linear;
			cursor:pointer;

			&:hover{
				background-color:rgba(0,0,0,0.1);
			}

			&:focus{
				outline:none;
			}
		}
	}
}

.bottom-navbar {
	display: none; /* Varsayılan olarak gizle */
	background-color: #826612;
	color: white;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

.bottom-navbar ul {
	list-style: none;
	display: flex;
	justify-content: space-around;
	padding: 10px;
}

.bottom-navbar li a {
	color: white;
	text-decoration: none;
	font-size: 24px;
}

body{
	padding-left:240px;
}

@media (max-width: 768px) {
	.sidebar {
		display: none;
	}
	body{
		padding-left:0;
	}

	.bottom-navbar {
		display: block;
	}
}