@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans";
  font-weight: bolder;
}

.primary {
  background-color: #2163e8;
  color: rgb(240.9551020408, 245.1306122449, 253.5448979592);
}
.primary:hover {
  background-color: rgb(240.9551020408, 245.1306122449, 253.5448979592);
  color: #2163e8;
}

.blue {
  background-color: #007bff;
  color: rgb(229.5, 241.8, 255);
}
.blue:hover {
  background-color: rgb(229.5, 241.8, 255);
  color: #007bff;
}

.light-background {
  background-color: #ffffff;
  color: white;
}
.light-background:hover {
  background-color: white;
  color: #ffffff;
}

.light-color {
  background-color: #181818;
  color: rgb(138.75, 138.75, 138.75);
}
.light-color:hover {
  background-color: rgb(138.75, 138.75, 138.75);
  color: #181818;
}

.dark-background {
  background-color: #191a1f;
  color: rgb(130.7232142857, 134.7321428571, 154.7767857143);
}
.dark-background:hover {
  background-color: rgb(130.7232142857, 134.7321428571, 154.7767857143);
  color: #191a1f;
}

.dark-color {
  background-color: #f9fafb;
  color: white;
}
.dark-color:hover {
  background-color: white;
  color: #f9fafb;
}

.orangedark {
  background-color: #dc831c;
  color: rgb(251.3306451613, 239.6673387097, 226.1693548387);
}
.orangedark:hover {
  background-color: rgb(251.3306451613, 239.6673387097, 226.1693548387);
  color: #dc831c;
}

.ice {
  background-color: #4f9ef8;
  color: white;
}
.ice:hover {
  background-color: white;
  color: #4f9ef8;
}

.gray {
  background-color: #c5c6ca;
  color: white;
}
.gray:hover {
  background-color: white;
  color: #c5c6ca;
}

.gray-text {
  background-color: #8d8c90;
  color: white;
}
.gray-text:hover {
  background-color: white;
  color: #8d8c90;
}

.red {
  background-color: #d6293b;
  color: rgb(250.9, 233.6, 235.4);
}
.red:hover {
  background-color: rgb(250.9, 233.6, 235.4);
  color: #d6293b;
}

.green {
  background-color: #49bc87;
  color: rgb(240.7469879518, 249.7530120482, 245.6024096386);
}
.green:hover {
  background-color: rgb(240.7469879518, 249.7530120482, 245.6024096386);
  color: #49bc87;
}

.indigo {
  background-color: #302e34;
  color: rgb(161.887755102, 158.1632653061, 169.3367346939);
}
.indigo:hover {
  background-color: rgb(161.887755102, 158.1632653061, 169.3367346939);
  color: #302e34;
}

.purple {
  background-color: #6f42c1;
  color: rgb(242.6653386454, 238.8107569721, 249.6892430279);
}
.purple:hover {
  background-color: rgb(242.6653386454, 238.8107569721, 249.6892430279);
  color: #6f42c1;
}

.pink {
  background-color: #e83e8c;
  color: white;
}
.pink:hover {
  background-color: white;
  color: #e83e8c;
}

.orange {
  background-color: #fd7e14;
  color: rgb(254.9367088608, 250.917721519, 247.5632911392);
}
.orange:hover {
  background-color: rgb(254.9367088608, 250.917721519, 247.5632911392);
  color: #fd7e14;
}

.yellow {
  background-color: #f7c32e;
  color: white;
}
.yellow:hover {
  background-color: white;
  color: #f7c32e;
}

.primaryfade {
  background-color: rgba(33, 99, 232, 0.1);
  color: #2163e8;
  transition: 2s;
}
.primaryfade:hover {
  background-color: #2163e8;
  color: #f9fafb;
}

.bluefade {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
  transition: 2s;
}
.bluefade:hover {
  background-color: #007bff;
  color: #f9fafb;
}

.light-backgroundfade {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: 2s;
}
.light-backgroundfade:hover {
  background-color: #ffffff;
  color: #f9fafb;
}

.light-colorfade {
  background-color: rgba(24, 24, 24, 0.1);
  color: #181818;
  transition: 2s;
}
.light-colorfade:hover {
  background-color: #181818;
  color: #f9fafb;
}

.dark-backgroundfade {
  background-color: rgba(25, 26, 31, 0.1);
  color: #191a1f;
  transition: 2s;
}
.dark-backgroundfade:hover {
  background-color: #191a1f;
  color: #f9fafb;
}

.dark-colorfade {
  background-color: rgba(249, 250, 251, 0.1);
  color: #f9fafb;
  transition: 2s;
}
.dark-colorfade:hover {
  background-color: #f9fafb;
  color: #f9fafb;
}

.orangedarkfade {
  background-color: rgba(220, 131, 28, 0.1);
  color: #dc831c;
  transition: 2s;
}
.orangedarkfade:hover {
  background-color: #dc831c;
  color: #f9fafb;
}

.icefade {
  background-color: rgba(79, 158, 248, 0.1);
  color: #4f9ef8;
  transition: 2s;
}
.icefade:hover {
  background-color: #4f9ef8;
  color: #f9fafb;
}

.grayfade {
  background-color: rgba(197, 198, 202, 0.1);
  color: #c5c6ca;
  transition: 2s;
}
.grayfade:hover {
  background-color: #c5c6ca;
  color: #f9fafb;
}

.gray-textfade {
  background-color: rgba(141, 140, 144, 0.1);
  color: #8d8c90;
  transition: 2s;
}
.gray-textfade:hover {
  background-color: #8d8c90;
  color: #f9fafb;
}

.redfade {
  background-color: rgba(214, 41, 59, 0.1);
  color: #d6293b;
  transition: 2s;
}
.redfade:hover {
  background-color: #d6293b;
  color: #f9fafb;
}

.greenfade {
  background-color: rgba(73, 188, 135, 0.1);
  color: #49bc87;
  transition: 2s;
}
.greenfade:hover {
  background-color: #49bc87;
  color: #f9fafb;
}

.indigofade {
  background-color: rgba(48, 46, 52, 0.1);
  color: #302e34;
  transition: 2s;
}
.indigofade:hover {
  background-color: #302e34;
  color: #f9fafb;
}

.purplefade {
  background-color: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
  transition: 2s;
}
.purplefade:hover {
  background-color: #6f42c1;
  color: #f9fafb;
}

.pinkfade {
  background-color: rgba(232, 62, 140, 0.1);
  color: #e83e8c;
  transition: 2s;
}
.pinkfade:hover {
  background-color: #e83e8c;
  color: #f9fafb;
}

.orangefade {
  background-color: rgba(253, 126, 20, 0.1);
  color: #fd7e14;
  transition: 2s;
}
.orangefade:hover {
  background-color: #fd7e14;
  color: #f9fafb;
}

.yellowfade {
  background-color: rgba(247, 195, 46, 0.1);
  color: #f7c32e;
  transition: 2s;
}
.yellowfade:hover {
  background-color: #f7c32e;
  color: #f9fafb;
}

body.small-font {
  font-size: 14px;
  letter-spacing: 0.1px;
}
body.medium-font {
  font-size: 16px;
  letter-spacing: normal;
}
body.large-font {
  font-size: 18px;
  letter-spacing: 2px;
}
body.light-mode {
  background-color: #ffffff;
  color: #181818;
}
body.dark-mode {
  background-color: #191a1f;
  color: #f9fafb;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .cards {
    width: 100%;
  }
}
.cards .card-container-big {
  display: flex;
  border: 1px transparent outset;
  margin: 10px;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  color: #f9fafb;
  border-radius: 2%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
  transition: background-size 3s ease;
  overflow: hidden;
  width: 100%;
  height: 620px;
}
@media (max-width: 1200px) {
  .cards .card-container-big {
    width: 100%;
    height: 450px;
  }
}
.cards .card-container-big .new, .cards .card-container-big .favori {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  width: 10%;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.cards .card-container-big .new {
  background-color: #fd7e14;
  box-shadow: 0 2px #e83e8c;
}
.cards .card-container-big .favori {
  background-color: #d6293b;
  box-shadow: 0 2px #6f42c1;
}
.cards .card-container-big .title {
  width: 100%;
  max-width: 80%;
}
.cards .card-container-big .title h1, .cards .card-container-big .title h2, .cards .card-container-big .title h3, .cards .card-container-big .title h4, .cards .card-container-big .title h5, .cards .card-container-big .title h6 {
  position: relative;
}
.cards .card-container-big .title h1::after, .cards .card-container-big .title h2::after, .cards .card-container-big .title h3::after, .cards .card-container-big .title h4::after, .cards .card-container-big .title h5::after, .cards .card-container-big .title h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 2s ease;
}
.cards .card-container-big:hover {
  cursor: pointer;
  background-size: 110% 110%;
}
.cards .card-container-big:hover .title h1::after, .cards .card-container-big:hover .title h2::after, .cards .card-container-big:hover .title h3::after, .cards .card-container-big:hover .title h4::after, .cards .card-container-big:hover .title h5::after, .cards .card-container-big:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cards .card-container-big span {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: small;
  transition: all 1s ease-in-out;
  background-color: rgba(214, 41, 59, 0.3);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, #49bc87 100%, transparent 0%);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  color: #ffffff;
}
.cards .card-container-big span:hover {
  font-size: large;
  background-size: 100% 1px;
  background-position: 0% 100%;
  cursor: default;
}
.cards .card-container-big span:not(:hover) {
  background-size: 0% 1px;
  background-position: 100% 100%;
}
.cards .card-container-big .card {
  display: flex;
  flex-direction: column;
  background-color: rgba(70, 70, 70, 0.5);
  box-shadow: 4px 4px 10px rgba(150, 255, 100, 0.5);
  width: 100%;
  padding: 20px;
  border-radius: 15px;
}
.cards .card-container-big .card .card-content {
  margin-bottom: 50px;
}
.cards .card-container-big .card .bilgi {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cards .card-container-big .card .bilgi ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
  border-top: 1px solid black;
}
.cards .card-container-big .card .bilgi ul li {
  display: flex;
  border: 1px outset transparent;
  align-items: center;
  padding: 5px;
  margin-left: 5px;
  font-size: small;
}
.cards .card-container-big .card .bilgi ul li i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 123, 255, 0.3);
}
.cards .card-container-big .card .bilgi ul li i:hover {
  font-size: medium;
  color: rgb(255, 255, 255);
  background-color: rgb(33, 99, 232);
}
@media (max-width: 1200px) {
  .cards .card-container-big {
    height: 450px;
  }
}
.cards .card-container-md {
  display: flex;
  border: 1px transparent outset;
  margin: 10px;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  color: #f9fafb;
  border-radius: 2%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
  transition: background-size 3s ease;
  overflow: hidden;
  width: 100%;
  height: 250px;
}
@media (max-width: 1200px) {
  .cards .card-container-md {
    width: 100%;
    height: 450px;
  }
}
.cards .card-container-md .new, .cards .card-container-md .favori {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  width: 10%;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.cards .card-container-md .new {
  background-color: #fd7e14;
  box-shadow: 0 2px #e83e8c;
}
.cards .card-container-md .favori {
  background-color: #d6293b;
  box-shadow: 0 2px #6f42c1;
}
.cards .card-container-md .title {
  width: 100%;
  max-width: 80%;
}
.cards .card-container-md .title h1, .cards .card-container-md .title h2, .cards .card-container-md .title h3, .cards .card-container-md .title h4, .cards .card-container-md .title h5, .cards .card-container-md .title h6 {
  position: relative;
}
.cards .card-container-md .title h1::after, .cards .card-container-md .title h2::after, .cards .card-container-md .title h3::after, .cards .card-container-md .title h4::after, .cards .card-container-md .title h5::after, .cards .card-container-md .title h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 2s ease;
}
.cards .card-container-md:hover {
  cursor: pointer;
  background-size: 110% 110%;
}
.cards .card-container-md:hover .title h1::after, .cards .card-container-md:hover .title h2::after, .cards .card-container-md:hover .title h3::after, .cards .card-container-md:hover .title h4::after, .cards .card-container-md:hover .title h5::after, .cards .card-container-md:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cards .card-container-md span {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: small;
  transition: all 1s ease-in-out;
  background-color: rgba(214, 41, 59, 0.3);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, #49bc87 100%, transparent 0%);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  color: #ffffff;
}
.cards .card-container-md span:hover {
  font-size: large;
  background-size: 100% 1px;
  background-position: 0% 100%;
  cursor: default;
}
.cards .card-container-md span:not(:hover) {
  background-size: 0% 1px;
  background-position: 100% 100%;
}
.cards .card-container-md .card {
  display: flex;
  flex-direction: column;
  background-color: rgba(70, 70, 70, 0.5);
  box-shadow: 4px 4px 10px rgba(150, 255, 100, 0.5);
  width: 100%;
  padding: 20px;
  border-radius: 15px;
}
.cards .card-container-md .card .card-content {
  margin-bottom: 50px;
}
.cards .card-container-md .card .bilgi {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cards .card-container-md .card .bilgi ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
  border-top: 1px solid black;
}
.cards .card-container-md .card .bilgi ul li {
  display: flex;
  border: 1px outset transparent;
  align-items: center;
  padding: 5px;
  margin-left: 5px;
  font-size: small;
}
.cards .card-container-md .card .bilgi ul li i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 123, 255, 0.3);
}
.cards .card-container-md .card .bilgi ul li i:hover {
  font-size: medium;
  color: rgb(255, 255, 255);
  background-color: rgb(33, 99, 232);
}
@media (max-width: 1200px) {
  .cards .card-container-md {
    height: 450px;
  }
}
.cards .card-container-sm {
  display: flex;
  border: 1px transparent outset;
  margin: 10px;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  color: #f9fafb;
  border-radius: 2%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
  transition: background-size 3s ease;
  overflow: hidden;
  width: 45%;
  height: 350px;
}
@media (max-width: 1200px) {
  .cards .card-container-sm {
    width: 100%;
    height: 450px;
  }
}
.cards .card-container-sm .new, .cards .card-container-sm .favori {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  width: 10%;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.cards .card-container-sm .new {
  background-color: #fd7e14;
  box-shadow: 0 2px #e83e8c;
}
.cards .card-container-sm .favori {
  background-color: #d6293b;
  box-shadow: 0 2px #6f42c1;
}
.cards .card-container-sm .title {
  width: 100%;
  max-width: 80%;
}
.cards .card-container-sm .title h1, .cards .card-container-sm .title h2, .cards .card-container-sm .title h3, .cards .card-container-sm .title h4, .cards .card-container-sm .title h5, .cards .card-container-sm .title h6 {
  position: relative;
}
.cards .card-container-sm .title h1::after, .cards .card-container-sm .title h2::after, .cards .card-container-sm .title h3::after, .cards .card-container-sm .title h4::after, .cards .card-container-sm .title h5::after, .cards .card-container-sm .title h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 2s ease;
}
.cards .card-container-sm:hover {
  cursor: pointer;
  background-size: 110% 110%;
}
.cards .card-container-sm:hover .title h1::after, .cards .card-container-sm:hover .title h2::after, .cards .card-container-sm:hover .title h3::after, .cards .card-container-sm:hover .title h4::after, .cards .card-container-sm:hover .title h5::after, .cards .card-container-sm:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cards .card-container-sm span {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: small;
  transition: all 1s ease-in-out;
  background-color: rgba(214, 41, 59, 0.3);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, #49bc87 100%, transparent 0%);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  color: #ffffff;
}
.cards .card-container-sm span:hover {
  font-size: large;
  background-size: 100% 1px;
  background-position: 0% 100%;
  cursor: default;
}
.cards .card-container-sm span:not(:hover) {
  background-size: 0% 1px;
  background-position: 100% 100%;
}
.cards .card-container-sm .card {
  display: flex;
  flex-direction: column;
  background-color: rgba(70, 70, 70, 0.5);
  box-shadow: 4px 4px 10px rgba(150, 255, 100, 0.5);
  width: 100%;
  padding: 20px;
  border-radius: 15px;
}
.cards .card-container-sm .card .card-content {
  margin-bottom: 50px;
}
.cards .card-container-sm .card .bilgi {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cards .card-container-sm .card .bilgi ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
  border-top: 1px solid black;
}
.cards .card-container-sm .card .bilgi ul li {
  display: flex;
  border: 1px outset transparent;
  align-items: center;
  padding: 5px;
  margin-left: 5px;
  font-size: small;
}
.cards .card-container-sm .card .bilgi ul li i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 123, 255, 0.3);
}
.cards .card-container-sm .card .bilgi ul li i:hover {
  font-size: medium;
  color: rgb(255, 255, 255);
  background-color: rgb(33, 99, 232);
}
@media (max-width: 1200px) {
  .cards .card-container-sm {
    width: 100%;
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .cards .card-container-sm {
    font-size: 0.7rem;
  }
}
.cards .card-container-main {
  display: flex;
  border: 1px transparent outset;
  margin: 10px;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  color: #f9fafb;
  border-radius: 2%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
  transition: background-size 3s ease;
  overflow: hidden;
  border: 2px #8d8c90 groove;
  justify-content: space-around;
  width: 45%;
  height: 300px;
}
@media (max-width: 1200px) {
  .cards .card-container-main {
    width: 100%;
    height: 450px;
  }
}
.cards .card-container-main .new, .cards .card-container-main .favori {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  width: 10%;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.cards .card-container-main .new {
  background-color: #fd7e14;
  box-shadow: 0 2px #e83e8c;
}
.cards .card-container-main .favori {
  background-color: #d6293b;
  box-shadow: 0 2px #6f42c1;
}
.cards .card-container-main .title {
  width: 100%;
  max-width: 80%;
}
.cards .card-container-main .title h1, .cards .card-container-main .title h2, .cards .card-container-main .title h3, .cards .card-container-main .title h4, .cards .card-container-main .title h5, .cards .card-container-main .title h6 {
  position: relative;
}
.cards .card-container-main .title h1::after, .cards .card-container-main .title h2::after, .cards .card-container-main .title h3::after, .cards .card-container-main .title h4::after, .cards .card-container-main .title h5::after, .cards .card-container-main .title h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 2s ease;
}
.cards .card-container-main:hover {
  cursor: pointer;
  background-size: 110% 110%;
}
.cards .card-container-main:hover .title h1::after, .cards .card-container-main:hover .title h2::after, .cards .card-container-main:hover .title h3::after, .cards .card-container-main:hover .title h4::after, .cards .card-container-main:hover .title h5::after, .cards .card-container-main:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cards .card-container-main span {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: small;
  transition: all 1s ease-in-out;
  background-color: rgba(214, 41, 59, 0.3);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, #49bc87 100%, transparent 0%);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  color: #ffffff;
}
.cards .card-container-main span:hover {
  font-size: large;
  background-size: 100% 1px;
  background-position: 0% 100%;
  cursor: default;
}
.cards .card-container-main span:not(:hover) {
  background-size: 0% 1px;
  background-position: 100% 100%;
}
.cards .card-container-main .card {
  display: flex;
  flex-direction: column;
  background-color: rgba(70, 70, 70, 0.5);
  box-shadow: 4px 4px 10px rgba(150, 255, 100, 0.5);
  width: 100%;
  padding: 20px;
  border-radius: 15px;
}
.cards .card-container-main .card .card-content {
  margin-bottom: 50px;
}
.cards .card-container-main .card .bilgi {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cards .card-container-main .card .bilgi ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
  border-top: 1px solid black;
}
.cards .card-container-main .card .bilgi ul li {
  display: flex;
  border: 1px outset transparent;
  align-items: center;
  padding: 5px;
  margin-left: 5px;
  font-size: small;
}
.cards .card-container-main .card .bilgi ul li i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 123, 255, 0.3);
}
.cards .card-container-main .card .bilgi ul li i:hover {
  font-size: medium;
  color: rgb(255, 255, 255);
  background-color: rgb(33, 99, 232);
}
@media (max-width: 1200px) {
  .cards .card-container-main {
    width: 100%;
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .cards .card-container-main {
    font-size: 0.7rem;
  }
}
.cards .card-container-main:hover {
  cursor: auto;
  background-size: 102% 102%;
}
.cards .card-container-main:hover .title h1::after, .cards .card-container-main:hover .title h2::after, .cards .card-container-main:hover .title h3::after, .cards .card-container-main:hover .title h4::after, .cards .card-container-main:hover .title h5::after, .cards .card-container-main:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cards .card-container-main-category {
  display: flex;
  border: 1px transparent outset;
  margin: 10px;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  color: #f9fafb;
  border-radius: 2%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
  transition: background-size 3s ease;
  overflow: hidden;
  border: 2px #8d8c90 groove;
  justify-content: space-around;
  width: 45%;
  height: 300px;
}
@media (max-width: 1200px) {
  .cards .card-container-main-category {
    width: 100%;
    height: 450px;
  }
}
.cards .card-container-main-category .new, .cards .card-container-main-category .favori {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
  width: 10%;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.cards .card-container-main-category .new {
  background-color: #fd7e14;
  box-shadow: 0 2px #e83e8c;
}
.cards .card-container-main-category .favori {
  background-color: #d6293b;
  box-shadow: 0 2px #6f42c1;
}
.cards .card-container-main-category .title {
  width: 100%;
  max-width: 80%;
}
.cards .card-container-main-category .title h1, .cards .card-container-main-category .title h2, .cards .card-container-main-category .title h3, .cards .card-container-main-category .title h4, .cards .card-container-main-category .title h5, .cards .card-container-main-category .title h6 {
  position: relative;
}
.cards .card-container-main-category .title h1::after, .cards .card-container-main-category .title h2::after, .cards .card-container-main-category .title h3::after, .cards .card-container-main-category .title h4::after, .cards .card-container-main-category .title h5::after, .cards .card-container-main-category .title h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 2s ease;
}
.cards .card-container-main-category:hover {
  cursor: pointer;
  background-size: 110% 110%;
}
.cards .card-container-main-category:hover .title h1::after, .cards .card-container-main-category:hover .title h2::after, .cards .card-container-main-category:hover .title h3::after, .cards .card-container-main-category:hover .title h4::after, .cards .card-container-main-category:hover .title h5::after, .cards .card-container-main-category:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.cards .card-container-main-category span {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: small;
  transition: all 1s ease-in-out;
  background-color: rgba(214, 41, 59, 0.3);
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, #49bc87 100%, transparent 0%);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  color: #ffffff;
}
.cards .card-container-main-category span:hover {
  font-size: large;
  background-size: 100% 1px;
  background-position: 0% 100%;
  cursor: default;
}
.cards .card-container-main-category span:not(:hover) {
  background-size: 0% 1px;
  background-position: 100% 100%;
}
.cards .card-container-main-category .card {
  display: flex;
  flex-direction: column;
  background-color: rgba(70, 70, 70, 0.5);
  box-shadow: 4px 4px 10px rgba(150, 255, 100, 0.5);
  width: 100%;
  padding: 20px;
  border-radius: 15px;
}
.cards .card-container-main-category .card .card-content {
  margin-bottom: 50px;
}
.cards .card-container-main-category .card .bilgi {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cards .card-container-main-category .card .bilgi ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  align-items: center;
  border-top: 1px solid black;
}
.cards .card-container-main-category .card .bilgi ul li {
  display: flex;
  border: 1px outset transparent;
  align-items: center;
  padding: 5px;
  margin-left: 5px;
  font-size: small;
}
.cards .card-container-main-category .card .bilgi ul li i {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 123, 255, 0.3);
}
.cards .card-container-main-category .card .bilgi ul li i:hover {
  font-size: medium;
  color: rgb(255, 255, 255);
  background-color: rgb(33, 99, 232);
}
@media (max-width: 1200px) {
  .cards .card-container-main-category {
    width: 100%;
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .cards .card-container-main-category {
    font-size: 0.7rem;
  }
}
.cards .card-container-main-category:hover {
  cursor: auto;
  background-size: 102% 102%;
}
.cards .card-container-main-category:hover .title h1::after, .cards .card-container-main-category:hover .title h2::after, .cards .card-container-main-category:hover .title h3::after, .cards .card-container-main-category:hover .title h4::after, .cards .card-container-main-category:hover .title h5::after, .cards .card-container-main-category:hover .title h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.body-container {
  position: relative;
}

.main-container hr {
  border: none; /* Varsayılan sınırı kaldırır */
  height: 1px; /* Çizginin yüksekliğini belirler */
  opacity: 40%;
  background: linear-gradient(200deg, #fd7e14, #2163e8); /* İki renkli geçiş ekler */
}
.main-container .top-container {
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px 0px 0px;
  margin-bottom: 5px;
}
@media (max-width: 500px) {
  .main-container .top-container {
    height: 90px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
}
.main-container .top-container .left-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.7s ease-in-out;
}
.main-container .top-container .left-top ul {
  list-style: none;
  text-align: center;
}
.main-container .top-container .left-top ul li {
  position: relative;
  display: inline-block;
  flex-direction: row;
  font-size: small;
  padding: 10px;
  cursor: pointer;
}
.main-container .top-container .left-top ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #e83e8c;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 1s ease;
}
.main-container .top-container .left-top ul li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.main-container .top-container .right-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  margin: 5px;
  transition: all 0.7s ease-in-out;
}
.main-container .top-container .right-top .fontbtn {
  display: flex;
  justify-self: flex-end;
  justify-content: space-evenly;
  height: 30px;
  font-size: small;
  border: 1px #2163e8 solid;
  border-radius: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
.main-container .top-container .right-top .fontbtn .radio-btn {
  display: none;
}
.main-container .top-container .right-top .fontbtn .radio-label {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-left: 1px solid #2163e8;
  padding: 10px;
  width: 35px;
  cursor: pointer;
  background-color: transparent;
  opacity: 30%;
}
.main-container .top-container .right-top .fontbtn .radio-label:hover {
  opacity: 100%;
}
.main-container .top-container .right-top .fontbtn .radio-btn:checked + .radio-label {
  background-color: #2163e8;
  color: white;
  opacity: 90%;
}
.main-container .top-container .right-top #themecolor {
  display: flex;
  align-items: center;
  height: 100%;
  opacity: 70%;
  transition: all 0.7s ease-in-out;
}
.main-container .top-container .right-top #themecolor:hover {
  cursor: pointer;
  font-size: calc(100% + 1px);
  opacity: 100%;
}
.main-container .top-container .right-top #brands {
  display: flex;
  color: #2163e8;
}
.main-container .top-container .right-top #brands i {
  margin-left: 12px;
  margin-right: 0px;
  opacity: 70%;
  transition: all 0.7s ease-in-out;
}
.main-container .top-container .right-top #brands i:hover {
  opacity: 60%;
  font-size: calc(100% + 10px);
  opacity: 100%;
  cursor: pointer;
}
.main-container nav {
  padding: 0.1rem;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 5px 0px;
}
.main-container nav .left-menu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.main-container nav .left-menu #bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 50px;
  padding: 5px;
  background: linear-gradient(to bottom, #2163e8, #fd7e14); /* Gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For non-WebKit browsers */
  color: transparent;
  border-radius: 5px;
  border: 1px outset #c5c6ca;
  opacity: 75%;
}
.main-container nav .left-menu #bar:hover {
  opacity: 100%;
  cursor: pointer;
}
.main-container nav .left-menu #slide-menu {
  position: fixed;
  left: -350px; /* Menü başlangıçta ekran dışında */
  top: 0;
  width: 250px;
  height: 100%;
  transition: left 0.6s ease-in-out;
  z-index: 1000; /* Menü'nün önde olmasını sağlar */
  padding: 20px;
  box-shadow: 2px 0 5px rgba(50, 199, 100, 0.5);
  background-color: rgba(0, 0, 0, 0.7);
}
.main-container nav .left-menu #slide-menu #close-menu {
  font-size: 24px;
  margin: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.main-container nav .left-menu #slide-menu #close-menu:hover {
  color: rgb(50, 199, 100);
}
.main-container nav .left-menu #slide-menu ul {
  list-style: none;
  padding: 0;
}
.main-container nav .left-menu #slide-menu ul li {
  padding: 10px 0;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.main-container nav .left-menu #menu {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
  padding: 10px;
  width: 100%;
  margin: 5px;
  font-size: medium;
}
.main-container nav .left-menu #menu ul {
  list-style: none;
  text-align: center;
  padding: 10px;
}
.main-container nav .left-menu #menu ul li {
  display: inline-block;
  box-shadow: 5px 10px 20px 1px rgba(50, 199, 100, 0.2);
  margin-right: 20px;
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.main-container nav .left-menu #menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.8s ease;
}
.main-container nav .left-menu #menu ul li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.main-container nav .left-menu #menu ul #nav_drop {
  position: relative;
}
.main-container nav .left-menu #menu ul #nav_drop #cat_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  border: 1px solid #ccc;
  z-index: 1000;
  padding: 2px 0px 0px 0px;
  background-color: currentColor;
}
.main-container nav .left-menu #menu ul #nav_drop:hover #cat_dropdown {
  display: block;
}
.main-container nav .left-menu #menu ul #nav_drop #cat_dropdown li {
  padding: 10px;
  width: 100%;
  white-space: nowrap;
}
.main-container nav .left-menu #profile {
  display: flex;
}
.main-container nav .left-menu #butons {
  display: flex;
  align-items: center;
}
.main-container nav .left-menu #butons > * {
  margin-left: 9px;
  margin-right: 5px;
}
.main-container nav .left-menu #butons #ara {
  display: flex;
  align-items: center;
}
.main-container nav .left-menu #butons #ara:hover {
  cursor: pointer;
  color: rgb(50, 199, 100);
}
.main-container nav .left-menu #butons #ara #ara_input {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: black;
  top: 70px;
  right: 15px;
  margin: 0;
  padding: 15px;
}
.main-container nav .left-menu #butons #ara #ara_input #ara_form {
  border: 1px #49bc87 solid;
  border-radius: 5px;
  z-index: 2;
}
.main-container nav .left-menu #butons #ara #ara_input #ara_form #input_text {
  height: 40px;
  width: 225px;
  margin-right: -1px;
  border: 0;
  padding: 15px;
  background-color: transparent;
  color: #c5c6ca;
}
.main-container nav .left-menu #butons #ara #ara_input #ara_form #input_buton {
  border: 0;
  height: 40px;
  width: 75px;
  background-color: #49bc87;
}
.main-container nav .right-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.main-container nav .right-menu #profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 3px;
}
.main-container nav .right-menu #profileimg {
  height: clamp(50px, 7vw, 70px); /* Yükseklik için */
  width: clamp(50px, 7vw, 70px); /* Genişlik için */
  -o-object-fit: cover;
     object-fit: cover; /* Resmin oranını korumak için */
  border-radius: 50%;
}
.main-container nav .right-menu #profile-container-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 3px;
}
.main-container nav .right-menu #profileimg-main {
  height: clamp(50px, 7vw, 70px); /* Yükseklik için */
  width: clamp(50px, 7vw, 70px); /* Genişlik için */
  -o-object-fit: cover;
     object-fit: cover; /* Resmin oranını korumak için */
  border-radius: 50%;
}
.main-container nav .right-menu .dropdown {
  display: flex;
  flex-direction: column;
  position: absolute; /* Mutlak konumlandırma */
  top: 100%; /* Profil resminin hemen altında açılacak */
  right: 0; /* Sağ tarafa yasla */
  color: #ffffff;
  background-image: linear-gradient(135deg, #302e34, #8d8c90);
  box-shadow: 0 2px 10px #49bc87;
  z-index: 1000; /* Diğer öğelerin üzerinde görünmesi için */
  padding: 10px;
  height: clamp(100px, 25vh, 300px);
  width: clamp(100px, 20vw, 300px);
  align-items: center;
  justify-content: space-between;
}
.main-container .content-container {
  height: -moz-fit-content;
  height: fit-content;
}
.main-container .content-container .card-main-container {
  display: flex;
  margin-top: 15px;
  margin-bottom: 50px;
  margin-left: 0px;
  margin-right: 0px;
}
@media (max-width: 1200px) {
  .main-container .content-container .card-main-container {
    flex-direction: column;
    margin: 20px auto;
    width: 100% !important;
  }
}

.mid-container {
  position: relative;
  display: flex;
  width: 100%;
  margin: 50px 0;
}
@media (max-width: 1200px) {
  .mid-container {
    flex-direction: column-reverse;
    margin: 20px auto;
  }
}
.mid-container #sidebar {
  position: sticky;
  top: 0;
  width: 25%;
  padding: 10px;
  max-height: 100vh;
  border: 3px groove currentColor;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .mid-container #sidebar {
    position: relative;
    width: 100%;
  }
}
.mid-container #sidebar .sidebar-categories {
  height: -moz-max-content;
  height: max-content;
  text-align: center;
  border: 3px ridge currentColor;
  border-radius: 4px;
  padding: 10px;
}
.mid-container #sidebar .sidebar-categories ul {
  list-style: none;
}
.mid-container #sidebar .sidebar-categories ul li {
  text-align: center;
  margin-bottom: 15px;
  margin-left: 5px;
  margin-right: 5px;
}
.mid-container #sidebar .sidebar-newcont {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
}
.mid-container #sidebar .sidebar-newcont .newcont {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px;
  border: 1px groove #8d8c90;
  padding: 4px;
  overflow: hidden;
}
.mid-container #sidebar .sidebar-newcont .newcont .newcontimg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mid-container #sidebar .sidebar-newcont .newcont .newcontimg img {
  width: 79px;
  height: 75px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.mid-container #sidebar .sidebar-newcont .newcont .newconttitle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 75px;
  margin-left: 20px;
}
.mid-container #sidebar .sidebar-newcont .newcont .newconttitle p {
  color: #8d8c90;
}
.mid-container #sidebar .sidebar-newcont .newcont .newconttitle h1, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h2, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h3, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h4, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h5, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h6 {
  position: relative;
}
.mid-container #sidebar .sidebar-newcont .newcont .newconttitle h1::after, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h2::after, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h3::after, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h4::after, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h5::after, .mid-container #sidebar .sidebar-newcont .newcont .newconttitle h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 1s ease;
  transform-origin: bottom right;
}
.mid-container #sidebar .sidebar-newcont .newcont:hover {
  cursor: pointer;
}
.mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle {
  width: -moz-max-content;
  width: max-content;
}
.mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h1, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h2, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h3, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h4, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h5, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h6 {
  position: relative;
}
.mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h1::after, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h2::after, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h3::after, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h4::after, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h5::after, .mid-container #sidebar .sidebar-newcont .newcont:hover .newconttitle h6::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.mid-container #content-slider {
  width: 80%;
}
@media (max-width: 1200px) {
  .mid-container #content-slider {
    width: 100%;
  }
}
.mid-container #content-slider .loadmore {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  box-shadow: 5px 5px 10px 1px #8d8c90;
  border-radius: 10px;
  padding: 5px;
}

.categories-layout {
  display: flex;
  flex-direction: row;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: auto;
  min-height: 50vh;
}
.categories-layout .category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.categories-layout .category-name {
  font-size: 18px;
}
.categories-layout .post-count {
  font-size: 12px;
  color: inherit;
}
@media (max-width: 600px) {
  .categories-layout .categories {
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
  }
}

.post-single-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-single-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.post-single-meta {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 25px;
}

.post-single-image-container {
  margin-bottom: 30px;
  text-align: center;
}

.post-single-image {
  width: 100%;
  max-width: 400px;
  height: auto; /* Yükseklik otomatik olarak ayarlanır */
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-single-content {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.post-single-content p {
  margin-bottom: 20px;
}

.post-comments {
  margin-top: 100px;
  padding: 20px;
  border-radius: 10px;
  background-color: #302e34;
  opacity: 80%;
  color: #f9fafb;
}
.post-comments h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 2px inset #fd7e14;
  color: #fd7e14;
}
.post-comments .comment-list {
  list-style: none;
  padding: 0;
}
.post-comments .comment-item {
  padding: 10px 0;
  border: 2px outset #ddd;
  padding: 5px;
  margin: 4px;
}
.post-comments .comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.post-comments .comment-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  border: 1px solid #ccc;
}
.post-comments .comment-author {
  font-weight: bolder;
  color: #f9fafb;
  font-style: italic;
}
.post-comments .comment-date {
  font-size: 0.7em;
  font-weight: lighter;
  color: #dc831c;
  padding: 5px;
  text-align: end;
}

.comment-form {
  margin-top: 30px;
  padding: 20px;
  background-color: #302e34;
  color: #f9fafb;
  opacity: 85%;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.comment-form h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #fd7e14;
  text-align: center;
  border-bottom: 2px inset #dc831c;
}
.comment-form form {
  display: flex;
  flex-direction: column;
}
.comment-form form label {
  margin-bottom: 5px;
  font-weight: bold;
}
.comment-form form input,
.comment-form form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}
.comment-form form textarea {
  resize: vertical;
  min-height: 80px;
}
.comment-form form button {
  padding: 10px 20px;
  background-color: #2163e8;
  color: #f9fafb;
  opacity: 90%;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.comment-form form button:hover {
  opacity: 100%;
}

a {
  text-decoration: none;
}
a:visited {
  color: inherit;
}

a:-webkit-any-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  position: relative;
  display: flex;
  height: 50px;
  opacity: 85%;
  letter-spacing: 5px;
  padding: 12px;
  margin-right: 10px;
  align-items: center;
  font-weight: bolder;
  border-radius: 5px;
  background: linear-gradient(to right, #2163e8, #fd7e14); /* Gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For non-WebKit browsers */
  color: transparent;
}
.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: -100;
  filter: blur(60px);
  transform: scale(1.1);
}
.logo .markname .line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #fd7e14, #2163e8);
  margin: 5px auto;
  transition: width 3s ease-in-out;
}
.logo:hover {
  opacity: 100%;
  cursor: pointer;
}

.w-0 {
  width: 0%;
}
@media (max-width: 1200px) {
  .w-0 {
    width: 100%;
  }
}

.w-1 {
  width: 1%;
}
@media (max-width: 1200px) {
  .w-1 {
    width: 100%;
  }
}

.w-2 {
  width: 2%;
}
@media (max-width: 1200px) {
  .w-2 {
    width: 100%;
  }
}

.w-3 {
  width: 3%;
}
@media (max-width: 1200px) {
  .w-3 {
    width: 100%;
  }
}

.w-4 {
  width: 4%;
}
@media (max-width: 1200px) {
  .w-4 {
    width: 100%;
  }
}

.w-5 {
  width: 5%;
}
@media (max-width: 1200px) {
  .w-5 {
    width: 100%;
  }
}

.w-6 {
  width: 6%;
}
@media (max-width: 1200px) {
  .w-6 {
    width: 100%;
  }
}

.w-7 {
  width: 7%;
}
@media (max-width: 1200px) {
  .w-7 {
    width: 100%;
  }
}

.w-8 {
  width: 8%;
}
@media (max-width: 1200px) {
  .w-8 {
    width: 100%;
  }
}

.w-9 {
  width: 9%;
}
@media (max-width: 1200px) {
  .w-9 {
    width: 100%;
  }
}

.w-10 {
  width: 10%;
}
@media (max-width: 1200px) {
  .w-10 {
    width: 100%;
  }
}

.w-11 {
  width: 11%;
}
@media (max-width: 1200px) {
  .w-11 {
    width: 100%;
  }
}

.w-12 {
  width: 12%;
}
@media (max-width: 1200px) {
  .w-12 {
    width: 100%;
  }
}

.w-13 {
  width: 13%;
}
@media (max-width: 1200px) {
  .w-13 {
    width: 100%;
  }
}

.w-14 {
  width: 14%;
}
@media (max-width: 1200px) {
  .w-14 {
    width: 100%;
  }
}

.w-15 {
  width: 15%;
}
@media (max-width: 1200px) {
  .w-15 {
    width: 100%;
  }
}

.w-16 {
  width: 16%;
}
@media (max-width: 1200px) {
  .w-16 {
    width: 100%;
  }
}

.w-17 {
  width: 17%;
}
@media (max-width: 1200px) {
  .w-17 {
    width: 100%;
  }
}

.w-18 {
  width: 18%;
}
@media (max-width: 1200px) {
  .w-18 {
    width: 100%;
  }
}

.w-19 {
  width: 19%;
}
@media (max-width: 1200px) {
  .w-19 {
    width: 100%;
  }
}

.w-20 {
  width: 20%;
}
@media (max-width: 1200px) {
  .w-20 {
    width: 100%;
  }
}

.w-21 {
  width: 21%;
}
@media (max-width: 1200px) {
  .w-21 {
    width: 100%;
  }
}

.w-22 {
  width: 22%;
}
@media (max-width: 1200px) {
  .w-22 {
    width: 100%;
  }
}

.w-23 {
  width: 23%;
}
@media (max-width: 1200px) {
  .w-23 {
    width: 100%;
  }
}

.w-24 {
  width: 24%;
}
@media (max-width: 1200px) {
  .w-24 {
    width: 100%;
  }
}

.w-25 {
  width: 25%;
}
@media (max-width: 1200px) {
  .w-25 {
    width: 100%;
  }
}

.w-26 {
  width: 26%;
}
@media (max-width: 1200px) {
  .w-26 {
    width: 100%;
  }
}

.w-27 {
  width: 27%;
}
@media (max-width: 1200px) {
  .w-27 {
    width: 100%;
  }
}

.w-28 {
  width: 28%;
}
@media (max-width: 1200px) {
  .w-28 {
    width: 100%;
  }
}

.w-29 {
  width: 29%;
}
@media (max-width: 1200px) {
  .w-29 {
    width: 100%;
  }
}

.w-30 {
  width: 30%;
}
@media (max-width: 1200px) {
  .w-30 {
    width: 100%;
  }
}

.w-31 {
  width: 31%;
}
@media (max-width: 1200px) {
  .w-31 {
    width: 100%;
  }
}

.w-32 {
  width: 32%;
}
@media (max-width: 1200px) {
  .w-32 {
    width: 100%;
  }
}

.w-33 {
  width: 33%;
}
@media (max-width: 1200px) {
  .w-33 {
    width: 100%;
  }
}

.w-34 {
  width: 34%;
}
@media (max-width: 1200px) {
  .w-34 {
    width: 100%;
  }
}

.w-35 {
  width: 35%;
}
@media (max-width: 1200px) {
  .w-35 {
    width: 100%;
  }
}

.w-36 {
  width: 36%;
}
@media (max-width: 1200px) {
  .w-36 {
    width: 100%;
  }
}

.w-37 {
  width: 37%;
}
@media (max-width: 1200px) {
  .w-37 {
    width: 100%;
  }
}

.w-38 {
  width: 38%;
}
@media (max-width: 1200px) {
  .w-38 {
    width: 100%;
  }
}

.w-39 {
  width: 39%;
}
@media (max-width: 1200px) {
  .w-39 {
    width: 100%;
  }
}

.w-40 {
  width: 40%;
}
@media (max-width: 1200px) {
  .w-40 {
    width: 100%;
  }
}

.w-41 {
  width: 41%;
}
@media (max-width: 1200px) {
  .w-41 {
    width: 100%;
  }
}

.w-42 {
  width: 42%;
}
@media (max-width: 1200px) {
  .w-42 {
    width: 100%;
  }
}

.w-43 {
  width: 43%;
}
@media (max-width: 1200px) {
  .w-43 {
    width: 100%;
  }
}

.w-44 {
  width: 44%;
}
@media (max-width: 1200px) {
  .w-44 {
    width: 100%;
  }
}

.w-45 {
  width: 45%;
}
@media (max-width: 1200px) {
  .w-45 {
    width: 100%;
  }
}

.w-46 {
  width: 46%;
}
@media (max-width: 1200px) {
  .w-46 {
    width: 100%;
  }
}

.w-47 {
  width: 47%;
}
@media (max-width: 1200px) {
  .w-47 {
    width: 100%;
  }
}

.w-48 {
  width: 48%;
}
@media (max-width: 1200px) {
  .w-48 {
    width: 100%;
  }
}

.w-49 {
  width: 49%;
}
@media (max-width: 1200px) {
  .w-49 {
    width: 100%;
  }
}

.w-50 {
  width: 50%;
}
@media (max-width: 1200px) {
  .w-50 {
    width: 100%;
  }
}

.w-51 {
  width: 51%;
}
@media (max-width: 1200px) {
  .w-51 {
    width: 100%;
  }
}

.w-52 {
  width: 52%;
}
@media (max-width: 1200px) {
  .w-52 {
    width: 100%;
  }
}

.w-53 {
  width: 53%;
}
@media (max-width: 1200px) {
  .w-53 {
    width: 100%;
  }
}

.w-54 {
  width: 54%;
}
@media (max-width: 1200px) {
  .w-54 {
    width: 100%;
  }
}

.w-55 {
  width: 55%;
}
@media (max-width: 1200px) {
  .w-55 {
    width: 100%;
  }
}

.w-56 {
  width: 56%;
}
@media (max-width: 1200px) {
  .w-56 {
    width: 100%;
  }
}

.w-57 {
  width: 57%;
}
@media (max-width: 1200px) {
  .w-57 {
    width: 100%;
  }
}

.w-58 {
  width: 58%;
}
@media (max-width: 1200px) {
  .w-58 {
    width: 100%;
  }
}

.w-59 {
  width: 59%;
}
@media (max-width: 1200px) {
  .w-59 {
    width: 100%;
  }
}

.w-60 {
  width: 60%;
}
@media (max-width: 1200px) {
  .w-60 {
    width: 100%;
  }
}

.w-61 {
  width: 61%;
}
@media (max-width: 1200px) {
  .w-61 {
    width: 100%;
  }
}

.w-62 {
  width: 62%;
}
@media (max-width: 1200px) {
  .w-62 {
    width: 100%;
  }
}

.w-63 {
  width: 63%;
}
@media (max-width: 1200px) {
  .w-63 {
    width: 100%;
  }
}

.w-64 {
  width: 64%;
}
@media (max-width: 1200px) {
  .w-64 {
    width: 100%;
  }
}

.w-65 {
  width: 65%;
}
@media (max-width: 1200px) {
  .w-65 {
    width: 100%;
  }
}

.w-66 {
  width: 66%;
}
@media (max-width: 1200px) {
  .w-66 {
    width: 100%;
  }
}

.w-67 {
  width: 67%;
}
@media (max-width: 1200px) {
  .w-67 {
    width: 100%;
  }
}

.w-68 {
  width: 68%;
}
@media (max-width: 1200px) {
  .w-68 {
    width: 100%;
  }
}

.w-69 {
  width: 69%;
}
@media (max-width: 1200px) {
  .w-69 {
    width: 100%;
  }
}

.w-70 {
  width: 70%;
}
@media (max-width: 1200px) {
  .w-70 {
    width: 100%;
  }
}

.w-71 {
  width: 71%;
}
@media (max-width: 1200px) {
  .w-71 {
    width: 100%;
  }
}

.w-72 {
  width: 72%;
}
@media (max-width: 1200px) {
  .w-72 {
    width: 100%;
  }
}

.w-73 {
  width: 73%;
}
@media (max-width: 1200px) {
  .w-73 {
    width: 100%;
  }
}

.w-74 {
  width: 74%;
}
@media (max-width: 1200px) {
  .w-74 {
    width: 100%;
  }
}

.w-75 {
  width: 75%;
}
@media (max-width: 1200px) {
  .w-75 {
    width: 100%;
  }
}

.w-76 {
  width: 76%;
}
@media (max-width: 1200px) {
  .w-76 {
    width: 100%;
  }
}

.w-77 {
  width: 77%;
}
@media (max-width: 1200px) {
  .w-77 {
    width: 100%;
  }
}

.w-78 {
  width: 78%;
}
@media (max-width: 1200px) {
  .w-78 {
    width: 100%;
  }
}

.w-79 {
  width: 79%;
}
@media (max-width: 1200px) {
  .w-79 {
    width: 100%;
  }
}

.w-80 {
  width: 80%;
}
@media (max-width: 1200px) {
  .w-80 {
    width: 100%;
  }
}

.w-81 {
  width: 81%;
}
@media (max-width: 1200px) {
  .w-81 {
    width: 100%;
  }
}

.w-82 {
  width: 82%;
}
@media (max-width: 1200px) {
  .w-82 {
    width: 100%;
  }
}

.w-83 {
  width: 83%;
}
@media (max-width: 1200px) {
  .w-83 {
    width: 100%;
  }
}

.w-84 {
  width: 84%;
}
@media (max-width: 1200px) {
  .w-84 {
    width: 100%;
  }
}

.w-85 {
  width: 85%;
}
@media (max-width: 1200px) {
  .w-85 {
    width: 100%;
  }
}

.w-86 {
  width: 86%;
}
@media (max-width: 1200px) {
  .w-86 {
    width: 100%;
  }
}

.w-87 {
  width: 87%;
}
@media (max-width: 1200px) {
  .w-87 {
    width: 100%;
  }
}

.w-88 {
  width: 88%;
}
@media (max-width: 1200px) {
  .w-88 {
    width: 100%;
  }
}

.w-89 {
  width: 89%;
}
@media (max-width: 1200px) {
  .w-89 {
    width: 100%;
  }
}

.w-90 {
  width: 90%;
}
@media (max-width: 1200px) {
  .w-90 {
    width: 100%;
  }
}

.w-91 {
  width: 91%;
}
@media (max-width: 1200px) {
  .w-91 {
    width: 100%;
  }
}

.w-92 {
  width: 92%;
}
@media (max-width: 1200px) {
  .w-92 {
    width: 100%;
  }
}

.w-93 {
  width: 93%;
}
@media (max-width: 1200px) {
  .w-93 {
    width: 100%;
  }
}

.w-94 {
  width: 94%;
}
@media (max-width: 1200px) {
  .w-94 {
    width: 100%;
  }
}

.w-95 {
  width: 95%;
}
@media (max-width: 1200px) {
  .w-95 {
    width: 100%;
  }
}

.w-96 {
  width: 96%;
}
@media (max-width: 1200px) {
  .w-96 {
    width: 100%;
  }
}

.w-97 {
  width: 97%;
}
@media (max-width: 1200px) {
  .w-97 {
    width: 100%;
  }
}

.w-98 {
  width: 98%;
}
@media (max-width: 1200px) {
  .w-98 {
    width: 100%;
  }
}

.w-99 {
  width: 99%;
}
@media (max-width: 1200px) {
  .w-99 {
    width: 100%;
  }
}

.w-100 {
  width: 100%;
}
@media (max-width: 1200px) {
  .w-100 {
    width: 100%;
  }
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-5 {
  padding: 5px;
}

.p-6 {
  padding: 6px;
}

.p-7 {
  padding: 7px;
}

.p-8 {
  padding: 8px;
}

.p-9 {
  padding: 9px;
}

.p-10 {
  padding: 10px;
}

.p-11 {
  padding: 11px;
}

.p-12 {
  padding: 12px;
}

.p-13 {
  padding: 13px;
}

.p-14 {
  padding: 14px;
}

.p-15 {
  padding: 15px;
}

.p-16 {
  padding: 16px;
}

.p-17 {
  padding: 17px;
}

.p-18 {
  padding: 18px;
}

.p-19 {
  padding: 19px;
}

.p-20 {
  padding: 20px;
}

.p-21 {
  padding: 21px;
}

.p-22 {
  padding: 22px;
}

.p-23 {
  padding: 23px;
}

.p-24 {
  padding: 24px;
}

.p-25 {
  padding: 25px;
}

.p-26 {
  padding: 26px;
}

.p-27 {
  padding: 27px;
}

.p-28 {
  padding: 28px;
}

.p-29 {
  padding: 29px;
}

.p-30 {
  padding: 30px;
}

.p-31 {
  padding: 31px;
}

.p-32 {
  padding: 32px;
}

.p-33 {
  padding: 33px;
}

.p-34 {
  padding: 34px;
}

.p-35 {
  padding: 35px;
}

.p-36 {
  padding: 36px;
}

.p-37 {
  padding: 37px;
}

.p-38 {
  padding: 38px;
}

.p-39 {
  padding: 39px;
}

.p-40 {
  padding: 40px;
}

.p-41 {
  padding: 41px;
}

.p-42 {
  padding: 42px;
}

.p-43 {
  padding: 43px;
}

.p-44 {
  padding: 44px;
}

.p-45 {
  padding: 45px;
}

.p-46 {
  padding: 46px;
}

.p-47 {
  padding: 47px;
}

.p-48 {
  padding: 48px;
}

.p-49 {
  padding: 49px;
}

.p-50 {
  padding: 50px;
}

.m-0 {
  margin: 0px;
}

.m-1 {
  margin: 1px;
}

.m-2 {
  margin: 2px;
}

.m-3 {
  margin: 3px;
}

.m-4 {
  margin: 4px;
}

.m-5 {
  margin: 5px;
}

.m-6 {
  margin: 6px;
}

.m-7 {
  margin: 7px;
}

.m-8 {
  margin: 8px;
}

.m-9 {
  margin: 9px;
}

.m-10 {
  margin: 10px;
}

.m-11 {
  margin: 11px;
}

.m-12 {
  margin: 12px;
}

.m-13 {
  margin: 13px;
}

.m-14 {
  margin: 14px;
}

.m-15 {
  margin: 15px;
}

.m-16 {
  margin: 16px;
}

.m-17 {
  margin: 17px;
}

.m-18 {
  margin: 18px;
}

.m-19 {
  margin: 19px;
}

.m-20 {
  margin: 20px;
}

.m-21 {
  margin: 21px;
}

.m-22 {
  margin: 22px;
}

.m-23 {
  margin: 23px;
}

.m-24 {
  margin: 24px;
}

.m-25 {
  margin: 25px;
}

.m-26 {
  margin: 26px;
}

.m-27 {
  margin: 27px;
}

.m-28 {
  margin: 28px;
}

.m-29 {
  margin: 29px;
}

.m-30 {
  margin: 30px;
}

.m-31 {
  margin: 31px;
}

.m-32 {
  margin: 32px;
}

.m-33 {
  margin: 33px;
}

.m-34 {
  margin: 34px;
}

.m-35 {
  margin: 35px;
}

.m-36 {
  margin: 36px;
}

.m-37 {
  margin: 37px;
}

.m-38 {
  margin: 38px;
}

.m-39 {
  margin: 39px;
}

.m-40 {
  margin: 40px;
}

.m-41 {
  margin: 41px;
}

.m-42 {
  margin: 42px;
}

.m-43 {
  margin: 43px;
}

.m-44 {
  margin: 44px;
}

.m-45 {
  margin: 45px;
}

.m-46 {
  margin: 46px;
}

.m-47 {
  margin: 47px;
}

.m-48 {
  margin: 48px;
}

.m-49 {
  margin: 49px;
}

.m-50 {
  margin: 50px;
}

.text-center {
  text-align: center;
}

#arrowup {
  position: fixed;
  color: #fd7e14;
  right: 7.601%;
  bottom: 30px;
  cursor: pointer;
  font-size: 1.5em;
  opacity: 50%;
  z-index: 100;
  transition: opacity 0.8s ease-out;
}
@media (max-width: 1200px) {
  #arrowup {
    right: 0;
  }
}
#arrowup:hover {
  opacity: 100%;
}

.card-container-main.hidden {
  display: none;
}

.bordershadow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  box-shadow: 5px 5px 10px 1px #8d8c90;
  border-radius: 10px;
  padding: 5px;
}

.greenshadow {
  box-shadow: 2px 0 5px rgba(50, 199, 100, 0.5);
}

.advertisement {
  display: none;
  width: 90%;
  height: 100px;
  background-color: #fd7e14;
  padding: 10px;
  margin: 50px;
}

.btn {
  overflow: hidden;
  border-radius: 0.25em;
  border-color: transparent;
  margin: 1px;
  white-space: nowrap;
  height: 40px;
  transition: background-color 0.5s, color 0.1s;
  padding: 10px 2px;
}
.btn:hover {
  cursor: pointer;
}

.badge {
  border-radius: 2%;
  padding: 4px 9px;
  box-shadow: -1px 1px currentColor;
  font-weight: lighter;
  font-size: 0.6rem;
  font-family: monospace;
  transition: background-color 0.9s, color 0.9s;
}
.badge:hover {
  cursor: pointer;
}

.sm {
  font-size: 0.8125em;
  padding: 0.4rem;
  letter-spacing: 0.1em;
}

.md {
  font-size: 0.92em;
  padding: 0.4rem;
  letter-spacing: 0.1em;
}

.big {
  font-size: 1.2em;
  padding: 0.3rem;
  letter-spacing: 0.3em;
}

footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #0f0f0f;
  min-height: 250px;
  overflow: hidden;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  footer .footer-container {
    flex-direction: column;
  }
}
footer .footer-container .logo {
  justify-content: center;
}
footer .footer-container .slogan {
  color: #ffffff;
  width: 30%;
  padding: 5px;
}
@media (max-width: 1100px) {
  footer .footer-container .slogan {
    width: 100%;
  }
}
footer .footer-container #mail_listesi {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f9fafb;
  font-size: 0.8em;
  width: 30%;
  border: 3px outset black;
}
@media (max-width: 1100px) {
  footer .footer-container #mail_listesi {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
footer .footer-container #mail_listesi #mail_listesi_form {
  display: flex;
  align-items: center;
  padding: 5px;
}
footer .footer-container #mail_listesi #mail_listesi_form #eposta {
  height: 35px;
  width: 75%;
}
@media (max-width: 1100px) {
  footer .footer-container #mail_listesi #mail_listesi_form #eposta {
    width: 300px;
  }
}
footer .footer-container #mail_listesi span {
  color: #8d8c90;
  font-size: 0.75em;
}
footer .dip {
  display: flex;
  flex-direction: column;
  background-color: black;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #8d8c90;
  font-size: 85%;
  padding: 30px;
}

#login {
  margin: 10px 13%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#login form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px outset #c5c6ca;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 900px) {
  #login form {
    width: 100%;
  }
}
#login form label {
  align-self: flex-start;
  margin-bottom: 5px;
  font-family: "Nunito Sans";
}
#login form input {
  margin: 10px 0;
  width: 500px;
  height: 30px;
  border-radius: 10px;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
  font-size: large;
}
@media (max-width: 900px) {
  #login form input {
    width: 100%;
  }
}

pre code {
  background-color: #0f0f0f;
  padding: 10px;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  color: #51e682;
  display: block;
  white-space: pre-wrap; /* Kod satırlarını taşır */
}

.panel-tablo {
  display: flex;
  justify-content: center;
}

.panel {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.cerceve {
  display: flex;
  padding: 7px;
  width: 24%;
  height: 15vh;
  border: 1px solid #c5c6ca;
  border-radius: 0.7rem;
  align-items: center;
  transition: 2s;
}
.cerceve:hover {
  background-color: #302e34;
  cursor: auto;
}

.i-fa {
  display: flex;
  height: 70%;
  width: 35%;
  margin: 10px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 100%;
}
.info p {
  font-size: 1.2em;
  font-weight: bolder;
}
.info span {
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .cerceve {
    width: 45%;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .cerceve {
    width: 100%;
  }
}
.categories {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 2px 0 5px rgba(50, 199, 100, 0.5);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 900px) {
  .categories {
    box-shadow: none;
  }
}

/* Sayfanın geri kalanını kaplayan opak overlay */
.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
  z-index: 999; /* Önde olacak, ama .category-container-editadd'in altında */
  display: none; /* Başlangıçta gizli */
}

.category-container {
  max-width: 700px;
  width: 100%;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(50, 199, 100, 0.5);
  border-radius: 5px;
  margin-bottom: 30px;
}
.category-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.category-container-editadd {
  max-width: 700px;
  width: 100%;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(50, 199, 100, 0.5);
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1000; /* Üstte kalmasını sağlar */
  opacity: 1; /* Bu eleman tam görünür olacak */
}
.category-container-editadd h2 {
  text-align: center;
  margin-bottom: 20px;
}

.category-container-editadd {
  background-color: #302e34;
}

.btn-cont {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

.category-table {
  width: 100%;
  border-collapse: collapse;
}
.category-table th, .category-table td {
  padding: 10px;
  border: 2px ridge #2163e8;
  text-align: center;
}
.category-table th {
  font-weight: bold;
}

.category-table-edit, .category-table-add {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.category-table-edit caption, .category-table-add caption {
  padding: 10px;
  font-size: 1.1em;
  font-weight: bold;
}
.category-table-edit th, .category-table-edit td, .category-table-add th, .category-table-add td {
  padding: 10px;
  border: 2px groove #4f9ef8;
  text-align: center;
}
.category-table-edit th, .category-table-add th {
  font-weight: bold;
}
.category-table-edit select, .category-table-add select {
  padding: 10px;
  text-align: center;
}
.category-table-edit input, .category-table-add input {
  padding: 10px;
}

.posts, .yorumlar, .veritabanı {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
  margin-top: 50px;
  text-align: center;
}
.posts #sirala, .yorumlar #sirala, .veritabanı #sirala {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0px;
}
.posts #sirala select, .yorumlar #sirala select, .veritabanı #sirala select {
  margin-left: 10px;
}

.post-table, .yorum-table, .veritabanı-table {
  width: 100%;
  border-collapse: collapse;
}
.post-table thead, .yorum-table thead, .veritabanı-table thead {
  background-color: #302e34;
  color: #f9fafb;
}
.post-table thead tr:first-child th:first-child, .yorum-table thead tr:first-child th:first-child, .veritabanı-table thead tr:first-child th:first-child {
  border-top-left-radius: 20px; /* Sol üst köşeyi yuvarla */
  border-bottom-left-radius: 20px; /* Sol üst köşeyi yuvarla */
}
.post-table thead tr:first-child th:last-child, .yorum-table thead tr:first-child th:last-child, .veritabanı-table thead tr:first-child th:last-child {
  border-top-right-radius: 20px; /* Sağ üst köşeyi yuvarla */
  border-bottom-right-radius: 20px; /* Sağ üst köşeyi yuvarla */
}
.post-table tbody tr, .yorum-table tbody tr, .veritabanı-table tbody tr {
  border-bottom: 1px #8d8c90 solid;
}
.post-table th, .post-table td, .yorum-table th, .yorum-table td, .veritabanı-table th, .veritabanı-table td {
  padding: 10px;
  text-align: center;
}
.post-table th, .yorum-table th, .veritabanı-table th {
  font-weight: bold;
}

.note-frame {
  color: #181818;
  background-color: #ffffff; /* Arka plan rengini buradan ayarlayın */
}

#edit-postimg {
  height: 400px;
  margin: 30px 0;
}

#edit-postvideo {
  margin: 30px 0;
}

.posteditcontainer, .postaddcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  margin: 10px;
  position: relative;
  z-index: 1000; /* Üstte kalmasını sağlar */
  opacity: 1;
}
.posteditcontainer #editform, .posteditcontainer #addPostForm, .postaddcontainer #editform, .postaddcontainer #addPostForm {
  display: flex;
  flex-direction: column;
  padding: 15px;
  width: 100%;
}
.posteditcontainer #editform label, .posteditcontainer #addPostForm label, .postaddcontainer #editform label, .postaddcontainer #addPostForm label {
  font-weight: bolder;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
.posteditcontainer #editform input, .posteditcontainer #editform select, .posteditcontainer #addPostForm input, .posteditcontainer #addPostForm select, .postaddcontainer #editform input, .postaddcontainer #editform select, .postaddcontainer #addPostForm input, .postaddcontainer #addPostForm select {
  width: 100%;
  padding: 5px;
  margin-bottom: 20px;
}
.posteditcontainer #editform button, .posteditcontainer #addPostForm button, .postaddcontainer #editform button, .postaddcontainer #addPostForm button {
  margin-top: 20px;
}

.settings {
  text-align: center;
  margin: 50px 0px;
}
.settings #social-form {
  margin: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.settings #social-form input {
  margin-top: 5px;
  margin-bottom: 20px;
  height: 30px;
}

.profil {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  margin: 50px 0px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}
.profile-table th, .profile-table td {
  padding: 10px;
  border: 2px ridge #6f42c1;
  text-align: center;
}
.profile-table th {
  font-weight: bold;
}
.profile-table #profiletableimg {
  height: clamp(50px, 7vw, 70px); /* Yükseklik için */
  width: clamp(50px, 7vw, 70px); /* Genişlik için */
  -o-object-fit: cover;
     object-fit: cover; /* Resmin oranını korumak için */
  border-radius: 20%;
}

.modal {
  display: none; /* Başlangıçta gizle */
  position: fixed;
  z-index: 1000; /* Diğer içeriklerin üstünde görünsün */
  left: 0;
  top: 0;
  width: 100%; /* Modal genişliği */
  height: 100%; /* Modal yüksekliği */
  overflow: auto; /* İçeriğin taşmaması için kaydırma */
  background-color: rgba(0, 0, 0, 0.8); /* Arka planı koyulaştır */
}

.modal-content {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: black;
  margin: 5% auto; /* Üstten 5% mesafe */
  padding: 20px;
  border-radius: 8px; /* Köşeleri yuvarlaştır */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölgelendirme efekti */
  width: 60%; /* Modal genişliği */
  max-width: 600px; /* Maksimum genişlik */
}

.closemodal {
  color: #e83e8c;
  font-size: xx-large;
  align-self: flex-end; /* Sağ üst köşeye hizala */
  cursor: pointer; /* Üzerine gelince imleci değiştir */
}

.closemodal:hover {
  color: #fd7e14; /* Üzerine gelince renk değişimi */
}

/* Form elemanlarını güzelleştirmek için ek stil */
input, select, textarea {
  width: 100%; /* Genişlik */
  padding: 10px; /* İçerik için boşluk */
  margin: 10px 0; /* Üst ve alt boşluk */
  border: 1px solid #ccc; /* Kenarlık */
  border-radius: 4px; /* Kenar yuvarlama */
  box-sizing: border-box; /* Boyut hesaplama */
}/*# sourceMappingURL=style.css.map */
