@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
:root {
  --app-heading: 'Sugar Five Blog Machine';
}

.app-heading::before {
  content: var(--app-heading);
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}

.app-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 20px;
}

body {
    background-color: #0B0126;
    color: #eee;
    font-family: Arial, sans-serif;
    padding: 20px;
}

h1 {
    font-family: 'Anton', sans-serif;
    color: #ffffff;
    font-size: 2.2em;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}


button {
    padding: 10px 20px;
    background-color: #B2007C;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #8e0063;
}

.user .bubble {
    background-color: #555 !important;
    color: #fff !important;
    border: 1px solid #777;
}

.assistant .bubble {
    background-color: #111 !important;
    color: #eee !important;
}

#chat-container {
    max-height: 500px;
    overflow-y: auto;
    background: #1a102e;
    border: 1px solid #444;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    background-color: #1f153a;
    color: #fff;
    border: 1px solid #555;
    padding: 10px;
    border-radius: 4px;
}

textarea::placeholder {
    color: #aaa;
}