 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;
    }


    /* 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: 400px;
      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;
    }
    .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: black;
      text-decoration: underline;
      font-size: 0.85rem;
      line-height: 1.5;
    }
 

    

    /* Mobil uyum */
    @media (max-width: 480px) {
      .yorum-form {
        padding: 12px;
      }
      .remember-me {
        font-size: 0.8rem;
      }
    }
    
    
     input,
text,
select {
    font-size: 16px !important; /* Mobil zoom engelleme */
    -webkit-text-size-adjust: 100%; /* iOS otomatik font büyütmesini kapatır */
}

