/* Genel ayarlar */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
}

/* Kapsayıcı */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
}

/* Üst bar */
.topbar {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand {
  font-weight: bold;
  color: #0b6efd;
}
.search-wrap {
  flex: 1;
}
.search-wrap input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.top-actions {
  display: flex;
  gap: 8px;
}
.link {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
.btn {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary {
  background: #0b6efd;
  color: #fff;
}

/* Kategoriler */
.categories {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-top: 1px solid #eee;
}
.cat {
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* Gizleme */
.hidden {
  display: none !important;
}

/* Kart */
.card {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999; /* modalın üstte kalması için */
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* Checkbox */
.checkbox {
  display: block;
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .categories {
    flex-wrap: wrap;
  }
}