.agent-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 14px 10px 10px 10px;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 15px;
  color: black;
  background: #e7e6e6;
  border-radius: 8px;
}

.agent-info-second {
  font-weight: 600;
}

#end-convo-button {
  font-size: 14px;
  padding: 4px 3px 0px 4px;
  position: absolute;
  bottom: 70px;
  right: 10px;
  border: none;
  border-radius: 8px;
  background-color: #0068d8;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0.7;
}

#end-convo-button:hover {
  background-color: #0056b3;
}

.inactive-hours-notification {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: black;
  background: #e7e6e6;
  padding: 25px;
  margin-bottom: 30px;
  font-size: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.inactive-info-hide {
  position: absolute;
  top: 8px;
  right: 10px;
  background-color: transparent;
  border: none;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.human-agent-selector-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.human-agent-selection-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f6f5f5;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select-language {
  width: 180px;
  color: black;
  word-break: break-word;
  text-align: center;
  margin-bottom: 10px;
  font-size: 15px;
  width: 100%;
  font-weight: 600;
}

.human-agent-options-btn {
  margin: 10px;
  padding: 10px 20px;
  width: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #107703;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.human-agent-options-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.human-agent-options-btn:active {
  transform: scale(0.95);
  background-color: #003f7f;
}

.human-agent-options-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.requested-for-agent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px 10px 10px;
  background: #e7e6e6;
  font-size: 15px;
  color: black;
  border-radius: 8px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.language-options-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 15px;
}

.language-options {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px 20px 10px 20px;
  color: black;
  background: #e7e6e6;
  border-radius: 8px;
  max-width: 220px;
}

.language-btn {
  margin: 10px;
  padding: 10px 20px;
  width: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #107703;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.language-btn:disabled {
  opacity: 0.5;
}

.user-info-for-agent-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 14px 10px 10px 10px;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 15px;
  color: black;
  background: #e7e6e6;
  border-radius: 8px;
  gap: 8px;
}

.user-info-for-agent-title {
  margin-bottom: 0px;
  margin-top: 3px;
}

.user-info-input {
  padding-top: 4px;
  width: 80%;
}

.user-info-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.user-data-send-button {
  padding: 7px 10px 5px 10px;
  color: #fff;
  background-color: #107703;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 5px;
}

.user-data-send-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.user-data-skip-button {
  padding: 7px 10px 5px 10px;
  color: #fff;
  background-color: #545454;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  margin-bottom: 5px;
}

.user-info-button-group {
  display: flex;
  gap: 20px;
}

.user-data-skip-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
