table {
      border-collapse: collapse;
    }

    th {
      text-align: left;
      font-size: 20px;
      padding-bottom: 10px;
    }

    td {
      padding: 10px;
      text-align: center;
    }

    .kutu {
      position: relative;
      width: 150px;
      height: 225px;
      overflow: hidden;
    }

    .kutu img {
      width: 100%;
      height: 100%;
      transition: transform 0.3s ease, filter 0.3s ease;
      display: block;
    }

    .kutu::after {
      content: attr(data-text);
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 5px;
      color: white;
      background-color: rgba(0, 0, 0, 0.6);
      font-size: 16px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .kutu:hover img {
      transform: scale(1.1);
      filter: brightness(70%);
    }

    .kutu:hover::after {
      opacity: 1;
    }

    .yazi {
      margin-top: 5px;
      font-size: 16px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }
   
   @media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }

  thead {
    display: none; /* Başlığı mobilde gizliyoruz */
  }

  td {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc; /* opsiyonel: hücreleri ayırır */
  }
}

    @media (max-width: 768px) {
  .kaydir {
    overflow-x: auto;
    max-width: 100%;
  }

  .kaydir table {
    min-width: 600px; /* Tablonun genişliğini ayarlayabilirsin */
  }
}
