 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) */
      }

    /* Başlık Kartları */
    .baslik-card {
      background: white;
      padding: 10px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      margin-bottom: 12px;
      transition: all 0.3s ease;
      overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
overflow: hidden;
    }
    .baslik-card h5 {
      font-size: 1rem;
      margin-bottom: 6px;

    }
    .baslik-meta {
      font-size: 0.8rem;
      color: #6c757d;
    }

    /* Hover Efekti */
    .baslik-card:hover {
      background: #28a745; /* Açık yeşil */
      color: black; /* Yazılar siyah */
      cursor: pointer;
    }
    .baslik-card:hover .baslik-meta {
      color: #000;
    }

    /* Yorum Formu */
    .yorum-form {
        display: none;
      background: #28a745; /* Açık yeşil */
color: white;
margin: 0 auto;
max-width: 700px;
      padding: 15px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      margin-top: 25px;
      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;
    }
    
     input,
textarea,
select {
    font-size: 16px !important; /* Mobil zoom engelleme */
    -webkit-text-size-adjust: 100%; /* iOS otomatik font büyütmesini kapatır */
}



.upload-container {
    max-width: 500px;
    margin: auto;
    padding: 5px;
    text-align: center;
}

.upload-container h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.file-input {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: auto;
    padding: 4px;
    border: 2px dashed #aaa;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
    color: black;
}

.file-input:hover {
    border-color: #333;
}

/* Önizleme alanı */
.preview {
    margin-top: 15px;
    margin-bottom: 15px;
}

.preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ccc;
}



#toggleBtn {
        display: block;
        margin: auto;
        padding: 6px 25px;
        background-color: #28a745;
        color: white;
        font-size: 14px;
        font-weight: bold;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    #toggleBtn:hover {
        background-color: black; /* Hover mavi */
    }
    
    /* Responsive */
    @media (max-width: 600px) {
        #toggleBtn {
            font-size: 14px;
            padding: 5px 20px;
        }


 /* 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;
    }




