.chatContainer {
  width: 30vw;
  max-width: 400px;
  min-width: 320px !important; 
  border: 10px solid #ffffff;
  padding: 0px;
  border-radius: 0px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  overflow-y: auto !important;
  position: fixed;
  z-index: 1521;
  bottom: 20px;
  left: 25px;
}

.openChatBtn {
  border: none !important;
  background-color: transparent !important;
  height: 100px;
  width: 100px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 0px;
  border-radius: 50% !important;
  position: fixed; /* Allow button to be positioned anywhere on the screen */
  cursor: grab;       /* Show a grab cursor when hovering over the button */
  z-index: 1060;
  bottom: 20px;
  left: 25px; 
}

.chatHeader {
  background-color: #39a944 !important;
  border-radius: 0px !important;
  border: none;
  height: 70px;
  color: #ffffff;
  align-items: center;
  display: flex;
  justify-items: flex-end;
  padding: 0px !important;
  font-weight: 700;
  font-size: 20px !important;
  margin: 0px;
  position: fixed;
  z-index: 1022;
  width: calc(30vw - 20px);
  min-width: 300px !important; 
  max-width: 380px !important;
}

.chatBody {
  display: flex;
  top: 70px;
  flex-direction: column;
  background-color: #e6e6e6;
  min-height: 300px;
  overflow: auto;
  width: 100%;
  border: none !important;
  border-radius: 0px !important;
  padding: 75px 10px 10px 10px;
}

.chatFooter {
  width: 100%;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  border-radius: 0px !important;
  padding: 0px !important;
}

.messageDatetime {
  backdrop-filter: blur(5px);
  font-size: 12px;
  color: #707070;
  margin: 0px;
  display: block;
}

.alert_white {
  background-color: #ffffff;
  color: #000000;
}

.alert_success {
  background-color: #39a944;
  color: #ffffff;
}

.alert_white,
.alert_success {
  border-radius: 5px !important;
  padding: 10px;
  margin-bottom: 10px;
}

.chatInputContainer {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40px;
  padding-right: 5px;
}

.chatInput {
  margin: 0px 0px 10px 10px !important;
  display: inline-block !important;
  width: calc(100% - 50px) !important;
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border-color: #ffffff !important;
  border: none;
  height: 34px;
  padding-left: 10px;
}

.chatBtnSend {
  border: none;
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #707070;
  height: 34px !important;
  width: 35px;
}

.chatClose{
  margin: 0 auto !important;
}

.chatMenu,
.chatDown,
.chatClose {
  background-color: transparent !important;
  color: #ffffff;
  border: none !important;
  padding: 5px 10px;
}

.chatMenu:hover,
.chatMenu:focus,
.chatMenu:active,
.chatClose:hover,
.chatClose:focus,
.chatClose:active,
.chatDown:hover,
.chatDown:focus,
.chatDown:active {
  background-color: #ffc107 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  padding: 5px 10px;
}

.chatMenu:hover,
.chatMenu:focus,
.chatMenu:active,
.chatMenu{
  padding: 5px 15px;
}

.chatMenuDropdown {
  position: fixed;
  display: grid;
  border: none !important;
  border-radius: 0px !important;
  z-index: 1023;
  text-align: left !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.chatMenuBtn {
  background-color: #ffffff !important;
  border-radius: 0px !important;
  border: 1px solid #e6e6e6 !important;
  color: #000000;
  margin: 5px;
  text-align: start;
}

.chatMenuBtn:hover,
.chatMenuBtn:focus,
.chatMenuBtn:active {
  background-color: #e6e6e6 !important;
  color: #000000;
}


.voteChatBtns {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    width: 100%;
    margin: 15px 0px;
}

.btnOtlined { 
  border: 2px solid #e6e6e6 !important; 
  background-color: #ffffff; 
  color: #707070;
}

.btnOtlined:hover 
{
  background-color: #e6e6e6 !important; 
  color: #000000 !important;
}

.btnSuccess { 
  border: 2px solid #39a944 !important; 
  background-color: #39a944; 
  color: #ffffff;
}

.btnSuccess:hover 
{
  background-color: #ffffff !important; 
  color: #39a944 !important;
}

.btnOtlined,.btnSuccess {
  text-transform: none;
  font-weight: 700;
  font-size: 13px;
}

.valueContainer {
  background-color: #e6e6e6;
  padding: 40px 0px;
  text-align: center;
}

.voteStar {
  color: #39a944 !important;
  cursor: pointer;
  font-size: 3rem;
}