body {
  background: #111;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  width: 375px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.header {
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 1.6em;
  font-weight: bold;
  border-bottom: 1px solid #d3d3d3;
}

.header span {
  margin-left: 8px;
  font-size: 1.3em;
}

.stories {
  display: flex;
  padding: 16px 8px 8px 8px;
  overflow-x: auto;
  background: #fff;
  scrollbar-width: none;
}

.stories::-webkit-scrollbar {
  display: none;
}

.story {
  flex-shrink: 0;
  width: 60px;
  margin-right: 12px;
  text-align: center;
}

.story .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #d02c77;
  display: block;
  margin: 0 auto 4px auto;
  object-fit: cover;
}

.story-name {
  font-size: 0.78em;
  margin-top: 2px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggested {
  font-size: 0.9em;
  color: #888;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.suggested button {
  margin-left: 8px;
  padding: 2px 10px;
  border: none;
  background: #3897f0;
  color: #fff;
  font-size: 0.9em;
  border-radius: 6px;
  cursor: pointer;
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.post-user {
  display: flex;
  align-items: center;
}

.avatar.small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  border: 2px solid #d02c77;
}

.follow-btn {
  background-color: #3897f0;
  color: white;
  font-size: 0.85em;
  padding: 5px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.menu{
    font-size: 22px;
    cursor:pointer;
    float:right;
}

.post-image {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eee;
}

.actions {
  display: flex;
  align-items: center;
  padding: 10px 16px 6px 16px;
  font-size: 1.5em;
}

.actions span {
  margin-right: 18px;
  cursor: pointer;
}

.caption-section {
  padding: 0 16px 16px 16px;
  font-size: 1em;
  color: #333;
}

.caption-section .username {
  font-weight: bold;
  margin-right: 8px;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  background: #fff;
}

.bottom-nav i {
  font-size: 1.9em;
  color: #444;
  cursor: pointer;
}