p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    margin: 0;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/*// Font Imports*/
@font-face {
    font-family: 'Benton Sans';
    src: url("./resources/fonts/bentonsansregular.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: 'Benton Sans Book';
    src: url("./resources/fonts/bentonsansbook.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("./resources/fonts/notosans.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans Regular";
    src: url("./resources/fonts/notosans-regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans Bold";
    src: url("./resources/fonts/notosans-bold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "IBM";
    src: url("./resources/fonts/ibmplexsans.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "IBM Light";
    src: url("./resources/fonts/ibmplexsanslight.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "IBM Regular";
    src: url("./resources/fonts/ibmplexsansregular.ttf") format("truetype");
    font-display: swap;
}

body {
    background-color: #f6f7f8;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    overflow-x: hidden;
}

a{
	text-decoration: none;
}

/* Hamburger Menü Butonu */
.hamburger-menu {
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: absolute;
	bottom: 0;
}

.hamburger-menu .bar {
	width: 100%;
	height: 4px;
	background-color: #333;
	border-radius: 2px;
}

.app-menu{
	display: none;

}
/* Menü Açık Olduğunda */
.app-menu.show {
	display: block;
}

/* Menü Daraltma İkonu */
.menu-collapse-icon {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 40px;
	height: 40px;
	background-color: #333;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
	z-index: 1000; /* Üstte görünmesini sağlamak için */
}

.menu-collapse-icon:hover {
	transform: scale(1.1);
}

.menu-collapsed .menu-collapse-icon i {
	transform: rotate(180deg);
}

/* Başlangıç Durumları */
.menubar {
	width: 250px; /* Menü açıkken */
	transition: width 0.3s ease;
}

.center-box {
	width: 50%; /* Menü açıkken */
	transition: width 0.3s ease;
}

/* Menü kapalıyken */
.menu-closed .menubar {
	width: 0;
}

.menu-closed .center-box {
	width: 80%;
}

header {
    /*background-color: #e34a4c;*/
    background-color: #0e3f83;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo{
	display: flex;
	align-items: center;
	font-family: IBM Regular;
}

.logo img {
    height: 60px;
    margin-right: 4px;
    /*border-radius: 35px 5px 35px 5px;*/
    /*border-radius: 35px 0px 35px 35px;*/
    /*border-radius: 35px 0px 0px 35px;*/
    /*box-shadow: 0 0 18px darkred;*/
}

.logo a{
	display: flex;
	font-size: 20px;
	font-weight: 600;
	color: #fdfef1;
	position: relative;
	top: -1px;
	align-items: center;
}

.header-content .logo .changelog {
	margin-left: 6px;
	font-size: 14px;
	color: rgb(255 255 255 / 47%);
	font-weight: 600;
}

.search-bar {
    flex-grow: 2;
    display: flex;
    justify-content: space-around;
    position: relative;
}

.search-bar input {
    width: 100%;
    max-width: 600px;
    padding: 8px;
    border: black 1px solid;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-controls {
    display: flex;
    align-items: center;
	/*flex-direction: column;*/
}


.user-controls button, .user-controls .login-button, .user-controls .signup-button  {
    margin-left: 10px;
    padding: 10px 20px;
    /*background-color: #ff4500;*/
    background-color: rgb(214 30 33);;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
	text-decoration: none;
}

.user-controls button:hover {
    background-color: #c73a02;
    color: white;
    border: 1px solid white;
}

.main{
    display: flex;
    padding-top: 30px;
    background-color: #dae0e6;
	/*flex-direction: column;*/
	position: relative;
	min-height: calc(100vh - 112px);
	height: 100%;
}

.menubar-left{
    width: 20%;
    padding-left: 50px;
}

.center-box{
    width: 50%;
}

.right-sidebar{
    width: 20%;
    margin-left: 40px;
}

.post-item{
    background-color: #fff;
    border: 1px solid #ccc;
}

.post-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 70px;
    overflow: hidden;
}

.post-box{
    box-sizing: border-box;
    display: flex;
}

.post-item .post-box{
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.left-post-box{
    background-color: rgb(248, 249, 250);
    align-items: center;
    border: 1px solid transparent;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6px;
    width: 41px;
	text-align: -webkit-center;
}


.post-box .downvote-btn, .post-box .upvote-btn {
    border: 1px solid transparent;
    background-color: initial;
    cursor: pointer;
    padding: 2px 2px 1px;
}

.post-box .upvote-btn .upvote {
    height: 20px;
    width: 19px;
}

.post-box .downvote-btn .downvote {
    height: 20px;
    width: 19px;
}

.post-box .votes {
    font-family: IBM Regular;
    margin: 0;
    text-align: center;
}

.head-p{
	font-family: "IBM Regular";
}

.right-post-box{
    display: flex;
    flex-direction: column;
    gap: 8px;
	width: 100%;
}

.right-post-box .right-post-box-header {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.right-post-box .right-post-box-header .subIcon {
    height: 21px;
    width: 21px;
}

.right-post-box .right-post-box-header .subName {
    color: #1c1c1c;
    font-family: IBM;
    font-size: 12px;
    padding-top: 2px;
}

.right-post-box .right-post-box-header .joinh5 {
    color: #1c1c1c;
    font-family: IBM;
    font-size: 12px;
    background-color: rgb(28, 89, 175);
    color: #fff;
    padding: 8px 10px;
    border-radius: 25px;
	min-width: max-content;
}

.right-post-box .right-post-box-header .joinh5:hover{
    background-color: #151596;
}

.right-post-box .right-post-box-header .author, .right-post-box .right-post-box-header .creationDate {
    color: #787c7e;
    font-family: IBM Light;
    font-size: .71em;
    padding-top: 2px;
}

.right-post-box-header h5{
    margin-right: 8px;
}

.right-post-box-header-start{
    display: flex;
    gap: 10px;
    padding: 9px 2px 0 10px;
	width: 100%;
}

.owner-creation{
	margin-left: auto;
	text-align: end;
}

.right-post-box-header-end{
    display: flex;
    padding: 9px 2px 0 10px;
}

.right-post-box .right-post-box-headline {
    gap: 0px;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 10px;
}

.right-post-box .right-post-box-headline .headline-text {
    color: #222;
    font-family: IBM Regular;
    font-size: 18px;
    margin-right: 10px;
}

.right-post-box .right-post-box-content {
    display: flex;
    margin-top: 5px;
	flex-direction: column;
}

.right-post-box-content .attachment-zone{
	padding-left: 10px;
	margin-top: 15px;
	margin-bottom: 10px;
}

.right-post-box-content .attachment-zone a, .comment-attachment-zone a{
	color: black;
	text-decoration: underline;
}

.comment-attachment-zone{
	margin: 10px 5px;
}

.right-post-box .right-post-box-content .content-text {
    color: #1c1c1c;
    font-family: Noto Sans Regular!important;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 10px;
}

.right-post-box .right-post-box-content .content-text a{
	color: #1c1c1c;
	font-family: Noto Sans Regular!important;
	font-size: 14px;
	line-height: 1.5;
}

.right-post-box .right-post-box-footer {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    padding-left: 10px;
}

.right-post-box .right-post-box-footer .post-footer-div {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 3px;
    display: flex;
    gap: 6px;
    padding: 3px 10px;
}

.right-post-box .right-post-box-footer .post-footer-div i {
    height: -webkit-max-content;
    height: max-content;
    width: 18px;
}

.right-post-box .right-post-box-footer .post-footer-div h4 {
    color: #878a8c;
    font-family: IBM;
    font-size: 12px;
}

.right-post-box-footer .post-footer-div:hover{
    background-color: #e7e7e7;
}

#footer{
    min-height:50px;
    margin-top:auto;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 2.5rem;
	background-color: #FFF;
}

.app-footer {
    padding: 15px 0;
    border-top: 1px solid #cccccc;
}
.app-footer .copyright {
    /*float: left;*/
    font-weight: 400;
    color: #aaacae;
    letter-spacing: 1.5px;
    text-align: center;

}

/* Orta bölüm - üst taraf buttonlar */
.createTitleMenu {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: 61px;
    margin-bottom: 16px;
    padding: 8px 5px 8px 12px;
    position: relative;
}

.createTitleMenu .avatar {
    cursor: pointer;
    height: 54px;
    left: 1.2%;
    position: absolute;
    top: -9%;
}

.createTitleMenu input {
    background-color: #f6f7f8;
    border: 1px solid #edeff1;
    border-radius: 4px;
    color: #878a8c;
    font-family: Benton Sans Book;
    font-size: 15px;
    height: 36px;
    margin-bottom: 2px;
    margin-right: 8px;
    padding-left: 16px;
    width: 100%;
}


.sortBar, .sortBar .left {
    align-items: center;
    display: flex;
}

.sortBar {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: 61px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 8px 0 61px;
}

.sortBar .left button{
    margin-right: 20px;
}

.sortBar .left .sortButton, .sortBar .right .sortButton {
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1px;
    padding: 5px 10px 5px 10px;
}

.sortBar .left .sortButton .icon, .sortBar .right .sortButton .icon {
    height: 1.525em;
}

.sortBar .left .sortButton p.selected, .sortBar .right .sortButton p.selected {
    color: #0079d3;
}

.sortBar .left .sortButton p, .sortBar .right .sortButton p {
    color: #878a8c;
    font-family: Noto Sans Bold;
    font-size: 14px;
    padding-bottom: 4px;
    padding-top: 2px;
}

.sortBar .left .sortButton:active, .sortBar .right .sortButton:active {
    background-color: #dad9d9 !important;
}

.sortBar .left .sortButton:hover, .sortBar .right .sortButton:hover {
    background-color: #e9e9e9  !important;
}

.sortBar .left .sortButton.selected {
    background-color: #e9e9e9  !important;
}

.menu-icon{
    display: inline-block;
    width: 1rem;
    margin-right: 4px;
    transition: margin-right .5s ease;
}

/*POST PAGE STYLE*/
.comment-container {
    background-color: red;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 12px 6px;
    width: 100%;
    padding-right: 20px;
}

.comment-container .submit-comment {
    margin-top: 7px;
    padding-left: 42px;
}

.submit-comment {
    margin-top: 7px;
    padding-left: 42px;
}

.comment-container .submit-comment .submit-header {
    color: #060606;
    font-family: Noto Sans Regular;
    font-size: 12px;
}

.hoverArea {
    border: 1px solid transparent;
    border-radius: 4px;
    margin-top: 5px;
    width: 100%;
}

.hoverArea {
    margin-top: 5px;
    width: 100%;
    min-width: 652px;
    border: 1px solid transparent;
}

.hoverArea .comment-box {
    border: 1px solid #edeff1;
    border-bottom: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: #060606;
    font-family: Noto Sans Regular;
    font-size: 14px;
    height: 139px;
    outline: none;
    padding: 9px 16px;
}

.submit-comment .comment-box {
    border: 1px solid #edeff1;
    border-bottom: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Noto Sans Regular;
    font-size: 14px;
    height: 139px;
    max-width: 100%;
    min-height: 139px;
    min-width: 652px;
    outline: none;
    padding: 9px 16px;
    width: 100%;
}

.comment-container .submit-comment .comment-box {
    border: 1px solid #edeff1;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Noto Sans Regular;
    font-size: 14px;
    height: 139px;
    max-width: 100%;
    min-height: 139px;
    min-width: 652px;
    outline: none;
    padding: 9px 16px;
    width: 100%;
}

.comment-box-textarea {
    height: 139px;
    min-height: 139px;
    width: 100% !important;
    min-width: 652px;
    max-width: 100%!important;
}


.hoverArea:focus-within {
    outline: -webkit-focus-ring-color auto 1px;
    border: 1px solid black;
}


/* Navbar Üye giriş yaptıktan sonra çıkan sağ üst köşe menü */
.header-content .userInfo .link {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	gap: 5px;
	height: 30px;
	padding: 0 18px 0 14px;
	position: relative;
}

.loggedInLink {
	height: 41px!important;
	margin-top: 1px;
	padding-bottom: 2px!important;
	padding-left: 10px!important;
	padding-right: 12px!important;
}

.header-content .userInfo .dropdownMenu {
	background-color: #fff;
	border: 1px solid #edeff1;
	border-radius: 4px;
	box-sizing: border-box;
	/*max-height: 760px;*/
	/*min-height: 536px;*/
	overflow: auto;
	overflow-x: hidden;
	padding-top: 10px;
	position: absolute;
	top: 10%;
	width: 254px;
	z-index: 10;
}

.header-content .userInfo .dropdownMenu .dropdownItem .icon {
	-webkit-touch-callout: none;
	height: 19px;
	-webkit-user-select: none;
	user-select: none;
}

.header-content .userInfo .dropdownMenu .dropdownItem:hover {
	background-color: rgba(0,0,0,.04);
}

.header-content .userInfo .link * {
	pointer-events: none;
}

.avatarContainer {
	display: flex;
	gap: 5px;
	margin-right: 80px;
}

.avatarContainer .avatar {
	height: 33px;
}

.avatarContainer .navbarUserInfo {
	display: flex;
	flex-direction: column;
	gap: 3px;
	justify-content: space-between;
}

.avatarContainer .navbarUserInfo h4 {
	font-family: IBM Light;
	font-size: 12px;
	-webkit-transform: scaleX(1.1);
	transform: scaleX(1.1);
	-webkit-transform: scaleY(.925);
	transform: scaleY(.925);
}

.karmaContainer {
	align-items: flex-end;
	display: flex;
	font-family: IBM;
	font-size: 12px;
	gap: 3px;
}

.karmaContainer .karma {
	height: 12px;
	padding-bottom: 1px;
}

.karmaContainer p {
	color: #a8aaab;
}

.expand {
	transition: all .3s;
	transform: rotate(270deg);
}

.expand.rotated{
	transform: rotate(0deg);
}

.header-content .userInfo .dropdownMenu .dropdownItem {
	align-items: center;
	background-color: #fff;
	cursor: pointer;
	display: flex;
	gap: 14px;
	justify-content: flex-start;
	padding: 11px 20px;
}

.dropdownItem a{
	display: flex;
	gap: 14px;
	width: 100%;
}

.dropdownProfile {
	cursor: default!important;
	display: flex;
	padding-top: 3px!important;
}

.dropdownProfile .avatarBig {
	cursor: pointer;
	height: 78px;
}

.dropdownProfile .profile {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 3px;
	justify-content: center;
	margin-left: 1px;
	margin-top: 12px;
}

.header-content .userInfo .dropdownMenu .dropdownItem h3 {
	-webkit-touch-callout: none;
	color: #1c1c1c;
	font-family: IBM Light;
	font-size: 14px;
	-webkit-transform: scaleY(.95);
	transform: scaleY(.95);
	-webkit-user-select: none;
	user-select: none;
}

.dropdownProfile .profile h3.username {
	font-family: IBM!important;
	font-size: 15px!important;
	margin-bottom: 2px;
}

.dropdownProfile .profile button.toProfile {
	align-items: center;
	background: #3d99de;
	border: 1px solid #3d99de;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: Noto Sans Bold;
	gap: 5px;
	height: 27px;
	justify-content: center;
	margin-bottom: 2px;
	padding: 0 16px 1px 14px;
}

.header-content button.shopAvatar {
	background: #020024;
	background: linear-gradient(90deg,#020024,#5349da 0,#b44ac0);
	border: none;
	color: #fff;
	margin-right: 5px;
	margin-top: 1px;
	padding: 4px 16px 8px;
	position: relative;
}

.header-content .auth {
	border: 1px solid #0079d3;
	border-radius: 9999px;
	box-sizing: border-box;
	cursor: pointer;
	font-family: Noto Sans Bold;
	font-size: 14px;
	height: 32px;
	margin: 14px 0 12px;
	padding-bottom: 7px;
}

.dropdownProfile .profile button.toProfile .toProfileImg {
	height: 14px;
}

.header-content .userInfo .dropdownMenu .line {
	background-color: #edeff1;
	height: 1px;
	margin-bottom: 12px;
	margin-top: 14px;
	width: 100%;
}

.line {
	align-self: center;
	background-color: #edeff1;
	color: #edeff1;
	height: 1px;
	margin: 10px 16px 10px 0;
	width: 97.25%;
}


/*##### BİTİŞ Navbar Üye giriş yaptıktan sonra çıkan sağ üst köşe menü BİTİŞ ######*/


.userInfo{
	background-color: #FFF;
	color: black;
	border-radius: 3px;
}

.comment-container .submit-comment .button-bar, .nestedComment .button-bar, .nested-comment-box .button-bar {
	background-color: #f6f7f8;
	border: 1px solid #edeff1;
	border-radius: 4px;
	border-top: none;
	box-sizing: border-box;
	display: flex;
	gap: 1px;
	margin-top: -3px;
	padding-left: 7px;
	padding-top: 2px;
	width: 100%;
}

.comment-container .post-comment-button{
	background-color: #1c59af;
	color: white;
	cursor: pointer;
}

.comment-container .submit-comment .button-bar .submit:hover, .nested-comment-box .button-bar .submit:hover {
	box-shadow: inset 0 0 100px 100px hsla(0,0%,100%,.125);
}

.comment-container .submit-comment .button-bar .submit, .nestedComment .button-bar .submit, .nested-comment-box .button-bar .submit {
	border: none;
	height: 24px;
	margin-bottom: 1px;
	margin-right: 8px;
	padding-left: 19px;
	padding-right: 21px;
	border-radius: 15px;
}

.comment-container .submit-comment .button-bar p {
	font-family: Noto Sans Bold;
	font-size: 13px;
}

.hoverArea .button-bar .end {
	align-items: center;
	display: flex;
	height: 32px;
	margin-left: auto;
}


.comment-writer-user {
	color: rgb(0, 121, 211);
}

.nestedComment .button-bar p, .nested-comment-box .button-bar p {
	font-family: Noto Sans Bold;
	font-size: 13px;
}


/* Bootstrap Modal için gerekli temel stiller */
.modal {
	display: none;
	position: fixed;
	z-index: 1050;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	/*align-items: center;*/
}

.modal-dialog {
	position: relative;
	width: 100%;
	margin: 10px;
	pointer-events: none;
	max-width: 500px; /* İsteğe bağlı olarak modal genişliğini belirleyebilirsiniz */
	margin-top: 10%;
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
	pointer-events: auto;
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #e9ecef;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
}

.close {
	padding: 10px;
	margin: 0 0 0 auto;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 1rem;
	border-top: 1px solid #e9ecef;
	border-bottom-right-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
}

/* Genel buton stili */

.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	font-family: Noto Sans Bold;
	font-size: 13px;
}

.btn-send-button{
	background-color: #1c59af;
	color: #fff;
}

.btn:hover{
	box-shadow: inset 0 0 100px 100px hsla(0,0%,100%,.125);
}

.btn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}

/* Birincil buton */
.btn-primary {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}

.btn-primary:hover {
	color: #fff;
	background-color: #0b5ed7;
	border-color: #0a58ca;
}

/* İkincil buton */
.btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.btn-secondary:hover {
	color: #fff;
	background-color: #5c636a;
	border-color: #565e64;
}

/* Başarı butonu */
.btn-success {
	color: #fff;
	background-color: #198754;
	border-color: #198754;
}

.btn-success:hover {
	color: #fff;
	background-color: #157347;
	border-color: #146c43;
}

/* Bilgi butonu */
.btn-info {
	color: #fff;
	background-color: #0dcaf0;
	border-color: #0dcaf0;
}

.btn-info:hover {
	color: #fff;
	background-color: #31d2f2;
	border-color: #25cff2;
}

/* Uyarı butonu */
.btn-warning {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
}

.btn-warning:hover {
	color: #212529;
	background-color: #ffca2c;
	border-color: #ffc720;
}

/* Tehlike butonu */
.btn-danger {
	color: #fff!important;
	background-color: #dc3545!important;
	border-color: #dc3545!important;
}

.btn-danger:hover {
	color: #fff;
	background-color: #bb2d3b;
	border-color: #b02a37;
}

/* Açık buton */
.btn-light {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}

.btn-light:hover {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5;
}

/* Koyu buton */
.btn-dark {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}

.btn-dark:hover {
	color: #fff;
	background-color: #1c1f23;
	border-color: #191c1f;
}

/* Link buton */
.btn-link {
	font-weight: 400;
	color: #0d6efd;
	text-decoration: underline;
}

.btn-link:hover {
	color: #0a58ca;
	text-decoration: underline;
}

/* Genel outline buton stili */
.btn-outline {
	color: inherit;
	background-color: transparent;
	background-image: none;
	border: 1px solid;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Birincil outline buton */
.btn-outline-primary {
	color: #0d6efd;
	border-color: #0d6efd;
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}

/* İkincil outline buton */
.btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d;
}

.btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

/* Başarı outline butonu */
.btn-outline-success {
	color: #198754;
	border-color: #198754;
}

.btn-outline-success:hover {
	color: #fff;
	background-color: #198754;
	border-color: #198754;
}

/* Bilgi outline butonu */
.btn-outline-info {
	color: #0dcaf0;
	border-color: #0dcaf0;
}

.btn-outline-info:hover {
	color: #fff;
	background-color: #0dcaf0;
	border-color: #0dcaf0;
}

/* Uyarı outline butonu */
.btn-outline-warning {
	color: #ffc107;
	border-color: #ffc107;
}

.btn-outline-warning:hover {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
}

/* Tehlike outline butonu */
.btn-outline-danger {
	color: #dc3545;
	border-color: #dc3545;
}

.btn-outline-danger:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}

/* Açık outline buton */
.btn-outline-light {
	color: #f8f9fa;
	border-color: #f8f9fa;
}

.btn-outline-light:hover {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}

/* Koyu outline buton */
.btn-outline-dark {
	color: #212529;
	border-color: #212529;
}

.btn-outline-dark:hover {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}



@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.spinner {
	animation: spin 1.5s linear infinite;
}

.shadow-sm {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	list-style: none;
	background-color: #e9ecef;
	border-radius: 0.375rem;
}

.breadcrumb-item + .breadcrumb-item {
	padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	padding-right: 0.5rem;
	color: #6c757d;
	content: "/";
}

.breadcrumb-item > a {
	color: #007bff;
	text-decoration: none;
	background-color: transparent;
}

.breadcrumb-item > a:hover {
	color: #0056b3;
	text-decoration: underline;
}

.breadcrumb-item.active {
	color: #6c757d;
}

.user-menu-container{
	display: flex;
}

form label {
	text-transform: none;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0;
}

.flex-1{flex: 1;}
.flex-2{flex: 2;}
.flex-3{flex: 3;}
.flex-4{flex: 4;}
.flex-5{flex: 5;}

.margin-r-2{margin-right: 20px }

.text-muted {
	color: #6c757d !important;
}

small, .small {
	font-size: 80%;
	font-weight: 400;
}

label {
	display: inline-block;
	color: #555;
	margin-bottom: 10px;
	cursor: pointer;
}

.quick-panel-top-box-left-line .col-icon {
	width: 50px;
	height: 50px;
	padding-left: 0;
	padding-right: 0;
	border-radius: 10px;
}

.quick-panel-top-box{
	padding: 15px 0;
	border-radius: 10px;
	background-color: #fff;
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 0px 20px 6px rgba(69, 65, 78, .1);
	-moz-box-shadow: 0px 0px 20px 6px rgba(69, 65, 78, .1);
	box-shadow: 0px 0px 20px 6px rgba(69, 65, 78, .1);
	border: 0;
	display: flex;
	flex: 1;
	justify-content: space-around;
}

.quick-panel-top-box:not(:last-child){
	margin-right: 25px;
}

.quick-panel-top-box-right-line{
	text-align: center;
}

.quick-panel-top{
	display: flex;
}
.col-icon i {
	width: 100%;
	height: 100%;
	font-size: 1.5em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.col-icon.icon-black {
	background: #1a2035
}

.col-icon.icon-primary {
	background: #1572e8
}

.col-icon.icon-secondary {
	background: #6861ce
}

.col-icon.icon-success {
	background: #31ce36
}

.col-icon.icon-warning {
	background: #ffad46
}

.col-icon.icon-info {
	background: #48abf7
}

.col-icon.icon-danger {
	background: #f25961
}

.text-center{
	text-align: center;
}

/* Genel tablo stili */
.table {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
	border-collapse: collapse;
}

/* Başlık hücreleri stili */
.table th {
	padding: 0.75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
	background-color: #f8f9fa;
	text-align: left;
	font-weight: bold;
}

/* Veri hücreleri stili */
.table td {
	padding: 0.75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}

/* Tablo kenarlıkları */
.table-bordered {
	border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #dee2e6;
}

/* Çizgili tablo satırları */
.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
}

/* Hover efekti olan tablo satırları */
.table-hover tbody tr:hover {
	background-color: rgba(0, 0, 0, 0.075);
}

/* Küçük tablo hücreleri */
.table-sm th,
.table-sm td {
	padding: 0.3rem;
}

/* Koyu tema tablosu */
.table-dark {
	color: #fff;
	background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
	border-color: #454d55;
}

.table-dark.table-bordered {
	border: 1px solid #454d55;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
	background-color: rgba(255, 255, 255, 0.075);
}


.user-panel-box-content-body table tr td{
	align-content: center;
}
.user-panel-box-content-body table img{
	width: 70px;
	height: 40px;
}

.user-panel-box-content-body tr td:first-child{
	width: 100px;
}


#load-more-container{
	text-align: center;
	margin-bottom: 20px;
	margin-top: -50px;
}

#load-more {
	width: calc((100% / 3) - 8px);
	padding: 16px;
	background-color: white;
	border: none;
	cursor: pointer;
	transition: all 200ms ease-in-out;
	border-radius: 3px;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	font-family: IBM Regular;
	font-weight: bolder;
}

#load-more:not([disabled]):hover {
	box-shadow: 0 1px 9px rgba(0, 0, 0, 0.2);
}

#load-more[disabled] {
	background-color: #eaeaea !important;
}

.main .changelog-content {
	overflow: auto;
	flex: 1;
	scroll-behavior: smooth;
	scroll-margin-block-start: -100px;
	padding: 25px 40px;
}

.main .changelog-content .content-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.markdown-body {
	line-height: 1.7;
	color: #262635;
	font-family: IBM Regular;
}

.markdown-body h1 a, .markdown-body h2 a, .markdown-body h3 a, .markdown-body h4 a, .markdown-body h5 a, .markdown-body h6 a {
	border: none;
	display: flex;
	align-items: center;
}

.markdown-body h1 a i, .markdown-body h2 a i, .markdown-body h3 a i, .markdown-body h4 a i, .markdown-body h5 a i, .markdown-body h6 a i {
	opacity: .3;
	margin-right: 10px;
	font-size: 70%;
}

.markdown-body ul {
	padding-left: 20px;
	margin-bottom: 25px;
}

.markdown-body ul li {
	list-style-type: square;
	list-style-position: inside;
	margin-bottom: 5px;
}

.markdown-body a {
	color: #0e4da5;
	position: relative;
	border-bottom: 2px solid #ff792d;
}

.user-panel-page{
	width: 75%;
	color: #1a1a1b;
	font-family: "Noto Sans";
	display: flex;
	flex-direction: column;
	height: 100%;
}

.user-panel-page a{
	color: #212529;
}

.user-menu-sidebar-box h3, .user-panel-box-header h3, .user-panel-box-header h4{
	padding: 15px;
	border-bottom: 1px solid #9a9a9a;
	background-color: #0e3f83;
	border-radius: 5px 5px 0 0;
	color: #FFF;
}

.user-menu-sidebar-box-header{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px;
	background-color: #FFF;
}
.user-menu-sidebar-box-header img{
	border-radius: 50%;
	margin-right: .5rem;
}

.user-menu-sidebar-box-content{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: 0.25rem;
}

.user-menu-sidebar-box-content-item {
	position: relative;
	display: block;
	padding: 0.75rem 1.25rem;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.user-menu-sidebar-box-content-item:hover, .user-menu-sidebar-box-content-item:focus {
	z-index: 1;
	color: #495057;
	text-decoration: none;
	background-color: #f8f9fa;
}

.user-menu-sidebar-box-content-item.active {
	z-index: 2;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.user-panel-box-content{
	padding: 20px;
	background-color: #FFF;
}

.account-form{
	display: flex;
}

.user-panel-container{
	flex: 3;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1050;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}

.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	transform: translate(0, -50px);
}

.modal.show .modal-dialog {
	transform: translate(0, 0);
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
}

.modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #e9ecef;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #e9ecef;
	border-bottom-right-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
	margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
	margin-right: 0.25rem;
}

.close {
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: 0.5;
}

.close:hover {
	color: #000;
	text-decoration: none;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
	opacity: 0.75;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop.show {
	opacity: 0.5;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.badge {
	display: inline-block;
	padding: 0.35em 0.4em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
}

.badge:empty {
	display: none;
}

.btn .badge {
	position: relative;
	top: -1px;
}

.badge-pill {
	padding-right: 0.6em;
	padding-left: 0.6em;
	border-radius: 10rem;
}

.badge-primary {
	color: #fff;
	background-color: #007bff;
}

.badge-secondary {
	color: #fff;
	background-color: #6c757d;
}

.badge-success {
	color: #fff;
	background-color: #28a745;
}

.badge-info {
	color: #fff;
	background-color: #17a2b8;
}

.badge-warning {
	color: #212529;
	background-color: #ffc107;
}

.badge-danger {
	color: #fff;
	background-color: #dc3545;
}

.badge-light {
	color: #212529;
	background-color: #f8f9fa;
}

.badge-dark {
	color: #fff;
	background-color: #343a40;
}

/* Badge Boyutunu Değiştirme */
.badge-custom-size {
	font-size: 1rem; /* Özel boyut */
	padding: 0.5em 1em; /* Daha büyük padding */
}

/* Badge Renklerini Özelleştirme */
.badge-custom {
	color: #fff;
	background-color: #ff5733; /* Özel renk */
}

/* Badge Kenarlarını Yuvarlama */
.badge-rounded {
	border-radius: 50px;
}

.thanks-button {
	z-index: 9999;
	position: relative;
}

/* Mobil cihazlar için */
@media only screen and (max-width: 600px) {
	.logo a {
		font-size: 14px;
		margin-right: 0;
	}
	.logo img {
		height: 30px;
	}

	/*.header-content .logo .changelog{*/
	/*	display: none;*/
	/*}*/

	/*.header-content .logo a span{*/
	/*	display: none;*/
	/*}*/
	.avatarContainer{
		margin-right: 0!important;
	}

	.user-controls{
		flex: none;
	}

	.search-input{
		display: none!important;
	}

	.center-box{
		width: auto;
	}

	.en-yuksek{
		display: none;
	}

	/*#menubar{*/
	/*	display: block;*/
	/*}*/

	html{
		width: fit-content;
	}

	.sortBar{
		padding: 0 8px 0 8px;
	}

	.post-container{
		overflow: visible;
		padding: 10px;
	}

	.right-sidebar{
		display: none;
	}
	.left-post-box{
		display: none;
	}
	.submit-page{
		width: 100% !important;
		padding-left: 15px;
	}

	.user-panel-page{
		width: 100% !important;
	}

	.user-panel-container{
		min-width: 100%;
	}

	.user-controls button, .user-controls .login-button, .user-controls .signup-button{
		padding: 5px 10px;
	}

	.main{
		height: 100vh;
	}

	body{
		background-color: #dae0e6!important;
	}

	.header-content .userInfo .dropdownMenu{
		top: 55px!important;
	}

	.right-post-box .right-post-box-content .content-text{
		font-size: 12px!important;
	}

	.main .changelog-content{
		padding-left: 10px;
		min-width: 400px;
	}

}


.form-element span.small {
	font-size: small;
	font-style: italic;
	color: #666;
}
