* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  padding-bottom: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin-top: 0;
  border-bottom: 1px solid #ccc;
}

nav a {
  margin-right: 10px;
}

nav i.fa-home,
nav i.fa-users,
nav i.fa-bell,
nav i.fa-play-circle,
nav i.fa-shopping-cart {
  font-size: 20px;
  color: black;
}

nav i.fa-facebook-messenger {
  color: blue;
  font-size: 20px;
}
nav i.fa-users:active,
nav i.fa-comment:active,
nav i.fa-bell:active,
nav i.fa-play-circle:active,
nav i.fa-shopping-cart:active,
nav i.fa-home:active {
  transform: scale(0.9);
}

.message-settings-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding: 10px;
  padding-top: 15px;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}

.message-title {
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin-left: 7px;
}

.settings-search {
  display: flex;
  align-items: center;
}

.settings-icon,
.search-icon {
  font-size: 18px;
  color: black;
  cursor: pointer;
}

.settings-circle,
.search-circle {
  background-color: #f4f4f4;
  border-radius: 50%;
  padding: 10px;
  margin: 0 5px;
}

.active-section {
  overflow-x: auto;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-top: 110px;
  display: flex;
}

.active-slide {
  background-color: transparent;
  width: 50px;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
  left: 10px;
  flex: 0 0 auto;
}
.green-dot {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #4caf50;
  border: 2px solid white;
  border-radius: 50%;
}
.story-content,
.profile-pic {
  width: 100%;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.active-info {
  text-align: center;
}
.active-content {
  width: 100%;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.blue-story {
  border: 4px solid #1877f2;
}

.add-section {
  text-align: center;
}

.add-to-story {
  font-size: 10px;
  color: black;
  margin-top: 5px;
}

.active-info {
  text-align: center;
}

.active-name {
  font-size: 12px;
  color: black;
}
.image-icon-container {
  width: 50px;
  height: 50px;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
}

.image-icon-container i {
  font-size: 18px;
  color: #ccc;
}

.blue-circle {
  background-color: #1877f2;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.blue-circle i {
  color: white;
  font-size: 8px;
  text-align: center;
  line-height: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px;
}

.user {
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: space-between;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-info {
  flex-grow: 1;
}

.user-name {
  font-size: 16px;
  font-weight: 500;
}

.random-message {
  font-size: 14px;
  color: gray;
}

.icons {
  display: flex;
  align-items: center;
}

.blue-tick {
  color: #1877f2;
  font-size: 15px;
  margin-right: 5px;
}
