/* Grundlegendes Styling für das CosmosChat Widget */
#cosmoschat-widget {
  border: 1px solid #ddd;
  background: #fff;
  max-width: 400px;
  margin: 1em auto;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.cosmoschat-messages {
  flex: 1;
  overflow-y: auto;
  max-height: 300px;
  margin-bottom: 0.5em;
}

.cosmoschat-message {
  margin-bottom: 0.5em;
}

.cosmoschat-message-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
}

.cosmoschat-message-name {
  font-weight: bold;
}

.cosmoschat-message-content {
  background: #f2f2f2;
  padding: 0.3em 0.5em;
  border-radius: 4px;
}

.cosmoschat-form {
  display: flex;
  gap: 0.5em;
}

.cosmoschat-input {
  flex: 1;
  padding: 0.3em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cosmoschat-send {
  padding: 0.3em 0.8em;
  border: none;
  background: #0073aa;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.cosmoschat-send:hover {
  background: #005177;
}

.cosmoschat-payment {
  text-align: center;
}

.cosmoschat-pay-button {
  padding: 0.4em 1em;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cosmoschat-pay-button:hover {
  background: #005177;
}