@import "https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(60deg, #0d1018, #26232c);
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Roboto, sans-serif;
  display: flex;
}

@media (height <= 710px) {
  body {
    align-items: flex-end;
    padding: 10px;
  }
}

.top-bar {
  color: #fff;
  z-index: 101;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #ffffff15;
  border-radius: 4px;
  align-items: center;
  width: calc(100% - 20px);
  height: 60px;
  padding: 0 20px;
  font-size: 1em;
  display: flex;
  position: absolute;
  top: 10px;
}

.top-bar h3 {
  margin-right: 1em;
}

.box {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.left {
  justify-content: left;
  align-items: center;
  padding: 15px;
  display: flex;
}

.right {
  justify-content: right;
  align-items: center;
  padding: 15px;
  display: flex;
}

.connection-status {
  align-items: center;
  margin-left: auto;
  display: flex;
}

.wallet-status {
  align-items: center;
  display: flex;
}

.status-indicator {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.status-text {
  font-size: 12px;
}

.not-connected {
  background-color: red;
}

.connected {
  background-color: green;
}

#connect-wallet-overlay {
  z-index: 100;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #0d1018b4;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.connect-wallet {
  color: #fff;
  background-color: #2e2f3f54;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0;
  padding: 25px;
  font-family: Roboto, sans-serif;
  display: flex;
}

.fancy button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(90deg, #25c8ff 0%, #7b3a96 100%);
  border: none;
  border-radius: 4px;
  outline: none;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  transition: all .5s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.fancy button:before {
  content: "";
  opacity: 0;
  background: linear-gradient(10deg, #5825ff 0%, #7b3a96 100%);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.fancy button:hover:before {
  opacity: 1;
}

.fancy button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px #0000001a;
}

.fancy button span {
  z-index: 1;
  position: relative;
}

.chat-container {
  background-color: #2e2f3f54;
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  height: 80vh;
  font-family: Roboto, sans-serif;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #00000049;
}

.chat-body {
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  overflow-y: auto;
}

.chat-form {
  background-color: #1d1d1d;
  border-top: 1px solid #333;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
  position: sticky;
  bottom: 0;
}

.chat-header {
  background-color: #ffffff15;
  border-radius: 4px;
  align-items: center;
  width: 100%;
  height: 60px;
  display: flex;
}

.chat-form input {
  background-color: #fff;
  border: none;
  border-radius: 20px;
  outline: none;
  width: 80%;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
}

.chat-form button {
  color: #fff;
  cursor: pointer;
  background-color: #585eb6;
  border: none;
  border-radius: 20px;
  outline: none;
  width: 15%;
  height: 40px;
  font-size: 16px;
  transition-duration: .3s;
}

.chat-form button:hover {
  background-color: #333;
}

.chat-form button:disabled {
  color: #ccc;
  cursor: not-allowed;
  background-color: #888;
}

.chat-bubble {
  align-items: left;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.chat-bubble code {
  font-family: Roboto Mono, monospace;
  font-size: 14px;
}

.code-block {
  background-color: #000000ad;
  border-radius: 4px;
  max-width: 100%;
  padding: 10px;
  overflow: scroll;
}

.chat-message-sent {
  color: #fff;
  background-color: #474747;
  border-radius: 4px 4px 0;
  padding: 10px;
  font-size: 16px;
}

.chat-message-received {
  color: #fff;
  background: radial-gradient(circle at 0 100%, #585eb6, #637b96);
  border-radius: 4px 4px 4px 0;
  padding: 10px;
  font-size: 16px;
}

.chat-actions-top {
  align-items: center;
  gap: 5px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.chat-actions-top button {
  color: #fff;
  cursor: pointer;
  opacity: .2;
  background: #585eb6;
  border: none;
  border-radius: 50%;
  outline: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  transition-duration: .3s;
  display: flex;
}

.chat-actions-top button:hover {
  opacity: 1;
  background: #767786;
  border-radius: 10px;
  width: 60px;
  box-shadow: 0 15px 25px #0000001a;
}

.chat-actions-top button:active {
  box-shadow: 0 0 4px #585eb6;
}

#chat-selection-overlay {
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}

.show {
  display: flex;
}

#selection-container {
  background-color: #474747;
  border-radius: 4px;
  flex-direction: column;
  gap: 2px;
  width: 90%;
  height: 90%;
  display: flex;
}

.chat-selection-item {
  cursor: pointer;
  background-color: #585eb6;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 10px;
  transition-duration: .3s;
  display: flex;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*# sourceMappingURL=index.1303bb05.css.map */
