/* CSS Document */
a{
	text-decoration: none;
}
.sifremiunuttum{
	font-style: italic;
	color: black;
	font-size: 12px;
}
body, html {
  background-color: #f5f5f5; /* Açık gri zemin */
  margin: 0;
  padding: 0;
}

.header-bar {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  gap: 10px;
}
  /* Select2'de gösterilen seçili metni sola hizala */
/* Select2 seçili alanın sola hizalanması */
  .select2-selection__rendered {
    text-align: left !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    line-height: 38px !important; /* input ile hizalanması için */
  }

  /* Select2 container boyutu, form-control ile aynı görünüm için */
  .select2-container .select2-selection--single {
    height: 42px !important;  /* Bootstrap input yüksekliği ile uyumlu */
    border: 1px solid #ced4da !important;
    border-radius: 5px !important;
  }

  .select2-selection__arrow {
    height: 48px !important; /* ok ikonunun hizalanması */
  }

  /* Açılır listede sola hizalama */
  .select2-results__option {
    text-align: left !important;
  }
 

  /* Telefon input container'ı uyumlu hale getir */
  .iti {
    width: 100% !important;
  }

  /* Telefon input'un padding ve fontunu optimize et */
  .iti input[type="tel"] {
    width: 100% !important;
    padding-left: 85px !important; /* bayrak ikonuna yer bırakır */
    height: 45px !important;
    font-size: 16px;
    border-radius: 6px;
  }

  /* Dropdown listesi düzgün çıkmalı */
  .iti__country-list {
    z-index: 9999 !important;
    max-height: 200px;
    overflow-y: auto;
  }

  /* Bayrak butonu hizalama */
  .iti__flag-container {
    top: 8px !important;
  }

  /* Form içindeki boşlukları iyileştir */
  #loginForm .form-group {
    margin-bottom: 15px;
  }

  /* Mobil görünüm düzeltmesi */
  @media (max-width: 480px) {
    .iti input[type="tel"] {
      font-size: 14px;
    }
  }

.profil-karti {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      max-width: 450px;
      margin: auto;
      overflow: hidden;
    }

    .profil-header {
      background-color: #e8e8e8;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .profil-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .profil-info {
      flex-grow: 1;
    }

    .profil-info p {
      margin: 0;
      font-size: 14px;
    }

    .profil-zaman {
      font-size: 12px;
      text-align: right;
    }

    .profil-icerik {
      padding: 15px;
    }

    .btn-yellow {
      background-color: #FFD700;
      color: black;
      border: none;
      border-radius: 8px;
      padding: 12px;
      font-weight: bold;
      cursor: pointer;
      width: 100%;
      margin: 10px 0;
    }

    .bilgi-grubu {
      margin: 15px 0;
    }

    .bilgi-baslik {
      font-weight: bold;
      color: #444;
    }

    .bilgi-icerik {
      font-size: 14px;
      color: #222;
      margin-top: 5px;
    }

    .dropdown {
      background-color: #FFD700;
      border: none;
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      font-weight: bold;
      text-align: left;
      margin-bottom: 10px;
      cursor: pointer;
    }

