/* # ROOT SETTINGS # */
:root{
    --body-bg-color:#f9f9fb;
    --body-txt-color:#222;
    --focus-otl-color:#0070f3;
    --selection-bg-color:#339af0;
    --selection-txt-color:#fff;
    --header-bg-color:#fdf8c8;
    --footer-bg-color:#fdf8c8;

    --notepad-bold-yellow-color:#fdf8c8;
    --notepad-line-color:#cdccdc;

    --notification-duration: 3000ms;
}
@font-face {
    font-family: "LiberationSerif";
    src: url("/fonts/liberation-serif/LiberationSerif.woff2") format("woff2"),
         url("/fonts/liberation-serif/LiberationSerif.woff") format("woff"),
         url("/fonts/liberation-serif/LiberationSerif.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "LiberationSerif", system-ui, -apple-system, serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--body-txt-color);
    background: var(--body-bg-color);
}
main{
    flex:1 0 auto;
    padding: 0.5rem;
}
footer{
    flex-shrink: 0;
    width: 100%;
}
picture, video, canvas, svg { display: block; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol { list-style: none; }
a {
  color: inherit;
  text-decoration: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
:focus { outline: 2px solid var(--notepad-line-color); }
::selection { background: var(--selection-bg-color); color: var(--selection-txt-color); }
a[role='button']:focus{
    outline: none;
}
hr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--notepad-line-color);
    padding: 0;
}
textarea {
    resize: vertical;
}
.notification {
  /* position: fixed;
  right: 16px;
  bottom: 16px; */
  min-width: 260px;
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1002;
  box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  
}

.notification button {
  pointer-events: auto;
  padding:0;
}

.notification.show {
  display: block;
  opacity: 1;
}

.notification.paused .notification-timer {
  animation-play-state: paused;
}

.notification-close {
  background: none;
  border: none;
  font-size: 18px;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.notification-body {
 display: flex;
 margin-bottom: 6px;
 justify-content: space-between;
}

.notification-body [class*='notification-message']{
    text-align: center;
}

.notification-timer {
  height: 3px;
  border-radius: 999px;
  transform-origin: right center;
  animation: timer var(--notification-duration) linear forwards;
}

.notification-success .notification-timer {
  background: rgb(255, 255, 255);
}

.notification-warning .notification-timer {
  background: rgb(0, 0, 0);
}

.notification-danger .notification-timer {
  background: rgb(255, 255, 255);
}

.notification-fail .notification-timer {
  background: rgb(255, 255, 255);
}

.notification-info .notification-timer {
  background: rgb(255, 255, 255);
}

.notification-primary .notification-timer {
  background: rgb(0, 0, 0);
}

.notification-secondary .notification-timer {
  background: rgb(0, 0, 0);
}

@keyframes timer {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

.notification-success{
    background-color: green;
}
.notification-message-success{
    color: rgb(255, 255, 255);
}
.notification-warning{
    background-color: yellow;
}
.notification-message-warning{
    color: rgb(0, 0, 0);
}
.notification-danger{
    background-color: firebrick;
}
.notification-message-danger{
    color: rgb(255, 255, 255);
}
.notification-fail{
    background-color: maroon;
}
.notification-message-fail{
    color: rgb(255, 255, 255);
}
.notification-info{
    background-color: darkcyan;
}
.notification-message-info{
    color: rgb(255, 255, 255);
}

.notification-primary{
    background-color: greenyellow;
}
.notification-message-primary{
    color: rgb(0, 0, 0);
}

.notification-secondary{
    background-color: darkkhaki;
}
.notification-message-secondary{
    color: rgb(0, 0, 0);
}
/* # ROOT SETTINGS # */

/* Mobil (Varsayılan - Mobile First) */
/* 320px - 480px */
header{
    background: var(--header-bg-color);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    z-index: 1001;
    box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
header > nav > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
header> nav > ul li{
    margin-right: 5px;
    font-weight: 600;
    font-size: medium;
}
.mobile-menu-icon{
    /* padding: 0.1rem; */
    border: 0.2rem solid var(--body-txt-color);
    border-radius: 0.5rem;
}
footer{
    background:var(--footer-bg-color);
    box-shadow:inset 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.6px);
    -webkit-backdrop-filter: blur(7.6px);
    padding: 0.5rem;
    display: block;
}

.footer-section-main{
    width: 100%;
    /* padding: 1rem; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* justify-content: space-evenly; */
}
a:not([role='button']) svg, a:not([role='button']) i{
    margin-right: 0.3rem;
    color: var(--notepad-line-color);
}
/* a[role='button'] svg{
    margin:0;
    color: #222;
} */
div[class^='footer-section-main-']{
    /* margin-right: .8rem; */
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
footer>div[class^=footer-section-]{
    margin-bottom: 0.5rem;
}

footer .footer-section-title{
    font-weight: bold;
    border-width: 0.2rem;
}
footer ul li a, main ul li a{
        border-bottom: var(--notepad-line-color) solid 1px;
}
footer .footer-section-contact{
    display: flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align: center;
}
.footer-section-main ul li a{
    font-weight: normal;
}
footer div.footer-section-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer div.footer-section-logo img, header .header-section-logo img{
    max-width: 160px;
    max-height: 60px;
}
footer .footer-section-copyright{
    display: flex;
    justify-content: center;
    align-items: center;
}
aside {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--notepad-bold-yellow-color);
    width: 100%;
    height: 100%;
    z-index: 999;
    justify-content: center;
    align-items: center;
    
    transform: translateY(-100%);
    opacity: 0;
    
    transition: transform 0.3s ease, opacity 0.3s ease;
}
aside.active {
    transform: translateY(0);
    opacity: 1;
}
aside nav{
    width: 100%;
    padding: 0.5rem;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
aside nav ul, footer ul{
    width:100%;
}

aside nav li{
    border-top: var(--notepad-line-color) 1px solid;
    text-align: center;
}
aside nav li:last-child{
    border-bottom: var(--notepad-line-color) 1px solid;
}
.main-title{
    text-align: center;
    font-weight: normal;
}
.index-container{
    text-align: center;
}
.index-item{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.index-container a{
    border-bottom: var(--notepad-line-color) solid;
}
.tools-paragraph{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}


.about-introduction{
    text-align: center;
}

.about-item{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.contact-map iframe{
    border-radius: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.contact-info{
    background-color: var(--notepad-bold-yellow-color);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.contact-form{
    background-color: var(--notepad-bold-yellow-color);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
.contact-form-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}
.btn.btn-submit{
    border: 1px solid #222;
    background-color: greenyellow;
}
.btn.btn-reset{
    border:1px solid #222;
    background-color: darkkhaki;
}
.btn.btn-danger{
    border:1px solid #222;
    background-color: firebrick;
}
.btn.btn-warning{
    border: 1px solid #222;
    background-color: darkorange;
}
.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-form{
    background-color: var(--notepad-bold-yellow-color);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
.login-form-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.login-form-group .login-form-password-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    /* justify-content: center; */
}
.login-form-password-container input.login-form-password{
    width: 90%;
}
.login-form-password-container div.login-form-password-icon{
    width: 10%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1px 2px;
    border: 1px solid rgb(118, 118, 118);
    border-left: none;
    background-color:white;
}

.panel-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.panel-list{
    width: 100%;
    min-width: 0;
}

.panel-form{
    background-color: var(--notepad-bold-yellow-color);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
[class^='panel-form-group']{
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}
.source-url-add{
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #222;
    padding: 0.22rem;
    width: fit-content;
    height: fit-content;
    /* border-radius: 0.5rem; */
    cursor: pointer;
}

.source-url-remove{
    align-items: center;
    border: 1px solid #222;
    padding: 0.22rem;
    width: fit-content;
    height: fit-content;
    /* border-radius: 0.5rem; */
    cursor: pointer;
}
.blogs-add-url-container-sub{
    display:flex;
    flex-direction: row;
    gap:0.1rem;
    margin-bottom: 0.1rem;
}

/* Kaynak(lar) - 3 alt kategori */
.blog-sources-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-sources-category {
    border: 1px solid #2222221a;
    padding: 0.5rem 0.6rem;
    border-radius: 4px;
}

.blog-sources-category-title {
    margin: 0 0 0.4rem 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.source-type-hint {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
}

.blogs-source-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.blogs-source-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
}

.blogs-source-row input[type="url"] {
    flex: 2;
    min-width: 0;
}

.blogs-source-row input[type="text"] {
    flex: 1;
    min-width: 0;
}

.source-row-remove {
    border: 1px solid #222;
    padding: 0.22rem;
    cursor: pointer;
    background: none;
    flex-shrink: 0;
}

/* Araç mağaza & indirme dinamik satırları */
.tool-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.tool-link-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tool-link-type-select {
    width: 100%;
    font-size: 0.82rem;
    padding: 0.2rem 0.3rem;
    border: 1px solid #767676;
    background: #fff;
}

.tool-link-row input[type="url"],
.tool-link-row input[type="text"] {
    width: 100%;
    min-width: 0;
}

.tool-link-row-remove {
    border: 1px solid #222;
    padding: 0.22rem;
    cursor: pointer;
    background: none;
    align-self: flex-start;
    flex-shrink: 0;
}


.image-meta-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.4rem;
}

.blog-image-alt-input,
.blog-image-caption-input {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.8rem;
    padding: 0.2rem 0.3rem;
}

/* ── Yayın Meta Ayarları ─────────────────────────────────────────── */
.publish-meta-group {
    border: 1px solid #2222221a;
    border-radius: 6px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.75rem;
}

.publish-meta-group > h4 {
    margin: 0 0 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom: 1px solid #2222221a;
    padding-bottom: 0.3rem;
}

.publish-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.6rem 1rem;
    align-items: start;
}

.publish-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.82rem;
}

.publish-meta-item > span {
    font-weight: 600;
    color: #444;
}

.publish-meta-item select,
.publish-meta-item input[type="text"],
.publish-meta-item input[type="color"] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.25rem 0.35rem;
    font-size: 0.82rem;
}

.publish-meta-item input[type="color"] {
    height: 2rem;
    padding: 0.1rem 0.2rem;
    cursor: pointer;
}

.publish-meta-item--full {
    grid-column: 1 / -1;
}

.platform-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin-top: 0.15rem;
}

.platform-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
}


.panel-form-header .panel-form-header-title{
    text-align: center;
    text-decoration: underline;
}

.tags-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.tags-add-color-container{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-evenly;
}
.tags-add-color-group{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #2222222a;
    padding: 0.22rem;
}

.mandatory-star {
    color: red;
}

.image-preview {
    display: inline-block;
    margin: 10px;
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
}
.image-preview img {
    display: block;
    margin-bottom: 5px;
}

.image-preview button {
    margin: 2px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}
.image-preview button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.tools-add-tags-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
label:has(input[name^="tools-add-tags-"])::after{
    content: "|";
}

.categories-container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem; 
    grid-auto-rows: auto;
}

.categories-item{
    padding:1rem;
    cursor:pointer;
    background-color: var(--notepad-bold-yellow-color);
    border:0.15rem solid #222;
    border-radius: 10px;
    height:100%;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.categories-title{
    text-align: center;
    background-color: #222222bb;
    /* color:var(--notepad-line-color); */
}

.appearance-section {
    border: 1px solid #2222221a;
    border-radius: 4px;
    padding: 0.5rem 0.6rem 0.6rem;
    margin-top: 0.5rem;
    position: relative;
}

.appearance-section-label {
    position: absolute;
    top: -0.6rem;
    left: 0.6rem;
    background: var(--notepad-bold-yellow-color);
    padding: 0 0.3rem;
    font-size: 0.72rem;
    color: #666;
    letter-spacing: 0.03em;
    pointer-events: none;
}

.categories-add-color-container{
    display: flex;
    flex-direction:row;
    gap: 0.5rem;
    justify-content: space-evenly;
}
.categories-add-color-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #2222222a;
    padding: 0.22rem;
}

.categories-add-typography-container {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.categories-add-typography-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.25rem;
    border: 1px solid #2222222a;
    padding: 0.22rem;
}

.categories-add-typography-group h5 {
    margin: 0;
    font-size: 0.75rem;
    color: #555;
}

.categories-add-typography-group input[type="text"],
.categories-add-typography-group select {
    border: 1px solid #ccc;
    padding: 0.2rem 0.3rem;
    font-size: 0.82rem;
    max-width: 9rem;
    width: 9rem;
}
.categories-add-preview-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.tags-add-preview-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    flex-direction: column; 
}

.tags-container{
    display:grid;
    grid-template-columns: 1fr;
    gap:0.5rem;
    grid-auto-rows: auto;
}

.tags-item{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}

.tags-count{
    background-color: whitesmoke;
    border: 0.1rem solid #222;
    padding:0 0.2rem 0 0.2rem;
    margin-left: 0.4rem;
    border-radius: 50%;
    corner-shape: round;
}

.tags-title{
    text-align: center;
}

.tools-item-container{
    display:flex;
    flex-direction:column;
    gap:0.1rem;
}

.tools-item-container-body{
    word-wrap: break-word;
    text-align:center;
    color:var(--notepad-line-color);
    font-weight:bolder;
}

.tools-item-container-header{
    text-align: center;
    color:var(--notepad-line-color);
    font-weight: bold;
}

.tools-item-container-header.title-category{
    /* font-size: small; */
    text-decoration:underline;
}

.tools-item-container-header.title-content-tools{
    font-size: large;
}

.tools-item-container-header.subtitle-content-tools{
    font-size: medium;
    font-style:italic;
}

.tools-item {
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 0.7rem;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}
.tools-item:last-of-type {
    margin-bottom: 0;
}

a.tools-item {
    display: block;
    box-shadow: 0.1rem 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    transition: background-size 2s ease-in-out;
}

a.tools-item .tools-item-container-header{
    transition: color 1s ease-in-out,
    font-size 2s ease-in-out;
}

a.tools-item:hover, a.tools-item:active {
    background-size: 125%;
}
a.tools-item:hover .tools-item-container-header, a.tools-item:active .tools-item-container-header {
    color:white;
    font-size:larger;
}

.tools-item-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* 0.5 karartma oranı, artırıp azaltabilirsiniz */
    z-index: 1;
    pointer-events: none;
}

.tools-item-container {
    position: relative;
    z-index: 2;
}
.tools-content-nav{
    display:flex;
    flex-direction: row;
    justify-content:center;
    align-items:center;
    gap:1rem;
    margin:0.5rem 0
}
.tools-content-nav-item{
    display:block;
    padding:0.5rem;
    border: 1px solid #222;
    font-weight:bold;
    border-radius:1rem;
    corner-shape:squircle;
}
.tools-content-nav-item.categories{
    background-color: orangered;
    color: whitesmoke;
}
.tools-content-nav-item.categories::before{
    content: "📂";
    margin-right:6px;
}
.tools-content-nav-item.tags{
    background-color: rgb(98, 234, 19);
    color: rgb(0, 0, 0);
}
.tools-content-nav-item.tags::before{
    content: "🏷️";
    margin-right:6px;
}
.tools-content-body{
    word-wrap: break-word;
}

.tools-content-body-container{
    background-color: var(--notepad-bold-yellow-color);
    padding: 0.3rem;
    margin-bottom: 0.5rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.tools-content-body-subdescription{
    color: #4b4949;
    font-style: italic;
    margin-bottom: 0.1rem;
    text-align: center;
    letter-spacing: 1px;
}
.tools-content-body-description{
    color: #222;
    font-size: larger;
    text-align: center;
    margin-bottom: 0.1rem;
    letter-spacing: 1px;
}
.tools-content-header{
    margin-bottom: 0.5rem;
}

.tools-content-header-title{
    background-color: var(--notepad-bold-yellow-color);
    padding: 0.1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}
.tools-content-header-preview{
    box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.tools-content-header-preview, .tools-content-header-preview img{
    border-radius: 24px;
    corner-shape:squircle;
}
.tools-content-title{
    text-align: center;
    margin-bottom: 0.1rem;
    font-weight: bold;
}

.tools-content-subtitle{
    text-align: center;
    font-weight: 400;
    font-style: italic;
    color: #222;
}
.tools-content-body-details-tags{
    display:flex;
    flex-direction:column;
    background-color:var(--notepad-bold-yellow-color);
    border-radius:0.5rem;
    padding:0.3rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom:0.5rem;
}
.tools-content-body-details-tags h4{
    text-align: center;
    font-weight: bold;
}

.tools-content-body-details-tags-body ul{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:0.3rem;
    justify-content: center;
    align-items: center;
}
.tools-content-body-details-links{
    display:flex;
    flex-direction:column;
    background-color:var(--notepad-bold-yellow-color);
    border-radius:0.5rem;
    padding:0.3rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom:0.5rem;

}
.tools-content-body-details-links h4{
    text-align: center;
    font-weight: bold;
}
.tools-content-body-details-links-body ul{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:0.3rem;
    justify-content: center;
    align-items: center;
}

.tools-content-body-details-tags-body ul li{
    padding:0.2rem 0.5rem 0.2rem 0.5rem;
    border-radius:0.5rem;
    font-size: small;
    font-weight: bold;
}

.tools-content-body-details-gallery{
    margin-bottom:0.5rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    padding:0.5rem;
    background-color:var(--notepad-bold-yellow-color);
    border-radius:1rem;
}

.slider > .body:first-child{
    margin-bottom:0.1rem;
}

.slider .preview{
    position: relative;
    border-radius:0.5rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.slider .preview-gallery{
    border: 2px solid #222;
    border-radius: 1rem;
    corner-shape:squircle;
    display:flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type:x mandatory;
    scroll-behavior: smooth;
}

.slider .preview img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    cursor: pointer;
    /* border: 2px solid #222; */
    /* border-radius: 1rem; */
    corner-shape:squircle;
}

.slider .nav-gallery .item {
    flex-shrink: 0;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    border: 2px solid transparent;
    corner-shape:squircle;
    overflow: hidden;
}

.slider .preview .nav [class^="arrow-"]{
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border-radius: 50%;
    width:32px;
    height:32px;
    cursor: not-allowed;
    user-select: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-align:center;
    transform: translateY(-50%);
    position: absolute;
}

.slider .preview .nav .arrow-left{
    top:50%;
    left:5%
}

.slider .preview .nav .arrow-right{
    top:50%;
    right:5%
}

.slider .preview .nav [class^="arrow-"].active{
    cursor: pointer;
    background-color:rgba(0, 0, 0, 0.5)
}

.slider .nav-gallery .item.active{
    border: 2px solid #222;
}

.slider .nav-gallery {
    overflow-x:auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 0.5rem;
    padding:0.2rem;
}

.slider .nav-gallery .item img{
    width: 96px;
    height: 96px;
    cursor: pointer;
}

.slider .header .title{
    text-align: center;
    font-weight: bold;
}

.slider .big-picture{
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.slider .big-picture.active{
    opacity: 1;
    z-index: 9999;
}

.slider .big-picture.active .alt{
    opacity: 1;
}

.tag-url{
    font-size: small;
    text-align: center;
    word-wrap: break-word;
    border-bottom:none;
}

.slider .big-picture .content .items{
    position:relative;
    display:flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type:x mandatory;
    scroll-behavior: smooth;
}

.slider .big-picture .content .nav [class^="arrow-"]{
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border-radius: 50%;
    width:32px;
    height:32px;
    cursor: not-allowed;
    user-select: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-align:center;
    transform: translateY(-50%);
    position: absolute;
}

.slider .big-picture .content .nav .arrow-left{
    top:50%;
    left:5%
}

.slider .big-picture .content .nav .arrow-right{
    top:50%;
    right:5%
}

.slider .big-picture .content .nav [class^="arrow-"].active{
    cursor: pointer;
    background-color:rgba(0, 0, 0, 0.5)
}

.slider .big-picture .content .item{
    scroll-snap-align: start;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .big-picture .content .item img{
    scroll-snap-align: start;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    flex: 1 0 100%;
}

.slider .big-picture .alt{
    opacity: 0;
    transition: opacity 1s ease;
}

.slider .big-picture .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
.slider .big-picture .alt .alt-text{
    display:none;
    color:whitesmoke;
    font-style:italic;
}
.slider .big-picture .alt .alt-text.active{
    display:block;
}

.slider .big-picture .gallery{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    max-width: 90vw;
    overflow-x: auto;
}

.slider .big-picture .gallery .gallery-item {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.slider .big-picture .gallery .gallery-item.active {
    border-color: white;
    opacity: 1;
    animation-name:sliderBpAltText 1s;
}

.slider .big-picture .gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .big-picture .close-btn{
    color:whitesmoke;
}

.link{
    padding: 0.2rem;
    border-radius: 0.5rem;
    font-weight: bold;
}

.link.link-whatsapp{
    border: 1px solid #25D366;
    color: whitesmoke;
    background-color: #25D366;
}

.link.link-twitter {
    border: 1px solid #000000;
    color: whitesmoke;
    background-color: #000000;
}

.link.link-facebook {
    border: 1px solid #1877F2;
    color: whitesmoke;
    background-color: #1877F2;
}

ul#latestTools{
    list-style-type: disc;
    list-style-position: inside;
    text-align: center;
}

ul#latestTools ::marker{
    color: var(--notepad-line-color);
    
}

.page-nav-container{
    flex-wrap: wrap;
    box-shadow: inset 0 0rem 0.25rem 0.1rem rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items:center;
    display: flex;
    flex-direction: row;
    padding:0.3rem;
    min-height: 2rem;
    background-color: var(--body-bg-color);
    margin-bottom: 1rem;
    border-radius: 1rem;
    word-break: break-all;
}
.page-nav-item{
    font-style: italic;
}
.page-nav-item.active{
    font-style: normal;
    font-size: larger;
    font-weight: bold;
    border-bottom: #222 solid;
}

.error-container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  /* Dikey ortalamak için eklendi */
}

.error-container h1{
    font-size: xx-large;
    margin-bottom:0.5rem;
}
.error-container p{
    font-size: large;
    text-align: center;
    color:#444;
}

.error-url-redirect{
    border-bottom: var(--notepad-line-color) solid 1px;
    margin-top:1rem;
    font-size: medium;
    color:#222;
}

@keyframes dangerwarning {
    0% {
        color: red;
    }
    50% {
        color:var(--notepad-line-color);
    }
    100% {
        color: red;
    }
}

.blink-exm {
    color: red;
    animation: dangerwarning 2s steps(1, end) infinite;
}

.about-founder{
    display: flex;
    flex-direction: column;
}

.about-founder-img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-founder-img img{
    corner-shape:round;
    border-radius: 50%;
    box-shadow: 0 0.2rem 5px 1px #22222240;
}

.about-founder-info{
    padding: 0.5rem;
    font-style: italic;
}

.blogs-add-content{
    background-color: white;
    padding: 2px;
    border: 0.1rem solid #767676;
}

.panel-form-group-metadata{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.panel-form-group-metadata .panel-form-metadata-title{
    text-align: center;
    text-decoration: underline;
}

.panel-form-metadata-body {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #ffffff;
    overflow: hidden;
}

.metadata-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem;
    background: #f3f4f6;
    border-bottom: 1px solid #d1d5db;
}

.metadata-tab {
    border: 1px solid #d1d5db;
    border-radius: 0.4rem;
    background: #ffffff;
    color: #1f2937;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
}

.metadata-tab.is-active {
    border-color: #0b57d0;
    background: #0b57d0;
    color: #ffffff;
}

.metadata-tab-panels {
    padding: 0.75rem;
}

.metadata-panel-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metadata-panel-header{
    text-align: center;
    text-decoration:underline;
    margin: 0 0 0.5rem;
}

.metadata-panel-group{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom:0.5rem;
}

.metadata-help-text {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.metadata-subfields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.6rem;
}

.metadata-subfield {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.metadata-subfield label {
    font-size: 0.85rem;
    font-weight: 700;
}

.metadata-panel-group-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.65rem;
    background: #f9fafb;
}

.metadata-group-title {
    margin: 0;
    font-size: 0.95rem;
    text-decoration: underline;
}

.metadata-field-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Collapsible SEO Section */
.metadata-collapse-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0;
    text-align: left;
}
.metadata-collapse-btn .panel-form-metadata-title {
    text-decoration: underline;
    text-align: left;
    margin: 0;
}
.metadata-collapse-icon {
    font-size: 0.75rem;
    line-height: 1;
}

/* Panel header with Formdan Getir button */
.metadata-panel-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.metadata-panel-header-row .metadata-panel-header {
    margin: 0;
}
.btn-fetch-from-form {
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    background: #f0f4ff;
    border: 1px solid #0b57d0;
    color: #0b57d0;
    border-radius: 0.4rem;
    cursor: pointer;
    font-weight: 600;
}
.btn-fetch-from-form:hover {
    background: #0b57d0;
    color: #fff;
}

/* Server-managed (readonly) fields */
.server-readonly {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
}
.server-managed {
    opacity: 0.72;
}
.server-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
    border-radius: 0.25rem;
    padding: 0 0.3rem;
    vertical-align: middle;
    margin-left: 0.25rem;
}
.type-hint {
    display: inline;
    font-size: 0.62rem;
    font-weight: 400;
    color: #6b7280;
    margin-left: 0.2rem;
}

.tools-add-content{
    background-color: white;
    padding: 2px;
    border: 0.1rem solid #767676;
}

.blogs-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blogs-item {
    display: block;
    width: 100%;
}
.blogs-item-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #cdccdc;
    border-radius:1rem;
    height: 400px;
    overflow: hidden;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
.blogs-item-container-header {
    flex: 0 0 70%;
    min-height: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0.2rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
.blogs-item-container-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}
.blogs-item-container-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    gap: 0.4rem;
}
.blogs-item-container-header-content .title-content-blogs {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}
.title-content-blogs{
    color: var(--notepad-line-color);
    font-weight: bold;
}
.subtitle-content-blogs{
    font-size: medium;
    font-style: italic;
    color: var(--notepad-line-color);
}
.blogs-item-meta-row {
    display: flex;
    align-items: center;
    margin-top: 0.1rem;
    justify-content: center;
}
.blogs-item-category-box {
    display: flex;
    align-items: center;
    /* padding-right: 0.5rem; */
}
.blogs-item-category-badge{
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 15%; */
    /* corner-shape: squircle; */
    padding: 0.5rem;
    border: 1px solid;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
}

.blogs-item-tags-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
    /* padding-left: 0.5rem; */
    /* border-left: 1px solid rgba(255, 255, 255, 0.5); */
}
.blogs-item-tag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    corner-shape: squircle;
    corner-shape: round;
    padding: 0.2rem 0.3rem;
    border: 1px solid;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
}
.blogs-item-container-body {
    flex: 0 0 30%;
    min-height: 0;
    overflow: hidden;
    padding: 0.3rem;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
.blogs-item-container-body-content {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.blogs-item-read-more {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    font-style: italic;
    color: #555;
    padding-top: 0.25rem;
    flex-shrink: 0;
    text-decoration: underline;
}
.blogs-item-desc,
.blogs-item-subdesc {
    font-style: italic;
    color: #3a3a3a;
    font-size: 0.86rem;
    line-height: 1.4;
    margin: 0;
}
.blogs-item-subdesc {
    margin-top: 0.25rem;
    opacity: 0.8;
}
.blogs-content{
    display:flex;
    flex-direction:column;
    background-color:whitesmoke;
    /* border: 0.1rem solid #ddd5d5; */
}
.blogs-content-header{
    padding:0 0.5rem 0 0.5rem;
}
.blogs-content-header img{
    max-width: 400px;
    max-height:200px;
    width: 100%;
    height:100%;
    object-fit:cover;
    border-radius: 1rem;
}
.blogs-content-body{
    padding:0.5rem;
}

.blogs-content-body-main{
    /* padding:0.5rem;
    box-shadow: inset 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.1);
    background-color: var(--notepad-bold-yellow-color); */
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.blogs-content-body-details-container{
    display:flex;
    flex-direction:column;
    /* text-align:center; */
}
.blogs-content-body-details-container-row{
    display:flex;
    flex-direction:row;
    /* word-break: break-word; */
}
.blogs-content-body-details-container-row-title{
    color:#222;
    font-style: italic;
    margin-right:0.4rem;
    flex: 50% 0 0;
}

.blogs-content-body-details-container-row-content{
    flex: 50% 0 0; 
    font-style: italic;
}

.blogs-content-body-title{
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
}
.blogs-content-body-subtitle{
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #222;
    margin-bottom: 0.1rem;
    font-weight:700;
}
.blogs-content-body-description{
    color: #222;
    font-size: larger;
    text-align:center;
    margin-bottom:0.1rem;
    letter-spacing:1px;
}

.blogs-content-body-subdescription{
    color: #4b4949;
    font-style: italic;
    margin-bottom: 0.1rem;
    text-align:center;
    letter-spacing:1px;
}

/* ============================================================
   CBLOCK — EditorJS Block Renderers
   ============================================================ */

.blogs-content-body-content-block {
    margin-bottom: 1.25rem;
}

/* Paragraph */
.cblock-paragraph {
    line-height: 1.8;
    color: #333;
}

/* Header */
.cblock-header {
    font-weight: 700;
    line-height: 1.3;
    margin: 1.5rem 0 0.5rem;
    color: #1a1a1a;
}

/* Image */
.cblock-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.cblock-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.cblock-image--stretched { width: 100%; }
.cblock-image--bordered img { border: 1px solid #ddd; }
.cblock-image--bg { background: #f4f4f4; padding: 1rem; border-radius: 6px; }
.cblock-image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    /* margin-top: 0.4rem; */
    font-style: italic;
}

/* List */
.cblock-list {
    padding-left: 1rem;
    line-height: 1.9;
    color: #333;
}
.cblock-list--ordered { list-style-type: decimal; }
.cblock-list--unordered { list-style-type: disc; }

/* Quote */
.cblock-quote {
    border-left: 4px solid #0070f3;
    margin: 1rem 0;
    padding: 0.75rem 1.25rem;
    background: #f7f9ff;
    border-radius: 0 6px 6px 0;
}
.cblock-quote--center { text-align: center; border-left: none; border-top: 4px solid #0070f3; padding-top: 1rem; }
.cblock-quote--right { text-align: right; border-left: none; border-right: 4px solid #0070f3; }
.cblock-quote-text { font-style: italic; font-size: 1.05rem; margin: 0 0 0.4rem; }
.cblock-quote-caption { font-size: 0.85rem; color: #666; }

/* Code */
.cblock-code {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}
.cblock-code code { background: none; padding: 0; }

/* Delimiter */
.cblock-delimiter {
    border: none;
    margin: 1rem auto;
    width: 60%;
    text-align: center;
    font-size: 1.5rem;
    /* color: #aaa; */
    letter-spacing: 0.5em;
}

/* Table */
.cblock-table-wrapper {
    overflow-x: auto;
}
.cblock-table-wrapper--stretched .cblock-table { width: 100%; }
.cblock-table {
    border-collapse: collapse;
    min-width: 100%;
    font-size: 0.95rem;
}
.cblock-table th,
.cblock-table td {
    border: 1px solid #ddd;
    padding: 0.5rem 0.85rem;
    text-align: left;
    vertical-align: top;
}
.cblock-table-th {
    background: #f0f0f0;
    font-weight: 600;
}

/* Embed */
.cblock-embed { margin: 0; }
.cblock-embed-iframe {
    display: block;
    max-width: 100%;
    border-radius: 4px;
}
.cblock-embed-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.4rem;
}

/* Warning */
.cblock-warning {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 0 6px 6px 0;
    padding: 0.75rem 1.25rem;
}
.cblock-warning-title {
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #7a5c00;
}
.cblock-warning-message { margin: 0; color: #5a4000; }

/* Attaches */
.cblock-attaches {
    display: inline-block;
}
.cblock-attaches-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    background: #fafafa;
    transition: background 0.15s;
}
.cblock-attaches-link:hover { background: #f0f0f0; }
.cblock-attaches-ext {
    font-size: 0.75rem;
    font-weight: 700;
    background: #0070f3;
    color: #fff;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    letter-spacing: 0.03em;
}
.cblock-attaches-name { font-size: 0.95rem; }
.cblock-attaches-size { font-size: 0.8rem; color: #888; }

/* Checklist */
.cblock-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cblock-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.3rem 0;
    color: #333;
}
.cblock-checklist-item--checked .cblock-checklist-text {
    text-decoration: line-through;
    color: #999;
}
.cblock-checklist-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid #ccc;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: #0070f3;
}
.cblock-checklist-item--checked .cblock-checklist-box {
    border-color: #0070f3;
    background: #e8f0fe;
}
.blogs-content-body-meta{
    color:rgb(143, 138, 138);
    font-size:1rem;
    text-align:center;
}
.blogs-content-body-stats-mini{
     padding:1rem 0 1rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    /*background-color: var(--notepad-bold-yellow-color);
    margin-bottom: 0.5rem; */
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;

}
.blogs-content-body-stats-mini-widget{
    display:flex;
    flex-direction:row;
    gap: 0.2rem;
    justify-content: center;
    align-items:center;
}
.blogs-content-body-tags{
    display:flex;
    flex-direction: column;
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.blogs-content-body-tags-header-title{
    text-align:center;
    font-weight: bold;
}
.blogs-content-body-tags-body{
    display:flex;
    flex-wrap: wrap;
    gap:0.4rem;
    align-items: center;
    justify-content: center;
    height: auto;
    
}
.blogs-content-body-tags-item{
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    border: 1px solid;
    word-break: keep-all;
    opacity: 85%;
}
.blogs-content-body-urls{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.blogs-content-body-urls-sources-header-title{
    text-align: center;
    font-weight:bold;
}
.blogs-content-body-urls-sources-list{
    list-style-type: disc;
    padding-left: 1.5rem;
}
.blogs-content-body-urls-sources-item-link{
    border-bottom: var(--notepad-line-color) solid 1px;
}
.blogs-content-body-urls h5 i{
    color: var(--notepad-line-color);
    margin-right:0.3rem;
}
.blogs-content-body-urls li::marker {
    color: var(--notepad-line-color);
}
.blogs-content-body-gallery{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.blogs-content-body-stats-mini-widget i{
    color:var(--notepad-line-color)
}
.blogs-content-body-author{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.blogs-content-body-author-body{
    display:flex;
    flex-direction: row;
}
.blogs-content-body-author-body-image{
    width:50%;
    padding:0.2rem;
}
.blogs-content-body-author-body-image img{
    object-fit: cover;
    box-shadow: 0.1rem 0.1rem 0.1rem rgb(0 0 0 / 30%);
    border-radius: 50%;
}
.blogs-content-body-author-body-context{
    width:50%;
    padding:0.2rem;
    max-height: 25vh;
    overflow-y: auto;
}
.blogs-content-body-author-body-context p{
    font-style: italic;
}
.blogs-content-body-author-footer ul {
    display:flex;
    gap:15px;
    justify-content:center;
    text-align:center;
    flex-wrap:wrap;
}
.blogs-content-body-author-context-about p{
    text-align:center;
}

.tools-content-body-specs-header-title{
    text-align:center;

}
/* .tools-content-body-specs-body-item-title{
    text-align: center;
} */
.tools-content-body-specs-body-item-content-list{
    list-style-type: disc;
    padding-left: 1rem;
}
.tools-content-body-specs-body-item-title i{
    margin-right:0.1rem;
}

/* .tools-content-body-specs-body-item-content-list{
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* .tools-content-body-specs-body-item-content, .tools-content-body-specs-body-item-content ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

.tools-content{
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
}

.tools-content-body-stats-mini{
    padding: 1rem 0 1rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    /* padding: 1rem; */
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.tools-content-body-stats-mini-widget{
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    justify-content: center;
    align-items: center;
}

.tools-content-body-stats-mini-widget i{
    color:var(--notepad-line-color)
}

.tools-content-body-main{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.tools-content-body-title{
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
}

.tools-content-body-subtitle{
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #222;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.tools-content-body-meta{
    color: rgb(143, 138, 138);
    font-size: 1rem;
    text-align: center;
}

.tools-content-body-content{
    margin-bottom: 1.25rem;
}

.tools-content-body-specs{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.tools-content-body-specs-header-title{
    text-align: center;
    font-weight: bold;
}

.tools-content-body-specs-body-item-title i{
    color: var(--notepad-line-color);
    margin-right: 0.3rem;
}
.tools-content-body-specs-body-item-content-list{
    list-style-type: disc;
    padding-left: 1.5rem;
}
.tools-content-body-specs-body-item-content-list li::marker{
    color: var(--notepad-line-color);
}
.tools-content-body-specs-body-item-content span::before{
    content:"- ";
    color:var(--notepad-line-color);
    padding-left:1.5rem;
}

.tools-content-body-urls{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.tools-content-body-urls-sources-header-title{
    text-align: center;
    font-weight: bold;
}

.tools-content-body-urls h5 i{
    color: var(--notepad-line-color);
    margin-right: 0.3rem;
}

.tools-content-body-urls-sources-list{
    list-style-type: disc;
    padding-left: 1.5rem;
}

.tools-content-body-urls li::marker{
    color: var(--notepad-line-color);
}

.tools-content-body-tags{
    display: flex;
    flex-direction: column;
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.tools-content-body-tags-header-title{
    text-align:center;
    font-weight: bold;
}
.tools-content-body-tags-body {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    height: auto;
}
.tools-content-body-tags-item {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    border: 1px solid;
    word-break: keep-all;
    opacity: 85%;
}

.tools-content-body-author{
    background-color: var(--notepad-bold-yellow-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
.tools-content-body-author-body{
    display:flex;
    flex-direction: row;
}
.tools-content-body-author-body-image{
    width:50%;
    padding:0.2rem;
}
.tools-content-body-author-body-image img{
    object-fit: cover;
    box-shadow: 0.1rem 0.1rem 0.1rem rgb(0 0 0 / 30%);
    border-radius: 50%;
}
.tools-content-body-author-body-context{
    width:50%;
    padding:0.2rem;
    max-height: 25vh;
    overflow-y: auto;
}
.tools-content-body-author-body-context p{
    font-style: italic;
}
.tools-content-body-author-footer ul {
    display:flex;
    gap:15px;
    justify-content:center;
    text-align:center;
    flex-wrap:wrap;
}
.tools-content-body-author-context-about p{
    text-align:center;
}

.tags-content-list{
    margin-bottom: 0.5rem;
}

.categories-content-list{
    margin-bottom: 0.5rem;
}

/* Büyük Mobil / Küçük Tablet */
@media (min-width: 481px) { }

/* Tablet */
@media (min-width: 768px) { }

/* Laptop / Küçük Desktop */
@media (min-width: 1024px) { }

/* Desktop */
@media (min-width: 1280px) { }

/* Büyük Desktop */
@media (min-width: 1920px) { }