body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
}

a {
  color: #3b82f6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.info {
  margin-left: 7em;
}

.button {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.button:hover {
  background-color: rgb(107.7609756098, 161.0975609756, 248.2390243902);
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #0f172a;
}

.login-box {
  background-color: #1e293b;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-box h2 {
  text-align: center;
}
.login-box input {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background-color: rgb(21.404494382, 29.2528089888, 42.095505618);
  color: #f1f5f9;
}
.login-box button {
  padding: 0.8rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.login-box button:hover {
  background-color: rgb(107.7609756098, 161.0975609756, 248.2390243902);
}

.app-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.chat-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  height: 100vh;
  max-height: 80vh;
}

.chat-box {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #1e293b;
  border-radius: 8px;
  margin: auto;
  max-width: 80%;
}

#chat-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#chat-form input[type=text], #chat-form input[type=file] {
  padding: 0.7rem;
  background-color: #334155;
  border: none;
  color: white;
  border-radius: 5px;
  width: 80%;
  margin: auto;
}
#chat-form button {
  padding: 0.7rem;
  background-color: #3b82f6;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  max-width: 80%;
  margin: auto;
}
#chat-form button:hover {
  background-color: rgb(107.7609756098, 161.0975609756, 248.2390243902);
}

.chat-message {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  word-wrap: break-word;
}
.chat-message.own-message {
  background-color: #1e3a8a;
  text-align: right;
}
.chat-message.other-message {
  background-color: #334155;
  text-align: left;
}
.chat-message img {
  display: block;
  max-width: 200px;
  margin-top: 5px;
  border-radius: 5px;
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  background-color: #0f172a;
  color: #94a3b8;
}

.pigeon-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.pigeon-container img {
  width: 80px;
  height: auto;
}
.pigeon-container .pigeon img {
  width: 80px;
  height: auto;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 5em;
  height: 100vh;
  width: 220px;
  background-color: #1e293b;
  padding: 1rem;
  color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar h3 {
  margin-top: 0;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  margin-bottom: 0.5rem;
}
.sidebar ul li button {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.sidebar ul li button:hover {
  color: #3b82f6;
}

.sidebar-toggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.4rem 0.6rem;
  z-index: 1000;
  cursor: pointer;
}

.mention {
  color: #0dcaf0;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */
