body {
  background-color: rgb(248, 248, 248);
}
.container-fluid {
  display: flex;
}
.navbar {
  overflow: hidden;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  margin-left: -15px;
  padding: 0;
  border-bottom: 1px solid #e5e7e9;
}

.left-nav {
  flex: 0.4;
}
.right-nav {
  flex: 0.2;
}
.navbar a {
  display: block;
  color: #303030;
  float: left;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 14px;
}

.navbar a:hover {
  background: #f8f9f9;
  color: black;
  border-radius: 20px;
  padding: 10px;
}
.image-top {
  object-fit: contain;
  height: 25px;
  width: 25px;
  margin-top: -5px;
  border-radius: 20px;
}
.logo {
  object-fit: contain;
  height: 50px;
  width: 58px;
  opacity: 0.6;
  margin: 0;
  padding: 0;
}
.sidebar {
  flex: 0.1;
  background-color: white;
  margin-top: 100px;
  margin: 0 10px 0 -20px;
  max-width: 60px;
  padding: 60px 0px 50px 20px;
  border-right: 1px solid #e5e7e9;
  flex-direction: column;
}
.sidebar .sidebar-icon > i {
  margin: 40px 0;
  font-size: 20px;
  color: rgb(228, 126, 126);
}
.sidebar-icon:hover {
  background-color: #f8f9f9;
  padding: 5px;
  border-radius: 10px;
}
.chat {
  flex: 0.2;
  margin-top: 100px;
  margin-right: 10px;
}
.chat .input-search {
  border: none;
  flex: 1;
  margin-left: 10px;
  outline-width: 0;
  font-weight: 600;
}
.chat .box {
  background-color: white;
  padding: 10px;
  overflow: hidden;
}
.user {
  display: flex;
}
.user:hover {
  background-color: rgb(228, 126, 126);
  padding: 5px 0px 0px 5px;
  border-radius: 10px;
}
.user > h4 {
  font-size: 13px;
  padding: 5px;
}
.user .user-image {
  object-fit: contain;
  height: 40px;
  width: 40px;
  border-radius: 20px;
}
.message {
  flex: 0.6;
  background-color: white;
  margin-top: 100px;
  padding: 10px;
}
.message-data {
  background-color: rgb(196, 216, 235);
  padding: 5px;
  border-radius: 10px;
  margin-bottom: -80px;
  max-width: 60%;
}
.my-message {
  background-color: rgb(223, 143, 119);
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 100%;
}
ul li {
  list-style: none;
}

/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 360px) {
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
