.timeline-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: none;
  z-index: 999999;
}

.timeline-overlay.active {
  display: none;
}

.timeline {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}


.timeline-header {
  height: 60px;
  width: 100%;
  position: fixed;
  background-color: var(--bg-primary);
  display: flex;
  padding: 0 12px;
}

.area-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.timeline-header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.timeline-title {
  font-size: 0.9rem;
  color: #aaa;
}

.timeline-username {
  font-weight: bold;
  font-size: 1rem;
  text-transform: lowercase;
}

.timeline-btn {
  width: 100%;
  height: 100%;
  display: flex;
}

.timeline-btn button {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  height: 100%;
  aspect-ratio: 1/1;
  border: none;
}

.timeline-posts {
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 60px 0 80px 0;
}

.timeline-post {
  padding: 20px;
}

