body {
  background-color: #000;
  color: #fff;
}
.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid gray;
  object-fit: cover;
}
.story-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #222;
}
.story-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.feed img {
  width: 100%;
  height: 300px; /* bikin semua gambar sama tinggi */
  object-fit: cover; /* potong gambar biar nggak ketarik */
  border-radius: 5px; /* opsional biar sudut halus */
}
.tab-icon {
  font-size: 1.5rem;
}
.bottom-nav {
  border-top: 1px solid #333;
  background-color: #000;
}
