:root {
  --sidebar-w: 260px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #0d6efd;
  color: #fff;
  padding: 12px 18px;
}

main {
  display: flex;
  gap: 20px;
  padding: 18px;
  flex: 1;
  background: #f8f9fa;
  flex-wrap: wrap;
}

.left-aside {
  width: var(--sidebar-w);
}

.sidebar {
  background: #343a40;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  height: 100%;
  box-sizing: border-box;
}

.sidebar h5 {
  margin: 0 0 10px 0;
  text-align: center;
  border-bottom: 1px solid #495057;
  padding-bottom: 8px;
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: #ddd;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: background 0.2s ease;
}

.cat-item:hover,
.cat-item.active {
  background: #495057;
  color: #fff;
}

.cat-item .meta {
  margin-left: auto;
  font-weight: 600;
  background: #0d6efd;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 13px;
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.right-aside {
  width: 260px;
}

#map {
  height: 480px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#listeSonuc {
  margin-top: 12px;
}

.small-muted {
  font-size: 12px;
  color: #999;
}

footer {
  background: #212529;
  color: #fff;
  padding: 10px 18px;
  text-align: center;
}

.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107;
}

.card-body h2 {
  font-weight: 600;
  font-size: 2rem;
}

.card-body p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.kategori-bar {
  border-top: 1px solid #444;
}

.kategori-btn:hover,
.kategori-btn.active {
  background-color: #0d6efd;
  color: #fff;
}

.filter-bar {
  background-color: #f0f2f5;
}

.kategori-bar {
  overflow-x: auto;
  padding-bottom: 4px;
}

.kategori-btn {
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.kategori-btn:hover,
.kategori-btn.active {
  background-color: #0d6efd;
  color: #fff;
}

@media (max-width: 980px) {
  main {
    flex-direction: column;
    padding: 12px;
  }

  .left-aside,
  .right-aside {
    width: 100%;
  }

  #map {
    height: 360px;
  }
}@charset "utf-8";
/* CSS Document */

