 /* Genel input ve select tasarımı */
  /* .custom-input, .custom-select {
    width: 200px;
    padding: 8px;
    font-size: 16px;
    margin-bottom: 10px;
  } */

  /* Select öğesinin varsayılan görünümünü kaldır */
  .custom-select {
    appearance: none; /* Tarayıcı varsayılan oku kaldır */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    cursor: pointer;
  }

  /* Select'in açılır liste stili */
  .custom-dropdown-select {
    position: absolute;
    width: 200px;
    background-color: #444; /* Arka plan rengi */
    color: white; /* Yazı rengi */
    border: 1px solid #ddd;
    display: none; /* Başlangıçta gizli */
    z-index: 1000;
    max-height: 120px; /* En fazla 3 öğe görünecek */
    overflow-y: scroll; /* Kaydırmayı aktif et */
  }

  /* Kaydırma çubuğunu gizle */
  .custom-dropdown-select::-webkit-scrollbar {
    display: none;
  }

  .custom-dropdown-select {
    -ms-overflow-style: none; /* Internet Explorer ve Edge */
    scrollbar-width: none; /* Firefox */
  }

  /* Liste öğeleri */
  .custom-dropdown-select div {
    padding: 10px;
    cursor: pointer;
  }

  /* Üzerine gelindiğinde arka plan rengi */
  .custom-dropdown-select div:hover {
    background-color: #666;
  }