/*chatbox.css*/
.as-chatbox {
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid #d1d7dd;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
}

.as-chatbox-kopf {
    background: #1794DD;
    color: #fff;
    font-weight: bold;
    padding: 8px 10px;
}

.as-chatbox-nachrichten {
    overflow-y: auto;
    padding: 8px;
    background: #f9f9f9;
    scroll-behavior: smooth;
}

.as-chatbox-eintrag {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 6px;
    margin-bottom: 7px;
}

.as-chatbox-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #555;
    margin-bottom: 4px;
}

.as-chatbox-text {
    color: #222;
    line-height: 1.35;
    word-wrap: break-word;
}

.as-chatbox-text a {
    color: #007acc;
    text-decoration: underline;
}

.as-chatbox-bbcode-underline {
    text-decoration: underline;
}

.as-chatbox-bbcode-strike {
    text-decoration: line-through;
}

.as-chatbox-quote {
    margin: 6px 0;
    padding: 6px 8px;
    border-left: 3px solid #1794DD;
    background: #f2f6fa;
    color: #333;
}

.as-chatbox-code {
    margin: 6px 0;
    padding: 6px 8px;
    border: 1px solid #d1d7dd;
    border-radius: 4px;
    background: #f5f5f5;
    overflow-x: auto;
    white-space: pre-wrap;
    font-family: Consolas, monospace;
    font-size: 13px;
}

.as-chatbox-leer {
    color: #777;
    font-style: italic;
    padding: 8px;
}

.as-chatbox-formular {
    padding: 8px;
    background: #eee;
    border-top: 1px solid #d1d7dd;
}

.as-chatbox-formular textarea {
    width: 100%;
    min-height: 60px;
    resize: vertical;
    padding: 6px;
    border: 1px solid #c5c5c5;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.as-chatbox-bbcode-box {
    margin-top: 6px;
}

.as-chatbox-bbcode-kopf {
    cursor: pointer;
    font-weight: bold;
    padding: 6px 8px;
    background: #f5f5f5;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #222 !important;
}

.as-chatbox-bbcode-kopf:hover {
    background: #eeeeee;
}

.as-chatbox-bbcode-kopf:focus {
    outline: 2px solid #1794DD;
    outline-offset: 2px;
}

.as-chatbox-bbcode-pfeil {
    font-size: 12px;
    margin-left: 8px;
}

.as-chatbox-bbcode-inhalt {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}

.as-chatbox-bbcode-inhalt.offen {
    max-height: 500px;
    opacity: 1;
}

.as-chatbox-bbcode-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding-top: 6px;
}

.as-chatbox .as-chatbox-bbcode-button {
    border: 1px solid #c5c5c5;
    background: #1769aa !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 3px 6px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: none;
}

.as-chatbox .as-chatbox-bbcode-button:hover,
.as-chatbox .as-chatbox-bbcode-button:focus {
    background: #FDEAB3 !important;
    color: #000 !important;
    outline: none;
}

.as-chatbox-smilie-box {
    margin-top: 6px;
}

.as-chatbox-smilie-kopf {
    cursor: pointer;
    font-weight: bold;
    padding: 6px 8px;
    background: #f5f5f5;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.as-chatbox-smilie-kopf:hover {
    background: #eeeeee;
}

.as-chatbox-smilie-kopf:focus {
    outline: 2px solid #1794DD;
    outline-offset: 2px;
}

.as-chatbox-smilie-pfeil {
    font-size: 12px;
    margin-left: 8px;
}

.as-chatbox-smilie-inhalt {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}

.as-chatbox-smilie-inhalt.offen {
    max-height: 500px;
    opacity: 1;
}

.as-chatbox-smilie-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 6px;
}

.as-chatbox-smiley-button {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    padding: 4px 6px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.1;
}

.as-chatbox-smiley-button img {
    max-width: 24px;
    max-height: 24px;
    vertical-align: middle;
}

.as-chatbox-smilie-inline,
.as-chatbox .as-smilies-inline {
    max-width: 32px;
    max-height: 32px;
    vertical-align: middle;
}

.as-chatbox-smiley-button:hover {
    background: #FDEAB3;
    color: #000;
}

.as-chatbox-formular button[type="submit"] {
    margin-top: 6px;
    width: 100%;
    border: 0;
    border-radius: 4px;
    background: #1794DD;
    color: #fff;
    padding: 7px 10px;
    cursor: pointer;
    font-weight: bold;
}

.as-chatbox-formular button[type="submit"]:hover {
    background: #FDEAB3;
    color: #000;
}
