.room-dashboard-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;

  padding: 10px;

  background-color: transparent;
}

.room-title-bar {
  width: 100%;
  height: 9%;
  min-height: 50px;

  font-weight: bold;
  font-size: 20px;
  color: white;

  background-color: var(--panel-background-color);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  /*margin-padding*/
  padding: 10px;

  /*border attributes*/
  border: 2px rgba(255, 255, 255, 0.3) solid;
  border-radius: 40px;

  /*flex box*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.room-dashboard-back-button {
  width: 30px;
  height: 30px;
  background-image: url("../../assets/icons/forward.svg");
  transform: scale(-1);
}


.room-dashboard-back-button:hover {
  transform: scale(-120%);
}

.room-name {
  font-size: 20px;
  font-weight: bold;
}

.room-address-title-bar {
  display: none;
  font-size: 15px;
  overflow-wrap: break-word;
}

.copy-room-hash-room-dashboard {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  background-image: url("../../assets/did_eclipse.png");
  transform: translateY(-50%);
  cursor: pointer;
}

.copy-room-invite-room-dashboard {
  position: absolute;
  top: 50%;
  right: 80px;
  width: 40px;
  height: 40px;
  background-image: url("../../assets/dashboard/copy_invite.png");
  transform: translateY(-50%);
  cursor: pointer;
}

.copy-room-hash-room-dashboard:hover,
.copy-room-invite-room-dashboard:hover {
  transform: scale(110%) translateY(-50%);
}

/*room menu*/
.room-top-menu {
  width: 100%;
  height: 6%;
  min-height: 50px;

  padding-right: 20px;
  margin-top: 1%;
  margin-bottom: 1%;

  background-color: var(--panel-background-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  border-radius: 40px;
  border: 2px rgba(255, 255, 255, 0.3) solid;

  /*felxbox*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.room-top-menu-button {
  /*size*/
  height: 30px;
  width: 30px;
  margin-left: 10px;
  margin-right: 10px;

  /*flex box*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.load-more-messages {
  background-image: url("../../assets/room/Icon_chat.svg");
}

.add-room-contact-button {
  background-image: url("../../assets/room/icon_con_add.svg");
}

.delete-room-contact-button {
  background-image: url("../../assets/room/icon_con_delete.svg");
}

.start-call-in-room {
  background-image: url("../../assets/room/Vector.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.margin-left-5px {
  margin-left: 5px;
}

.room-top-menu-button:hover {
  transform: scale(110%);
}

.room-chat-list {
  /*size*/
  width: 100%;
  height: 80%;

  /*border attr*/
  background-color: transparent;
  overflow-y: scroll;

  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.room-chat-list::-webkit-scrollbar {
  display: none;
}

.room-message-form {
  /*size*/
  width: 100%;
  height: 9%;

  background-color: var(--panel-background-color);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  /*font*/
  color: white;

  /*margin*/
  padding: 10px;
  margin-top: 1%;

  /*flex box*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;

  /*border attr*/
  border-radius: 40px;
  border: 2px rgba(255, 255, 255, 0.3) solid;
}

.room-text-message-input {
  /*size*/
  width: 70%;
  height: 90%;
  min-height: 50px;

  font-size: 20px;
  color: white;
  padding: 3px;

  /*border*/
  border: var(--white-border);
  border-radius: 10px;

  background-color: transparent;

  resize: none;
}

.room-text-message-input:hover {
  border: var(--white-border);
}

.room-message-button {
  /*size*/
  height: 35px;
  width: 35px;

  /*radius*/
  border: var(--white-border);
  color: white;
  border-color: white;

  /*flex box*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  margin-right: auto;
}

.room-send-file-button {
  background-image: url("../../assets/icons/file_send.png");
}

.room-send-message-button {
  background-image: url("../../assets/icons/send.png");
}

.room-message-button:hover {
  transform: scale(110%);
}

/*for desktop*/
@media (min-width:600px) {
  .room-dashboard-panel {
    width: 40%;
    min-width: 600px;
    height: 100%;
    min-height: 600px;
  }
}

/*for mobile*/
@media (max-width:600px) {
  .room-dashboard-panel {
    width: 100%;
    height: 100%;
  }
}