 html, body{
       height: 100%;
      margin: 0;
    }
  
    body {
      background-color: #f8f9fa;
      font-family: Arial, sans-serif;
       display: flex;
      flex-direction: column;
      min-height: 100vh;
      
    }

    .content{
      flex: 1;
      padding: 10px;
    }
    a {
    text-decoration: none; /* Alt çizgiyi kaldırır */
    color: inherit; /* Yazı rengini bulunduğu yere göre alır (opsiyonel) */
      }

    /* Yorum Formu */
    .yorum-form {
      background: #28a745; /* Açık yeşil */
      color: white;
      padding: 15px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      
      margin: 0 auto;
      max-width: 800px;
      font-size: 0.9rem;
    }
    .yorum-form h4 {
      font-size: 1rem;
      margin-bottom: 12px;
    }
    .yorum-form label {
      font-size: 0.85rem;
    }
    .yorum-form input,
    .yorum-form textarea {
      //font-size: 0.85rem;
      width: 100%;
      min-height: 400px; /* Yorum kutusunu büyütür */
      /*resize: vertical; /* Kullanıcı isterse boyunu değiştirebilir */*/
      overflow-y: auto;
      resize: none;
      
     /* font-size: 0.95rem;*/
      
    }
    .char-counter {
      font-size: 0.75rem;
      color: white;
      text-align: right;
    }
    
    /* Beni hatırla alanı */
    .remember-me {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 12px;
      font-size: 0.85rem;
    }
    .remember-me input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-right: 6px;
    }
    .remember-me a {
      color: white;
      text-decoration: underline;
      font-size: 0.85rem;
    }
 

    

    /* Mobil uyum */
    @media (max-width: 480px) {
      .yorum-form {
        padding: 12px;
      }
      .remember-me {
        font-size: 0.8rem;
      }
    }
    
    
     input,
text,
textarea,
select {
    font-size: 16px !important; /* Mobil zoom engelleme */
    -webkit-text-size-adjust: 100%; /* iOS otomatik font büyütmesini kapatır */
}


