.msg-container {
  display: flex;
  width: 100%;
  height: 100vh;
  /* overflow-y: scroll; */
  overflow-y: hidden;
}

/* Sidebar */
.msg-sidebar {
  width: 20%;
  background-color: #000;
  /* height: 100vh; */
  /* overflow-y: auto; */
  margin-left: 90px;
  border-right: 1px solid #333;
  /* overflow: scroll; */
}

.msg-profile {
    padding: 22px 30px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 10px;
  /* margin-bottom: 30px; */
}
.bi-pencil-square{
    font-size: 25px;
}
.msg-profile-info{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 20px;
}
.msg-p{
    font-size: 10px;
    margin-left: 13px;
    color: #a8a8a8;
}

.msg-profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.msg-profile-info h3 {
  font-size: 18px;
}

/* Messages Header */
.msg-header {
    padding: 10px 23px 20px 23px;
  display: flex;
  justify-content: space-between;
  margin:  0;
}

.msg-requests {
  color: gray;
}

/* Messages List */
.msg-list {
  display: flex;
  flex-direction: column;
  height: 70vh;
  margin: 10px 0 10px 0;
  overflow-y: scroll;
  /* scrollbar-color: red; */
  /* padding: 0 10px 0 10px; */
  margin-bottom: 15px;
}
::-webkit-scrollbar {

    -webkit-appearance: none;
    width: 10px;
    /* display: none; */
    background-color: rgb(44, 44, 44);
  
  }
  
  ::-webkit-scrollbar-thumb {
  
    background-color: rgb(209, 209, 209);
    border-radius: 50px;
  
  }
.msg-item {
  display: flex;
  align-items: center;
  padding: 14px 8px;
  cursor: pointer;
  position: relative;
}

.msg-item img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 50%;
}

.msg-item-info h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 5px;
}

.msg-item-info p {
  margin: 2px 0;
  font-size: 11px;
  color: gray;
}

.msg-unread {
  width: 8px;
  height: 8px;
  background-color: rgb(0, 149, 246);
  border-radius: 50%;
  position: absolute;
    right: 10px;
}

/* Message Box (Right Side) */
.msg-chatbox {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.msg-empty {
  text-align: center;
}
.msg-empty p{
    margin: 10px 0;
    color: #a8a8a8;
    font-size: 14px;
}


.msg-empty img {
  width: 100px;
}

.msg-empty h2 {
  font-size: 20px;
  margin: 10px 0;
}

.msg-empty button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 8px;
}

.msg-empty button:hover {
  background-color: #0056b3;
}
.msg-item:hover{
  background-color: rgb(18, 18, 18);
}