/* Responsive Başlıklar */

/* ========== Kapsayıcı ========== */
.home-main .container {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== Ana İçerik ========== */
.main-content {
  flex: 1 1 100%;
  max-width: 100%;
}

/* Geniş ekranda sidebar göster */
@media (min-width: 1024px) {
  .main-content {
    flex: 0 0 75%;
  }

  .sidebar {
    flex: 0 0 25%;
  }
}

/* ========== Reklam Alanları ========== */
.ad-container {
  overflow: hidden;  /* Google'ın yukarı çıktığında verdiği height: auto !important etkisiz kalır */
  position: relative;
}
.ad-container {
  margin: 2rem 0;
}

.ad-container.horizontal {
  text-align: center;
  /* min-height: 300px; */
}

.ad-container.horizontal .adsbygoogle {
  display: block;
  width: 100%;
}


.ad-container.vertical {
  text-align: center;
}

.ad-container.mid {
  /* margin: 2rem auto; */
  text-align: center;
  /* min-height: 110px; */
}


/* ========== Popüler Araçlar ========== */
.popular-tools {
  margin-top: 2rem;
}

.popular-tools .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

/* ========== Modül Listesi ========== */
.module-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .module-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 960px) {
  .module-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Modül Kutusu ========== */
.module-box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s, box-shadow 0.3s;
}

.module-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.module-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--title-color);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.module-title:hover {
  color: #003580;
}

.summary {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* ========== Sidebar ========== */
.sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .sidebar {
    display: block;
  }
}
@media (max-width: 1024px) {
    .home-main .container {
    flex-wrap: wrap;
  }
}



/* ========== breadcrumb ========== */
.breadcrumb {
  background-color: var(--menu-bg-color); /* is-warning rengi */
  padding: 10px 1em;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  /* flex-wrap: wrap; */
  /* padding: 0; */
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb li {
  /* display: flex;
  align-items: center;
  font-size: 14px; */
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 8px;
  color: #999;
}

.breadcrumb a {
  text-decoration: none;
  color: #000000;
}

.breadcrumb a:hover {
  color: #004a99;
}

.breadcrumb .is-active a {
  font-weight: bold;
  color: #333;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 768px) {
  .breadcrumb ol{
    flex-direction: column;
  }
  .breadcrumb a {display: inline-block; padding: 12px 16px;}
}

/* ========== formBg ========== */
.formBg {
  background-color: #fdfdfd;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin: 40px auto;
}


.formBg #formBuilder {
  margin: 20px 0;
}

.formBg .is-grouped-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.formBg .radio-group .formbuilder-radio {margin-bottom: 0.5em;}
.formBg .radio-group .formbuilder-radio input{width:20px;height: 20px;}
.formBg .button {
  padding: 12px 24px;
  font-size: 16px;
  width: 100%;
  background-color: var(--button-bg-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.formBg .button:hover {
  background-color: #005bb5;
}

.formBg .is-centered {
  display: block;
  margin: 0 auto;
}


/* ========== sonucBg ========== */
.sonucBg {
  background-color: #fefefe;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  text-align: center;
}

#loading2 {
  margin: 20px auto;
  display: block;
}

.sonucBg .table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

.sonucBg table#sonucTable {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 15px;
  min-width: 300px;
}

.sonucBg table#sonucTable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.sonucBg table#sonucTable tbody tr:hover {
  background-color: #f1f1f1;
}

.sonucBg table#sonucTable td, table#sonucTable th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  width: auto;
}
.sonucBg table#sonucTable td, table#sonucTable td {
  text-align: right;
}

.sonucBg .source-link {
  margin-top: 20px;
}

.sonucBg .source-link a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

.sonucBg .source-link a:hover {
  text-decoration: underline;
}



/* ========== icindekilerBg ========== */
.icindekilerBg {
  background-color: #fefefe;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}

.icindekilerBg nav ul {
  list-style-type: disc;
  padding-left: 20px;
}

.icindekilerBg nav li {
  margin-bottom: 8px;
}

.icindekilerBg nav a {
  text-decoration: none;
  color: #0073e6 !important;
  font-weight: 500;
}

.icindekilerBg nav a:hover {
  text-decoration: underline;
  color: #005bb5;
}


/* ========== tavsiyeBox ========== */
.tavsiyeBox {
  background-color: #fefefe;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}

.tavsiyeBox .title {
  font-size: 20px;
  margin: 10px 0;
  color: #1b3d2f;
  display: block;
}

.tavsiyeBox .tavsiye-link {
  display: inline-block;
  margin-top: 10px;
  color: #0073e6;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tavsiyeBox .tavsiye-link:hover {
  color: #005bb5;
  text-decoration: underline;
}



/* ========== yaziBg ========== */
.yaziBg {
  background-color: #fefefe;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;

  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

.yaziBg .icerik-html p {
  margin-bottom: 1em;
}

.yaziBg .icerik-html h2,
.yaziBg .icerik-html h3,
.yaziBg .icerik-html h4 {
  display: block;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 20px;
  color: var(--title-color);
}

.yaziBg .icerik-html ul,
.yaziBg .icerik-html ol {
  margin: 1em 0;
  padding-left: 20px;
}

.yaziBg .icerik-html a {
  color: #06f;
  font-weight: bold;
  text-decoration: none;
}

.yaziBg .icerik-html a:hover {
  text-decoration: underline;
}

#loading1, #loading2{
  height:500px;
}


.faq-container {
  background-color: #fefefe;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;

  line-height: 1.7;
  color: #333;
  font-size: 16px;
}
.faq-container .section-title {
  display: block;
  margin-bottom: 0.5em;
  font-size: 20px;
  color: var(--title-color);
}

.faq-container .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-container .faq-item:last-child {
    border-bottom: none;
}

.faq-container .faq-question {
    font-size: 1.2em;
    color: #333;
    cursor: pointer;
    margin: 0;
    padding: 10px 0;
}

.faq-container .faq-answer {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}
.manual-form{position: relative;}
.manual-form .manual-content{pointer-events: none;}
.manual-form .manual-content.blur{filter: blur(2px);}
.manual-form label.formbuilder-number-label {
    display: block;
}
.manual-form .form-control {
    padding: 0.5em;
    width: 100%;
    margin-bottom: 0.5em;
}
.manual-form .loading-message {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    align-content: center;
}