#yaris-tabs {
    padding: 20px;
}
.tab-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.tab-menu li {
    list-style: none;
    background: #eee;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
}
.tab-menu li.active {
    background: #ccc;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-menu {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  justify-content: center;
}
.tab-menu li {
  padding: 10px 15px;
  background: #eee;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.tab-menu li.active {
  background: #000;
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* === HARİTA === */
#harita-container {
  width: 100%;
  height: 75vh;
  min-height: 400px;
}
.leaflet-container {
  height: 100% !important;
  width: 100% !important;
}

/* === PROFİL === */
#profil-chart {
  overflow-x: auto;
}
.profil-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.profil-wrapper canvas {
  display: block;
  width: 1200px !important;
  height: 600px !important;
  max-width: unset !important;
  max-height: unset !important;
  image-rendering: crisp-edges;
}

/* === CSV === */
.csv-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
.csv-table th, .csv-table td {
  border: 1px solid #ccc;
  padding: 8px;
  white-space: nowrap;
  font-size: 14px;
  text-align: center;
}

