/* ----------------------------------

Deep Wealth Management Prototype
Author: cognent
Version: 2025

-------------------------------------
*/

body {
  font-family: 'Roboto', sans-serif;
  background: #f5f5f5;
  color: #000;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header, footer {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.logo {
  height: 25px;
}

nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
}

.icon {
  height: 25px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

#chat-container {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
}

#chat-form {
  display: flex;
}

#chat-form input {
  flex: 1;
  padding: 10px;
  font-size: 1em;
}

#chat-form button {
  padding: 10px;
}

footer {
  text-align: center;
}

.thinking-dots {
  display: flex;
  gap: 4px;
  margin: 5px 0;
  padding-left: 5px;
}

.thinking-dots span {
  font-size: 20px;
  color: #888;
  animation: bounce 1s infinite;
}

.thinking-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.thinking-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
}