@import url("https://cdn.jsdelivr.net/npm/@n8n/chat/dist/style.css");

:root {
  --chat--color-primary: #08abe2;
  --chat--color-primary-shade-50: #000b1e;
  --chat--color-primary-shade-100: #000b1e;
  --chat--color-secondary: #e2e2e2;
  --chat--border-radius: 0.8rem;

  --chat--font-family: sans-serif !important;
  --chat--window--width: 450px;
  --chat--window--height: 700px;

  --chat--header--background: #08abe2;
  --chat--message--font-size: 0.9rem;
  --chat--window--border-radius: var(--chat--border-radius);

  --chat--message--border-radius: var(--chat--border-radius);
  --chat--message--user--background: var(--chat--color-secondary);
  --chat--message--user--color: var(--chat--color-primary-shade-100);
}



.profile-card {
    color: black;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    max-width: 340px;
    margin: 0 auto 1.5rem auto;
    font-family: sans-serif;
    box-sizing: border-box;
}

.avatar {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 120px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.by {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.by a {
    color: #ccc;
    text-decoration: none;
}

.description {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}