.inbox-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 65px;
  align-items: center;
}

@media (max-width: 769px) {
  .inbox-container {
    padding: 15px;
    padding-top: 65px;
  }
}

.inbox-tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 25px;
  margin: 0 auto;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.tab-content#activity {
  width: 100%;
}

.tab.active {
  font-weight: bold;
  color: #3bae31;
}

.notif-count {
  width: 100%;
  background: #3bae31;
  color: white;
  padding: 3px 6px;
  border-radius: 50%;
  font-size: 12px;
}

.notification {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px; /* Increased padding for better spacing */
  border-bottom: 1px solid #eee;
  gap: 20px; /* Adding horizontal space between elements */
}

.avatar {
  width: 50px; /* Adjusted avatar size for better proportion */
  height: 50px;
  border-radius: 50%;
  margin-right: 15px; /* Increased right margin for more space */
}

.notification-text {
  flex-grow: 1; /* Allow the text area to take up available space */
}

.post-preview {
  border-radius: 5px;
  width: 70px; /* Slightly larger post preview */
  height: 70px;
  margin-left: 15px; /* Space between text and post preview */
}

.timestamp {
  font-size: 12px;
  color: gray;
}

.comment-text {
  font-style: italic;
  margin-top: 5px;
}

.activity-section {
  margin-bottom: 20px; /* Add margin between activity sections */
}

.notif-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
