* {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: black;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
}
.main-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: blueviolet;
  /* display: flex;
  flex-direction: column; */
  /* justify-content: center;
  align-items: center; */

  /* padding-top: 20px;
  padding-bottom: 20px; */
}

.navbar {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgba(52, 6, 95, 0.815);
}
.navbar-brand {
  border: transparent;
  border-radius: 70px;
  display: flex;
  align-content: center;
  align-items: center;
}
.navbar-img {
  border: transparent;
  border-radius: 70px;
}
.nav {
  width: 15%;
  list-style-type: none;
  justify-content: space-around;
  display: flex;
  align-content: center;
  align-items: center;
}
.nav-item {
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  height: 100%;
  padding: 2%;
  cursor: pointer;
}
.nav .nav-item :hover {
  background-color: rgba(106, 66, 144, 0.815);
}
.nav-link i {
  font-size: 25px;
  color: white;
}
.container {
  width: 100%;
  height: 590px;
  background-color: rgb(106 66 144 / 82%);
  display: flex;
}
.body-container {
  width: 50%;
  height: 100%;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 0.5px;
  background-color: rgb(189, 182, 182);
  overflow-x: hidden;
  overflow-y: auto;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.body-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.body-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.chat-container {
  width: 50%;
  height: 100%;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 0.5px;
  background-color: rgb(189, 182, 182);
}
.chat-box {
  position: relative;
  height: 590px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(189, 182, 182);
  padding: 3px 0px 3px 0px;
  border: transparent;
  border-radius: 3px;
  overflow-x: hidden;
  overflow-y: auto;
  align-items: flex-end;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.chat-box::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.chat-box {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.chat {
  display: flex;
  height: 80%;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  margin-bottom: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  /* justify-content: flex-end; */
}
.chat-header {
  height: 10%;
  width: 100%;
  display: flex;
  background-color: rgba(52, 6, 95, 0.815);
  border-radius: 4px;
  justify-content: flex-end;
}
.chat-nav {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 50%;
  background-color: rgb(179, 130, 224);
  margin: 0;
  z-index: 10;
  align-items: flex-end;
  padding-right: 20px;
  margin-top: 8%;
}
.chat-navitem {
  display: flex;
  z-index: 10;
}
.msg {
  height: auto;
  width: auto;
  border: transparent;
  border-radius: 5px;
  margin: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.end-user {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  background-color: rgb(186, 180, 180);
}
.this-user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: rgb(226, 222, 222);
}
.msg i {
  margin: 5px;
}
.chat-footer {
  height: 10%;
  width: 100%;
  display: flex;
  background-color: rgba(52, 6, 95, 0.815);
  border-radius: 4px;
}
/* .msg {
} */

.input-group {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}
.btn,
.ipt {
  border: transparent;
  height: 80%;
  /* margin: 0 5px 0 5px; */
  border-radius: 5px;
}
.ipt {
  margin: 0 5px 0 5px;
  width: 90%;
  color: rgb(33, 32, 32);
  font-size: 20px;
  padding: 3px;
}
.ipt:focus {
  border: transparent;
}
.btn {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
}
.btn:hover {
  background-color: black;
}
.btn i {
  color: white;
}
.profile-cont {
  width: 100%;
  height: 15%;
  background-color: white;
  margin-top: 3px;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  cursor: pointer;
}
.profile {
  width: 90%;
  display: flex;
  align-items: center;
}
.profile-img {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border: transparent;
  border-radius: 70px;
  padding: 2px;
}
.profile-image {
  border: transparent;
  border-radius: 70px;
}
.profile-menu {
  display: flex;
  align-items: center;
}
.online {
  border: 5px solid green;
}
.busy {
  border: 5px solid red;
}
.idle {
  border: 5px solid yellow;
}
.not-logged {
  border: 5px solid grey;
}
.profile-titles {
  padding-left: 20px;
}
.profile-titles h3,
p {
  margin: 0;
  padding: 0;
}
.profile-menu i {
  font-size: 25px;
  color: rgb(38, 36, 36);
}
.footer {
  width: 100%;
  height: 10%;
  background-color: rgba(52, 6, 95, 0.815);
}
