/* ===== Dark Mode Modern Responsive Stil ===== */

body {
  background: #121212;
  color: #e0e0e0;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h3, h2, h1, caption {
  color: #f1f1f1;
  text-align: center;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #1e1e1e;
  color: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}

thead th {
  background: #2a2a2a;
  color: #ffffff;
  font-weight: 600;
  padding: 12px;
}

tbody td {
  border-bottom: 1px solid #333;
  padding: 10px;
}

tfoot th {
  background: #2a2a2a;
  padding: 10px;
  text-align: center;
}

/* Alternatif satır rengi */
tr:nth-child(even) {
  background-color: #181818;
}

/* Hover efekti */
tr:hover {
  background-color: #252525;
}

/* Formlar */
select, input[type="text"], input[type="date"], input[type="number"] {
  width: 100%;
  background: #202020;
  color: #f1f1f1;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 8px 10px;
  margin-top: 4px;
}

select:focus, input:focus {
  border-color: #00adb5;
  outline: none;
}

/* Görsel alan */
#Malepicture, #Femalepicture {
  text-align: center;
  margin: 10px 0;
}

#Malepicture img, #Femalepicture img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255,255,255,0.08);
}

/* Butonlar */
.button {
  background: linear-gradient(135deg, #333, #111);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.button:hover {
  background: linear-gradient(135deg, #00adb5, #007b83);
}

/* Sonuç alanı */
#result2Embed {
  background: #1a1a1a;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  overflow-x: auto;
  color: #e0e0e0;
}

/* Başlık alanları */
caption {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00adb5;
  margin-bottom: 10px;
}

/* Mobil uyum */
@media (max-width: 768px) {
  table, tbody, thead, tfoot, tr, td, th {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 10px;
    border-bottom: 2px solid #2a2a2a;
  }

  td {
    text-align: left;
    padding-left: 10px;
  }

  select {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    margin-bottom: 10px;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Eğer temanda main yoksa wrapper ya da content alanını kullan */
#main {
  flex: 1;
}
/* Modern bilgi kutusu stili */
.info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e1e1e, #262626);
  border-left: 4px solid #00adb5;
  color: #e0e0e0;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 173, 181, 0.2);
  margin: 15px auto;
  max-width: 500px;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 173, 181, 0.35);
}

.info-icon {
  font-size: 1.4rem;
  color: #00adb5;
  flex-shrink: 0;
}

.info-text {
  line-height: 1.4;
}

@media (max-width: 600px) {
  .info-box {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}
