/* Datei: _common/styles/device-renderer.css
   Gemeinsames Device-Widget-Styling.
   Enthält die gemeinsame Gerätehülle sowie die Modi "chat", "photo" und "home".
   Globale Ebenen: background + statusBar.
*/

.w-device-renderer,
.w-device-renderer *,
.w-device-renderer *::before,
.w-device-renderer *::after {
    box-sizing: border-box;
}

.w-device-renderer {
    --device-base-width: 288;
    --device-base-height: 624;
    --device-scale: 1;

    position: relative;
    display: block;
    width: 100%;
    max-width: calc(var(--device-base-width) * 1px);
    font-family: -apple-system, "SF Pro Text", "SF Pro Display", Arial, sans-serif;
    line-height: 1.25;
}

.w-device-renderer[data-device="smartphone"] {
    --device-base-width: 288;
    --device-base-height: 624;
}

.w-device-renderer[data-device="tablet"] {
    --device-base-width: 1024;
    --device-base-height: 600;
}

.w-device-renderer__viewport {
    position: relative;
    width: 100%;
    height: calc(var(--device-base-height) * var(--device-scale) * 1px);
    overflow: visible;
}

.w-device-renderer__scale-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--device-base-width) * 1px);
    height: calc(var(--device-base-height) * 1px);
    transform: scale(var(--device-scale));
    transform-origin: top left;
}

/* ===== Gerätehülle ===== */

.w-device-renderer__device {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    border: 12px solid #333;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__device {
    border-width: 30px;
    border-radius: 40px;
}

.w-device-renderer__notch {
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 5;
    width: 92px;
    height: 26px;
    transform: translateX(-50%);
    background-color: #111;
    border-radius: 999px;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__notch,
.w-device-renderer[data-mode="chat"] .w-device-renderer__notch {
    display: none;
}

.w-device-renderer__screen {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background-color: #fff;
}

/* ===== Globale Ebenen ===== */

.w-device-renderer__background-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: transparent;
}

.w-device-renderer__background-image-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-color: transparent;
    transform-origin: center center;
}

.w-device-renderer__status-bar-slot {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.w-device-renderer__foreground {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.w-device-renderer:not([data-mode="chat"]):not([data-mode="camera"]) .w-device-renderer__content-slot {
    padding-top: 34px;
}

.w-device-renderer[data-device="tablet"]:not([data-mode="chat"]):not([data-mode="camera"]) .w-device-renderer__content-slot {
    padding-top: 28px;
}

.w-device-renderer[data-mode="chat"] .w-device-renderer__content-slot,
.w-device-renderer[data-mode="camera"] .w-device-renderer__content-slot {
    padding-top: 0;
}

.w-device-renderer__app-header-slot,
.w-device-renderer__app-footer-slot {
    flex: 0 0 auto;
}

.w-device-renderer__content-slot {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
}

/* ===== Statusbar ===== */

.w-device-renderer__status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    padding: 8px 18px 0;
    font-family: -apple-system, "SF Pro Text", "SF Pro Display", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__status-bar {
    height: 28px;
    padding: 6px 18px 0;
}

.w-device-renderer__status-bar.dark-content {
    color: #111;
}

.w-device-renderer__status-bar.light-content {
    color: #fff;
}

.w-device-renderer__status-bar-left,
.w-device-renderer__status-bar-right {
    display: flex;
    align-items: center;
}

.w-device-renderer__status-bar-left {
    min-width: 0;
}

.w-device-renderer__status-bar-right {
    margin-right: -7px;
}

.w-device-renderer__status-bar-time {
    display: inline-block;
    min-width: 38px;
    white-space: nowrap;
}

.w-device-renderer__status-bar-network {
    display: none;
}

.w-device-renderer__status-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 22px;
    overflow: visible;
    line-height: 1;
    flex: 0 0 auto;
}

/* ===== SVG-Icons ===== */

.w-device-renderer__svg-icon,
.w-device-renderer__svg-battery {
    display: block;
    width: 24px;
    height: 24px;
    color: inherit;
    flex: 0 0 auto;
}

.w-device-renderer__svg-icon--status {
    width: auto;
    height: 22px;
}

.w-device-renderer__status-bar-icon .w-device-renderer__svg-icon,
.w-device-renderer__status-bar-icon .w-device-renderer__svg-battery {
    width: auto;
    height: 22px;
}

.w-device-renderer__status-bar-icon--battery {
    width: auto;
    height: 22px;
}

.w-device-renderer__svg-battery .battery-body {
    fill: none;
    stroke: #ced4da;
    stroke-width: 1.15;
}

.w-device-renderer__svg-battery .battery-cap {
    fill: #ced4da;
}

.w-device-renderer__svg-battery .battery-bg {
    fill: transparent;
}

.w-device-renderer__svg-battery .battery-fill {
    transition: transform 0.15s linear;
}

.w-device-renderer__status-bar.dark-content .w-device-renderer__svg-battery .battery-fill--normal {
    fill: #000000;
}

.w-device-renderer__status-bar.light-content .w-device-renderer__svg-battery .battery-fill--normal {
    fill: #ffffff;
}

/* ===== Allgemeine Chat-Basis ===== */

.w-device-renderer__chat-header,
.w-device-renderer__chat-send-row {
    flex: 0 0 auto;
}

.w-device-renderer__chat-area {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
}

/* ===== Chat-Header ===== */

.w-device-renderer__chat-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    overflow: hidden;
    background-color: #f0f0f0;
    color: #222;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    font-family: -apple-system, "SF Pro Display", "SF Pro Text", Arial, sans-serif;
    font-size: calc(15px / pow(var(--device-scale), 0.7));
    font-weight: 600;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__chat-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.w-device-renderer__chat-header-back,
.w-device-renderer__chat-header-icon,
.w-device-renderer__chat-send-button,
.w-device-renderer__chat-send-icon {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font: inherit;
    color: #222;
    background: transparent;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}

.w-device-renderer__chat-header-back {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.w-device-renderer__chat-header-back:hover,
.w-device-renderer__chat-header-back:focus,
.w-device-renderer__chat-header-back:focus-visible,
.w-device-renderer__chat-header-back:active,
.w-device-renderer__chat-header-icon:hover,
.w-device-renderer__chat-header-icon:focus,
.w-device-renderer__chat-header-icon:focus-visible,
.w-device-renderer__chat-header-icon:active,
.w-device-renderer__chat-send-button:hover,
.w-device-renderer__chat-send-button:focus,
.w-device-renderer__chat-send-button:focus-visible,
.w-device-renderer__chat-send-button:active,
.w-device-renderer__chat-send-icon:hover,
.w-device-renderer__chat-send-icon:focus,
.w-device-renderer__chat-send-icon:focus-visible,
.w-device-renderer__chat-send-icon:active {
    color: #222;
    background: transparent;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.w-device-renderer__chat-header-back .w-device-renderer__svg-icon {
    width: 24px;
    height: 24px;
    transition:
        transform 0.14s ease,
        opacity 0.14s ease,
        filter 0.14s ease;
}

.w-device-renderer__chat-header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 50%;
    padding-right: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
    transform: translate(-50%, -50%);
}

.w-device-renderer__chat-header-icons {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    gap: 12px;
    transform: translateY(-50%);
}

.w-device-renderer__chat-header-icon {
    width: 24px;
    height: 24px;
}

.w-device-renderer__chat-header-icons .w-device-renderer__svg-icon {
    width: 24px;
    height: 24px;
    color: #222;
    transition:
        transform 0.14s ease,
        opacity 0.14s ease,
        filter 0.14s ease;
}

/* ===== Chat-Fläche ===== */

.w-device-renderer__chat-area {
    gap: 5px;
    padding: 10px;
    overflow-y: auto;
    background-color: #e5ddd5;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.w-device-renderer__chat-area::-webkit-scrollbar {
    display: none;
}

/* ===== Sendezeile ===== */

.w-device-renderer__chat-send-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__chat-send-row {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.w-device-renderer__chat-send-button .w-device-renderer__svg-icon,
.w-device-renderer__chat-send-icon .w-device-renderer__svg-icon {
    width: 24px;
    height: 24px;
    transition:
        transform 0.14s ease,
        opacity 0.14s ease,
        filter 0.14s ease;
}

.w-device-renderer__chat-header-back.is-pressed .w-device-renderer__svg-icon,
.w-device-renderer__chat-header-icon.is-pressed .w-device-renderer__svg-icon,
.w-device-renderer__chat-send-button.is-pressed .w-device-renderer__svg-icon,
.w-device-renderer__chat-send-icon.is-pressed .w-device-renderer__svg-icon {
    transform: scale(0.92);
    opacity: 0.72;
}

.w-device-renderer__chat-send-input {
    flex: 1;
    min-width: 0;
    padding: 8px;
    color: #666;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: calc(14px / pow(var(--device-scale), 0.7));
}

/* ===== Nachrichten ===== */

.w-device-renderer__message {
    position: relative;
    align-self: flex-start;
    min-width: 40px;
    max-width: 70%;
    padding: 8px 12px 18px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    background-clip: padding-box;
    border-radius: 15px;
    font-family: -apple-system, "SF Pro Text", Arial, sans-serif;
    font-size: calc(14px / pow(var(--device-scale), 0.7));
}

.w-device-renderer__message.left {
    align-self: flex-start;
    background-color: #fff;
    border-bottom-left-radius: 0;
}

.w-device-renderer__message.right {
    align-self: flex-end;
    background-color: #dcf8c6;
    border-bottom-right-radius: 0;
}

.w-device-renderer__message.has-image {
    max-width: 60%;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__message.has-image {
    max-width: 30%;
}

.w-device-renderer__message-sender {
    margin-bottom: 4px;
    font-size: calc(12px / pow(var(--device-scale), 0.7));
    font-weight: 700;
}

.w-device-renderer__message-text {
    display: block;
    white-space: pre-wrap;
}

.w-device-renderer__message-time {
    position: absolute;
    right: 10px;
    bottom: 4px;
    font-size: calc(10px / pow(var(--device-scale), 0.7));
    color: #999;
}

.w-device-renderer__message-status {
    position: absolute;
    right: 8px;
    bottom: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.w-device-renderer__message-status .w-device-renderer__svg-icon {
    width: 16px;
    height: 16px;
}

.w-device-renderer__message-status.read {
    color: #007aff;
}

.w-device-renderer__message.left .w-device-renderer__message-status {
    display: none;
}

.w-device-renderer__message.right[data-has-status="1"] .w-device-renderer__message-time {
    right: 25px;
}

/* ===== Bilder in Nachrichten ===== */

.w-device-renderer__message-image {
    display: block;
    width: calc(100% + 18px);
    height: auto;
    margin-top: -5px;
    margin-right: -9px;
    margin-bottom: 0;
    margin-left: -9px;
    border-radius: 13px;
}

.w-device-renderer__message.has-image .w-device-renderer__message-sender {
    margin-top: 4px;
    margin-bottom: 4px;
}

.w-device-renderer__message.has-image .w-device-renderer__message-sender+.w-device-renderer__message-image {
    margin-top: 4px;
}

.w-device-renderer__message.has-image .w-device-renderer__message-image {
    margin-top: -5px;
    margin-right: -9px;
    margin-bottom: 4px;
    margin-left: -9px;
}

/* ===== Home ===== */

.w-device-renderer__home {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 12px;
    width: 100%;
    padding: 20px 14px 0;
    align-content: start;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__home {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 16px 22px 0;
}

.w-device-renderer__home-app {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    padding: 0;
    margin: 0;
    color: inherit;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font: inherit;
    text-align: center;
    cursor: pointer;
}

.w-device-renderer__home-app:focus {
    outline: none;
}

.w-device-renderer__home-app:hover,
.w-device-renderer__home-app:active,
.w-device-renderer__home-app:focus,
.w-device-renderer__home-app:focus-visible {
    color: inherit;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
}

.w-device-renderer__home-app.is-pressed .w-device-renderer__home-app-icon {
    transform: scale(0.93);
    filter: brightness(0.9);
}

.w-device-renderer__home-app.is-pressed .w-device-renderer__home-app-label {
    opacity: 0.78;
}

.w-device-renderer__home-app-icon {
    display: block;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 12px;
    flex: 0 0 auto;
    transition:
        transform 0.14s ease,
        filter 0.14s ease,
        opacity 0.14s ease;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__home-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
}

.w-device-renderer__home-app-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w-device-renderer__home-app-label {
    display: block;
    width: 100%;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
    font-size: 11px;
    line-height: 1.2;
    transition:
        color 0.14s ease,
        text-shadow 0.14s ease,
        opacity 0.14s ease,
        transform 0.14s ease;
}

.w-device-renderer[data-home-label-style="light-content"] .w-device-renderer__home-app-label {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.w-device-renderer[data-home-label-style="dark-content"] .w-device-renderer__home-app-label {
    color: #111;
    text-shadow: 0 0 4px rgb(255, 255, 255), 0 1px 1px rgba(0,0,0,0.5)
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__home-app-label {
    font-size: 14px;
}

/* ===== Camera ===== */

.w-device-renderer__camera {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    height: 100%;
}

.w-device-renderer__camera-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 118px;
    padding: 0 18px 22px;
    background: rgba(90, 90, 96, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__camera-controls {
    height: 150px;
    padding: 0 34px 28px;
}

.w-device-renderer__camera-controls-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    pointer-events: none;
}

.w-device-renderer__camera-control-slot {
    display: flex;
    align-items: center;
    min-width: 0;
    pointer-events: none;
}

.w-device-renderer__camera-control-slot--left {
    justify-content: flex-start;
}

.w-device-renderer__camera-control-slot--center {
    justify-content: center;
}

.w-device-renderer__camera-control-slot--right {
    justify-content: flex-end;
}

.w-device-renderer__camera-gallery,
.w-device-renderer__camera-shutter,
.w-device-renderer__camera-switch {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
    transition:
        transform 0.14s ease,
        opacity 0.14s ease,
        filter 0.14s ease;
}

.w-device-renderer__camera-gallery:hover,
.w-device-renderer__camera-gallery:focus,
.w-device-renderer__camera-gallery:focus-visible,
.w-device-renderer__camera-gallery:active {
    background: rgba(30, 30, 30, 0.82);
    background-color: rgba(30, 30, 30, 0.82);
    color: inherit;
    border: none;
    outline: none;
}

.w-device-renderer__camera-switch:hover,
.w-device-renderer__camera-switch:focus,
.w-device-renderer__camera-switch:focus-visible,
.w-device-renderer__camera-switch:active {
    background: rgba(34, 34, 34, 0.56);
    background-color: rgba(34, 34, 34, 0.56);
    color: #fff;
    border: none;
    outline: none;
}

.w-device-renderer__camera-shutter:hover,
.w-device-renderer__camera-shutter:focus,
.w-device-renderer__camera-shutter:focus-visible,
.w-device-renderer__camera-shutter:active {
    background: transparent;
    background-color: transparent;
    color: inherit;
    border: none;
    outline: none;
    box-shadow: none;
}

.w-device-renderer__camera-shutter.is-pressed {
    transform: scale(0.965);
    filter: brightness(0.97);
}

.w-device-renderer__camera-gallery.is-pressed {
    transform: scale(0.93);
    filter: brightness(0.92);
}

.w-device-renderer__camera-gallery.is-pressed::before {
    opacity: 0.82;
}

.w-device-renderer__camera-switch.is-pressed {
    transform: scale(0.93);
    opacity: 0.78;
    background: rgba(34, 34, 34, 0.68);
    background-color: rgba(34, 34, 34, 0.68);
}

.w-device-renderer__camera-switch.is-pressed .material-symbols-rounded {
    opacity: 0.88;
}

.w-device-renderer__camera-gallery {
    position: relative;
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.82);
    border-radius: 3px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.16),
        inset 0 1px 1px rgba(255, 255, 255, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.22);
}

.w-device-renderer__camera-gallery::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 38%,
            rgba(0, 0, 0, 0.10) 100%);
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__camera-gallery {
    width: 56px;
    height: 56px;
}

.w-device-renderer__camera-switch {
    width: 38px;
    height: 38px;
    color: #fff;
    background: rgba(34, 34, 34, 0.56);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.16);
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__camera-switch {
    width: 56px;
    height: 56px;
}

.w-device-renderer__camera-switch .w-device-renderer__svg-icon {
    width: 23px;
    height: 23px;
    color: inherit;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__camera-switch .w-device-renderer__svg-icon {
    width: 31px;
    height: 31px;
}

.w-device-renderer__camera-shutter {
    position: relative;
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    border: none;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__camera-shutter {
    width: 84px;
    height: 84px;
}

.w-device-renderer__camera-shutter::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #f6f4ef;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

.w-device-renderer__camera-shutter::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 45%, #ffffff 0%, #fbfbfb 72%, #f1f1f1 100%);
    box-shadow:
        0 0 0 2px rgba(62, 62, 62, 0.72),
        inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.w-device-renderer[data-device="tablet"] .w-device-renderer__camera-shutter::after {
    inset: 6px;
}

.w-device-renderer__camera-gallery[hidden],
.w-device-renderer__camera-switch[hidden] {
    display: none;
}

/* ===== Fallback für noch nicht implementierte Modi ===== */

.w-device-renderer__mode-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 16px;
    color: #444;
    text-align: center;
    font-size: 14px;
}

/* ===== Nützliche Zustandsklassen ===== */

.w-device-renderer.is-empty .w-device-renderer__chat-area {
    justify-content: flex-start;
}