/* Sayfa Arka Planı */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  padding: 20px;
  margin: 0;
}

/* Ana Başlık */
h1 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #0047ab;
  position: relative;
}
h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Kategori Kutusu */
.etiket {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Kategori Başlıkları */
.etiket h2 {
  font-size: 1.2em;
  text-align: left;
  margin-bottom: 12px;
  color: #333;
  border-left: 4px solid #007bff;
  padding-left: 10px;
}

/* Dosya Kartları */
.dosya-karti {
  border: 1px solid #ddd;
  padding: 10px;
  margin: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 6px;
  background-color: #f9f9f9;
}

/* Kart Görseli */
.dosya-karti img {
  width: 100px;
  height: auto;
  border-radius: 4px;
}

/* Arama Kutusu */
.arama {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

#aramaKutusu {
  width: 100%;
  max-width: 500px;
  padding: 14px 20px 14px 48px;
  font-size: 18px;
  color: #ff0000;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(4, 0, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2300ffe7" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 20l-5.2-5.2a7 7 0 10-1 1L20 21l1-1zM4 10a6 6 0 1112 0A6 6 0 014 10z"/></svg>');
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 16px center;
  transition: all 0.3s ease;
  outline: none;
}
#aramaKutusu::placeholder {
  color: rgba(255, 0, 0, 0.6);
}
#aramaKutusu:focus {
  border-color: #00ffe7;
  box-shadow: 0 0 10px #00ffe7;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Tümünü Göster Butonu */
.tumunu-goster {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}
.tumunu-goster:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Etiket Rozeti */
.etiket-badge {
  display: inline-block;
  background-color: #eaf4ff;
  color: #007bff;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.8em;
  margin-top: 6px;
}

/* Uyarı Alanı */
#uyari {
  display: none;
  color: red;
  font-weight: bold;
  margin-top: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .dosya-karti {
    flex-direction: column;
    align-items: flex-start;
  }

  .dosya-karti img {
    width: 100%;
    max-width: 200px;
  }

  #aramaKutusu {
    font-size: 16px;
    padding: 12px 18px 12px 42px;
    background-size: 18px;
    background-position: 12px center;
  }

  p {
    font-size: 1em;
    line-height: 1.5;
  }

  h1 {
    font-size: 1.5em;
  }
}
  .dual-menu {
      display: flex;
      justify-content: center;
      gap: 20px;
      max-width: 400px;
      margin: auto;
    }

    .dual-menu a {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
      min-height: 70px;
    }

    .dual-menu a:hover {
      background: #fff7e6;
      transform: scale(1.05);
    }

    .dual-menu i {
      font-size: 32px;
      margin-bottom: 4px;
    }

    .home { color: #ff5722; }
    .fast { color: #4caf50; }

    .dual-menu span {
      font-size: 14px;
      color: #333;
    }

    @media (max-width: 480px) {
      .dual-menu i {
        font-size: 28px;
      }

      .dual-menu span {
        font-size: 12px;
      }
    }