/* # 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;

    --toast-duration: 3000ms;
}
/*TODO: medium boyut için içerik optimizasyonuna başlanacak */
@font-face {
    font-family: "LiberationSerif";
    src: url("/static/asset/fonts/liberation-serif/LiberationSerif.woff2") format("woff2"),
         url("/static/asset/fonts/liberation-serif/LiberationSerif.woff") format("woff"),
         url("/static/asset/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;
}
.toast {
  /* 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);
  
}

.toast button {
  pointer-events: auto;
  padding:0;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.paused .toast-timer {
  animation-play-state: paused;
}

.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.toast-body {
 display: flex;
 margin-bottom: 6px;
 justify-content: space-between;
}

.toast-body [class*='toast-message']{
    text-align: center;
}

.toast-timer {
  height: 3px;
  border-radius: 999px;
  transform-origin: right center;
  animation: timer var(--toast-duration) linear forwards;
}

.toast-success .toast-timer {
  background: rgb(255, 255, 255);
}

.toast-warning .toast-timer {
  background: rgb(0, 0, 0);
}

.toast-danger .toast-timer {
  background: rgb(255, 255, 255);
}

.toast-fail .toast-timer {
  background: rgb(255, 255, 255);
}

.toast-info .toast-timer {
  background: rgb(255, 255, 255);
}

.toast-primary .toast-timer {
  background: rgb(0, 0, 0);
}

.toast-secondary .toast-timer {
  background: rgb(0, 0, 0);
}

@keyframes timer {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

.toast-success{
    background-color: green;
}
.toast-message-success{
    color: rgb(255, 255, 255);
}
.toast-warning{
    background-color: yellow;
}
.toast-message-warning{
    color: rgb(0, 0, 0);
}
.toast-danger{
    background-color: firebrick;
}
.toast-message-danger{
    color: rgb(255, 255, 255);
}
.toast-fail{
    background-color: maroon;
}
.toast-message-fail{
    color: rgb(255, 255, 255);
}
.toast-info{
    background-color: darkcyan;
}
.toast-message-info{
    color: rgb(255, 255, 255);
}

.toast-primary{
    background-color: greenyellow;
}
.toast-message-primary{
    color: rgb(0, 0, 0);
}

.toast-secondary{
    background-color: darkkhaki;
}
.toast-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-size: 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-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;
}

.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;
}
.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;
}
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);
}

.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 .tools-content-body-subdescription{
    color: #4b4949;
    /* font-style: italic; */
    margin-bottom: 0.5rem;
}
.tools-content-body .tools-content-body-description{
    color: #222;
    font-size: larger;
}
.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;
}

.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{
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.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;
}

.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;
}

/* 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) { }