/* ChrisEmm Connect 4.0.0 – generated clean baseline bundle. */
/* Source order is retained to preserve the verified cascade. */

/* source: /public/assets/css/app.css */
/*
 * ChrisEmm Connect
 *
 * Datei:
 * /public/assets/css/app.css
 *
 * Aufgabe:
 * Kostenloses responsives Standarddesign.
 *
 * Bearbeitung:
 * Farben, Rundungen und Größen werden über die Variablen
 * unter :root gesteuert.
 *
 * Copyright:
 * Christian Melchert
 */

:root {
    --background: #070d19;
    --background-soft: #0b1324;

    --surface: #111b30;
    --surface-soft: #17233b;
    --surface-hover: #1c2b49;
    --surface-glass: rgba(17, 27, 48, 0.88);

    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.15);

    --text: #f7f9ff;
    --text-soft: #ccd5ea;
    --muted: #8f9db9;

    --primary: #6d7cff;
    --primary-hover: #5869ee;
    --primary-soft: rgba(109, 124, 255, 0.15);

    --success: #59d59b;
    --success-soft: rgba(89, 213, 155, 0.14);

    --danger: #ff6c7c;
    --danger-soft: rgba(255, 108, 124, 0.14);

    --warning: #f4c76b;

    --owner: #f2c86b;
    --admin: #ff7787;
    --moderator: #6fd1ff;
    --vip: #bc8cff;
    --user: #93a2c2;

    --radius-small: 10px;
    --radius: 16px;
    --radius-large: 24px;

    --shadow:
        0 24px 70px rgba(0, 0, 0, 0.34);

    --topbar-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 12% 4%,
            rgba(109, 124, 255, 0.20),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 92%,
            rgba(89, 213, 155, 0.10),
            transparent 26%
        ),
        var(--background);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(109, 124, 255, 0.35);
    outline-offset: 2px;
}

.application {
    min-height: 100vh;

    display: grid;

    grid-template-rows:
        var(--topbar-height)
        minmax(0, 1fr)
        auto;
}

.topbar {
    position: relative;
    z-index: 50;

    min-height: var(--topbar-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 24px;

    border-bottom:
        1px solid var(--border);

    background:
        rgba(7, 13, 25, 0.78);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--text);

    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 15px;

    color: #ffffff;

    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: -0.02em;

    background:
        linear-gradient(
            135deg,
            #7280ff,
            #55d0b0
        );

    box-shadow:
        0 12px 30px
        rgba(109, 124, 255, 0.28);
}

.brand-text {
    min-width: 0;
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 0.78rem;
}

.topbar-user {
    display: flex;
    align-items: center;

    gap: 14px;
}

.user-summary {
    text-align: right;
}

.user-summary strong,
.user-summary small {
    display: block;
}

.user-summary strong {
    font-size: 0.9rem;
}

.user-summary small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 0.75rem;
}

.main-content {
    min-height: 0;

    padding: 18px;
}

.footer {
    padding: 16px 20px;

    color: var(--muted);

    font-size: 0.78rem;
    text-align: center;

    border-top:
        1px solid var(--border);

    background:
        rgba(7, 13, 25, 0.72);
}

.footer span {
    margin: 0 6px;
}

.button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 16px;

    border: 0;
    border-radius: 12px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.16s ease,
        background 0.16s ease,
        opacity 0.16s ease;
}

.button:hover {
    transform:
        translateY(-1px);
}

.button:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #6176ff
        );

    box-shadow:
        0 12px 28px
        rgba(109, 124, 255, 0.22);
}

.button-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--primary-hover),
            #4f66ee
        );
}

.button-secondary {
    color: var(--text-soft);

    background:
        var(--surface-soft);

    border:
        1px solid var(--border);
}

.button-full {
    width: 100%;
}

.alert {
    width: min(760px, 100%);

    margin: 0 auto 16px;

    padding: 14px 16px;

    border-radius: var(--radius-small);

    border: 1px solid transparent;
}

.alert-error {
    color: #ffbec6;

    background:
        var(--danger-soft);

    border-color:
        rgba(255, 108, 124, 0.22);
}

.alert-success {
    color: #aaf0d1;

    background:
        var(--success-soft);

    border-color:
        rgba(89, 213, 155, 0.22);
}

/* Anmeldung */

.auth-wrapper {
    min-height:
        calc(
            100vh
            - var(--topbar-height)
            - 90px
        );

    display: grid;
    place-items: center;

    padding: 40px 16px;
}

.auth-card {
    width: min(460px, 100%);

    padding:
        clamp(
            24px,
            5vw,
            38px
        );

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        var(--surface-glass);

    box-shadow:
        var(--shadow);

    backdrop-filter:
        blur(22px);
}

.auth-heading {
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-flex;

    margin-bottom: 14px;

    padding: 7px 11px;

    border-radius: 999px;

    color: #ccd2ff;

    font-size: 0.78rem;
    font-weight: 800;

    background:
        var(--primary-soft);
}

.auth-heading h1 {
    margin: 0;

    font-size:
        clamp(
            2rem,
            7vw,
            3rem
        );

    letter-spacing: -0.05em;
}

.auth-heading p {
    margin: 12px 0 0;

    color: var(--muted);

    line-height: 1.6;
}

.auth-form {
    display: grid;

    gap: 18px;
}

.auth-form label {
    display: grid;

    gap: 8px;

    color: var(--text-soft);

    font-size: 0.86rem;
    font-weight: 700;
}

.auth-form input {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    color: var(--text);

    background:
        var(--background-soft);

    outline: none;

    transition:
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.auth-form input:focus {
    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(109, 124, 255, 0.12);
}

.auth-information {
    display: grid;

    gap: 6px;

    margin-top: 24px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);
}

.auth-information strong {
    color: var(--text-soft);

    font-size: 0.84rem;
}

.auth-information span {
    color: var(--muted);

    font-size: 0.78rem;
    line-height: 1.5;
}

/* Chat */

.chat-application {
    width: 100%;
    height:
        calc(
            100vh
            - var(--topbar-height)
            - 70px
        );

    min-height: 620px;

    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr)
        270px;

    gap: 16px;
}

.chat-sidebar,
.chat-main {
    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        var(--surface-glass);

    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, 0.20);

    backdrop-filter:
        blur(18px);
}

.chat-sidebar {
    display: flex;
    flex-direction: column;

    padding: 18px;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 16px;
}

.panel-label {
    display: block;

    margin-bottom: 4px;

    color: var(--muted);

    font-size: 0.68rem;
    font-weight: 900;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-heading h2 {
    margin: 0;

    font-size: 1rem;
}

.room-list,
.online-users {
    min-height: 0;

    display: flex;
    flex-direction: column;

    gap: 8px;

    overflow-y: auto;

    scrollbar-width: thin;
}

.room-item {
    width: 100%;

    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr);

    align-items: center;

    gap: 10px;

    padding: 10px;

    border:
        1px solid transparent;

    border-radius: 13px;

    color: var(--text);

    text-align: left;

    background: transparent;

    cursor: pointer;

    transition:
        background 0.16s ease,
        border-color 0.16s ease;
}

.room-item:hover {
    background:
        var(--surface-soft);
}

.room-item.active {
    background:
        var(--primary-soft);

    border-color:
        rgba(109, 124, 255, 0.24);
}

.room-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #cbd2ff;

    font-size: 1.1rem;
    font-weight: 900;

    background:
        rgba(109, 124, 255, 0.14);
}

.room-item strong,
.room-item small {
    display: block;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-item strong {
    font-size: 0.88rem;
}

.room-item small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 0.72rem;
}

.sidebar-information {
    display: grid;

    gap: 6px;

    margin-top: auto;

    padding-top: 18px;

    color: var(--muted);

    font-size: 0.75rem;
    line-height: 1.5;

    border-top:
        1px solid var(--border);
}

.sidebar-information strong {
    color: var(--text-soft);
}

.chat-main {
    display: grid;

    grid-template-rows:
        auto
        minmax(0, 1fr)
        auto
        auto;
}

.chat-header {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 14px 18px;

    border-bottom:
        1px solid var(--border);
}

.chat-header-left,
.chat-header-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.chat-header h1 {
    margin: 0;

    font-size: 1.08rem;
}

.chat-header p {
    margin: 4px 0 0;

    color: var(--muted);

    font-size: 0.76rem;
}

.connection-status {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--muted);

    font-size: 0.76rem;
    font-weight: 700;
}

.connection-status::before {
    width: 8px;
    height: 8px;

    content: "";

    border-radius: 50%;

    background:
        var(--warning);
}

.connection-status.online {
    color: #aaf0d1;
}

.connection-status.online::before {
    background:
        var(--success);

    box-shadow:
        0 0 0 4px
        rgba(89, 213, 155, 0.10);
}

.connection-status.offline {
    color: #ffb8c0;
}

.connection-status.offline::before {
    background:
        var(--danger);
}

.messages {
    min-height: 0;

    display: flex;
    flex-direction: column;

    gap: 13px;

    padding: 18px;

    overflow-y: auto;

    scroll-behavior: smooth;

    scrollbar-width: thin;
}

.empty-chat {
    min-height: 100%;

    display: grid;
    place-content: center;

    padding: 40px;

    color: var(--muted);

    text-align: center;
}

.empty-chat-icon {
    margin-bottom: 12px;

    font-size: 2.4rem;
}

.empty-chat strong {
    color: var(--text);

    font-size: 1rem;
}

.empty-chat p {
    margin: 8px 0 0;

    font-size: 0.82rem;
}

.chat-message {
    width: min(720px, 88%);

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    gap: 11px;

    align-self: flex-start;
}

.message-avatar,
.online-avatar {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid var(--border);

    color: var(--text-soft);

    font-weight: 900;

    background:
        var(--surface-soft);
}

.message-avatar {
    width: 42px;
    height: 42px;

    border-radius: 13px;
}

.message-content {
    min-width: 0;

    padding: 11px 13px;

    border:
        1px solid var(--border);

    border-radius:
        7px 15px 15px 15px;

    background:
        var(--surface-soft);
}

.message-meta {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 6px;

    font-size: 0.74rem;
}

.message-meta strong {
    color: var(--text-soft);
}

.message-meta time {
    margin-left: auto;

    color: var(--muted);

    font-size: 0.68rem;
}

.role-badge {
    padding: 3px 6px;

    border-radius: 999px;

    color: var(--muted);

    font-size: 0.60rem;
    font-weight: 900;

    text-transform: uppercase;

    background:
        rgba(255, 255, 255, 0.05);
}

.message-text {
    color: var(--text);

    font-size: 0.91rem;
    line-height: 1.55;

    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.role-owner .message-avatar,
.role-owner .online-avatar {
    color: var(--owner);

    border-color:
        rgba(242, 200, 107, 0.24);

    background:
        rgba(242, 200, 107, 0.10);
}

.role-admin .message-avatar,
.role-admin .online-avatar {
    color: var(--admin);
}

.role-moderator .message-avatar,
.role-moderator .online-avatar {
    color: var(--moderator);
}

.role-vip .message-avatar,
.role-vip .online-avatar {
    color: var(--vip);
}

.chat-notice {
    margin: 0 14px 10px;

    padding: 10px 12px;

    border-radius: 10px;

    font-size: 0.78rem;
}

.chat-notice.error {
    color: #ffbdc5;

    background:
        var(--danger-soft);

    border:
        1px solid
        rgba(255, 108, 124, 0.20);
}

.chat-notice.success {
    color: #abefd1;

    background:
        var(--success-soft);
}

.chat-composer {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: end;

    gap: 12px;

    padding: 14px;

    border-top:
        1px solid var(--border);

    background:
        rgba(8, 14, 26, 0.38);
}

.composer-field {
    position: relative;
}

.chat-composer textarea {
    width: 100%;
    min-height: 52px;
    max-height: 180px;

    display: block;

    resize: none;

    padding:
        14px 84px 14px 14px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    color: var(--text);

    line-height: 1.45;

    background:
        var(--background-soft);

    outline: none;
}

.chat-composer textarea:focus {
    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(109, 124, 255, 0.10);
}

.character-count {
    position: absolute;
    right: 12px;
    bottom: 10px;

    color: var(--muted);

    font-size: 0.65rem;
}

.send-button {
    min-height: 52px;
}

.online-user {
    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    padding: 9px 8px;

    border-radius: 12px;

    transition:
        background 0.16s ease;
}

.online-user:hover {
    background:
        var(--surface-soft);
}

.online-avatar {
    width: 38px;
    height: 38px;

    border-radius: 12px;

    font-size: 0.82rem;
}

.online-user-info {
    min-width: 0;
}

.online-user-info strong,
.online-user-info small {
    display: block;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.online-user-info strong {
    font-size: 0.82rem;
}

.online-user-info small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 0.68rem;
    text-transform: capitalize;
}

.online-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--success);

    box-shadow:
        0 0 0 4px
        rgba(89, 213, 155, 0.08);
}

.icon-button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 12px;

    color: var(--text);

    background:
        var(--surface-soft);

    cursor: pointer;
}

.mobile-panel-button,
.mobile-close,
.mobile-overlay {
    display: none;
}

/* Fehlerseiten */

.error-page {
    min-height: 100vh;

    display: grid;
    place-items: center;

    padding: 20px;

    background:
        var(--background);
}

.error-card {
    width: min(520px, 100%);

    padding: 40px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.error-code {
    display: block;

    color: var(--primary);

    font-size: 4rem;
    font-weight: 900;

    letter-spacing: -0.08em;
}

.error-card h1 {
    margin: 8px 0 0;
}

.error-card p {
    margin: 14px 0 24px;

    color: var(--muted);

    line-height: 1.6;
}

/* Tablet */

@media (max-width: 1080px) {
    .chat-application {
        grid-template-columns:
            220px
            minmax(0, 1fr);

        height:
            calc(
                100vh
                - var(--topbar-height)
                - 65px
            );
    }

    .users-sidebar {
        position: fixed;
        z-index: 100;

        top: var(--topbar-height);
        right: 0;
        bottom: 0;

        width: min(310px, 88vw);

        border-radius:
            var(--radius-large)
            0
            0
            var(--radius-large);

        transform:
            translateX(105%);

        transition:
            transform 0.22s ease;
    }

    .show-users-panel .users-sidebar {
        transform:
            translateX(0);
    }

    .mobile-panel-button,
    .mobile-close {
        display: grid;
    }

    .mobile-overlay {
        position: fixed;
        z-index: 90;

        inset: 0;

        display: block;

        background:
            rgba(0, 0, 0, 0.55);

        backdrop-filter:
            blur(3px);
    }
}

/* Smartphone */

@media (max-width: 760px) {
    :root {
        --topbar-height: 64px;
    }

    .topbar {
        padding: 9px 12px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-text small,
    .user-summary {
        display: none;
    }

    .button-secondary {
        min-height: 40px;

        padding: 8px 12px;

        font-size: 0.76rem;
    }

    .main-content {
        padding: 8px;
    }

    .footer {
        display: none;
    }

    .application {
        grid-template-rows:
            var(--topbar-height)
            minmax(0, 1fr);
    }

    .chat-application {
        height:
            calc(
                100vh
                - var(--topbar-height)
                - 16px
            );

        min-height: 0;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 0;
    }

    .chat-main {
        border-radius:
            var(--radius);
    }

    .rooms-sidebar,
    .users-sidebar {
        position: fixed;
        z-index: 100;

        top: var(--topbar-height);
        bottom: 0;

        width: min(310px, 88vw);

        border-radius: 0;
    }

    .rooms-sidebar {
        left: 0;

        transform:
            translateX(-105%);

        transition:
            transform 0.22s ease;
    }

    .users-sidebar {
        right: 0;

        transform:
            translateX(105%);

        transition:
            transform 0.22s ease;
    }

    .show-rooms-panel .rooms-sidebar,
    .show-users-panel .users-sidebar {
        transform:
            translateX(0);
    }

    .chat-header {
        min-height: 66px;

        padding: 11px 12px;
    }

    .chat-header p {
        max-width: 190px;

        overflow: hidden;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .connection-status {
        display: none;
    }

    .messages {
        padding: 13px 10px;
    }

    .chat-message {
        width: 96%;

        grid-template-columns:
            36px
            minmax(0, 1fr);

        gap: 8px;
    }

    .message-avatar {
        width: 36px;
        height: 36px;

        border-radius: 11px;
    }

    .message-content {
        padding: 10px 11px;
    }

    .role-badge {
        display: none;
    }

    .chat-composer {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 8px;

        padding: 10px;
    }

    .send-button {
        min-height: 46px;
    }

    .auth-wrapper {
        padding: 20px 4px;
    }

    .auth-card {
        border-radius:
            var(--radius);
    }
}

@media (max-width: 420px) {
    .brand-text strong {
        max-width: 145px;

        overflow: hidden;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .chat-header-actions {
        gap: 6px;
    }

    .icon-button {
        width: 38px;
        height: 38px;
    }
}

/* =================================================
   ChrisEmm Connect 0.4.0 – Adminbereich
   ================================================= */

.admin-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.admin-navigation a {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    background: var(--surface-glass);
}

.admin-navigation a:hover {
    background: var(--surface-hover);
}

.admin-page {
    display: grid;
    gap: 20px;
}

.admin-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.admin-heading h1 {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: -0.05em;
}

.admin-heading p {
    margin: 10px 0 0;
    color: var(--muted);
}

.admin-version,
.admin-badge {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    color: #cdd3ff;
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--primary-soft);
}

.admin-statistics {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.admin-statistics article,
.admin-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-glass);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.16);
}

.admin-statistics span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-statistics strong {
    font-size: 2rem;
}

.admin-card h2 {
    margin-top: 0;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    color: var(--muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    font-size: 0.82rem;
}

.admin-table select,
.admin-form select,
.admin-form input,
.admin-room-card select,
.admin-room-card input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text);
    background: var(--background-soft);
}

.admin-form {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.admin-form label,
.admin-room-card label {
    display: grid;
    gap: 7px;
    color: var(--text-soft);
    font-size: 0.79rem;
    font-weight: 700;
}

.admin-checkbox {
    display: flex !important;
    align-items: center;
    gap: 9px;
}

.admin-checkbox input {
    width: auto;
}

.admin-room-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.admin-room-card {
    display: grid;
    gap: 14px;
}

@media (max-width: 1000px) {
    .admin-statistics,
    .admin-room-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .admin-statistics,
    .admin-room-grid,
    .admin-form {
        grid-template-columns: 1fr;
    }

    .admin-heading {
        flex-direction: column;
    }
}

/* ChrisEmm Connect 0.5.0 – Pluginverwaltung */

.market-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.market-card {
    display: grid;
    gap: 14px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--surface-glass);
}

.market-card h2 {
    margin: 0;
}

.market-card p {
    margin: 0;

    color: var(--muted);

    line-height: 1.55;
}

.market-type {
    display: inline-flex;
    width: fit-content;

    padding: 6px 9px;

    border-radius: 999px;

    color: #ccd2ff;

    font-size: 0.7rem;
    font-weight: 900;

    background: var(--primary-soft);
}

.market-details {
    display: grid;
    gap: 8px;

    margin: 0;
}

.market-details div {
    display: flex;
    justify-content: space-between;

    gap: 12px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--border);
}

.market-details dt,
.market-details dd {
    margin: 0;

    font-size: 0.76rem;
}

.market-details dt {
    color: var(--muted);
}

@media (max-width: 900px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
}

/* ChrisEmm Connect 0.5.0 – Pluginverwaltung */

.market-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.market-card {
    display: grid;
    gap: 14px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--surface-glass);
}

.market-card h2 {
    margin: 0;
}

.market-card p {
    margin: 0;

    color: var(--muted);

    line-height: 1.55;
}

.market-type {
    display: inline-flex;
    width: fit-content;

    padding: 6px 9px;

    border-radius: 999px;

    color: #ccd2ff;

    font-size: 0.7rem;
    font-weight: 900;

    background: var(--primary-soft);
}

.market-details {
    display: grid;
    gap: 8px;

    margin: 0;
}

.market-details div {
    display: flex;
    justify-content: space-between;

    gap: 12px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--border);
}

.market-details dt,
.market-details dd {
    margin: 0;

    font-size: 0.76rem;
}

.market-details dt {
    color: var(--muted);
}

@media (max-width: 900px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ChrisEmm Connect – Mobile Overlay Korrektur
   ========================================================= */

.mobile-overlay {
    background: rgba(2, 7, 18, 0.62) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.mobile-overlay[hidden] {
    display: none !important;
}

.chat-application:not(.show-rooms-panel):not(.show-users-panel)
.mobile-overlay {
    display: none !important;
    pointer-events: none !important;
}

.chat-application,
.chat-main,
.chat-sidebar,
.messages,
.main-content {
    filter: none !important;
}

@media (min-width: 1101px) {
    .mobile-overlay {
        display: none !important;
        pointer-events: none !important;
    }

    .chat-application {
        overflow: visible;
    }
}

/* Login – Passwort vergessen und Gastzugang */

.auth-secondary-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    text-align: center;
}

.auth-secondary-actions > span {
    color: var(--muted);
    font-size: 0.78rem;
}

.auth-text-link {
    color: var(--primary-light, #9ba6ff);
    font-weight: 700;
    text-decoration: none;
}

.auth-text-link:hover {
    text-decoration: underline;
}

/* =========================================================
   ChrisEmm Connect – Gastzugang
   ========================================================= */

.guest-information {
    margin-top: 20px;
    padding: 15px 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
}

.guest-information strong {
    display: block;
    margin-bottom: 9px;
}

.guest-information ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.auth-form label small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.4;
}


/* source: /public/assets/css/community-modern-3320.css */
.room-item{position:relative;border-color:color-mix(in srgb,var(--room-accent,#8b5cf6) 25%,transparent)}.room-item.active{border-color:var(--room-accent,#8b5cf6)!important;box-shadow:inset 4px 0 var(--room-accent,#8b5cf6),0 10px 30px color-mix(in srgb,var(--room-accent,#8b5cf6) 18%,transparent)}.chat-header{border-bottom-color:color-mix(in srgb,var(--active-room-accent,#8b5cf6) 35%,transparent)}.teamspeak-chat-button{display:flex;align-items:center;gap:12px;margin:10px 8px;padding:13px;border:1px solid rgba(96,165,250,.3);border-radius:15px;background:linear-gradient(135deg,rgba(37,99,235,.18),rgba(14,165,233,.08));color:#dbeafe;text-decoration:none}.teamspeak-chat-button>i:first-child{font-size:1.5rem;color:#60a5fa}.teamspeak-chat-button span{display:grid;flex:1}.teamspeak-chat-button small{color:#93c5fd}.team-directory-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:12px}.team-directory-grid article{display:grid;grid-template-columns:58px 1fr;gap:13px;padding:16px;border:1px solid rgba(139,92,246,.22);border-radius:18px;background:linear-gradient(145deg,rgba(99,102,241,.12),rgba(2,6,23,.3))}.team-directory-grid img{width:58px;height:58px;border-radius:16px;object-fit:cover}.team-directory-grid article>div:nth-child(2){display:grid;gap:3px}.team-directory-grid article>div:last-child{grid-column:1/-1;display:flex;gap:8px;flex-wrap:wrap}.header-show-cover{width:54px;height:54px;border-radius:12px;object-fit:cover;float:left;margin-right:10px}.listener-history{margin-top:12px;padding-top:10px;border-top:1px solid rgba(148,163,184,.15)}.listener-history summary{cursor:pointer;font-weight:800}.listener-history p{margin:7px 0;font-size:.82rem}.request-popover{min-width:min(390px,calc(100vw - 24px));padding:20px!important;border-radius:20px!important;background:linear-gradient(155deg,#15213a,#09111f)!important;box-shadow:0 24px 70px rgba(0,0,0,.48)!important}.request-popover form{display:grid;gap:11px}.request-popover label{display:grid;gap:6px}.request-popover input,.request-popover textarea{width:100%;box-sizing:border-box;border:1px solid rgba(148,163,184,.2);border-radius:11px;background:#091426;color:#fff}.modern-chat-radio{border-radius:18px!important;background:radial-gradient(circle at 100% 0,rgba(124,58,237,.24),transparent 45%),linear-gradient(145deg,#101d35,#081120)!important}.modern-profile-page{background:linear-gradient(180deg,color-mix(in srgb,var(--profile-user-background,#08101f) 86%,transparent),var(--profile-user-background,#08101f))!important;border-radius:28px;padding-bottom:20px}@media(max-width:700px){.team-directory-grid{grid-template-columns:1fr}.teamspeak-chat-button{margin-inline:0}.header-show-cover{width:44px;height:44px}}

/* source: /public/assets/css/chat-ui-pro.css */
/* ChrisEmm Connect – Chat UI Pro 0.9.6 */
.chat-application {
    --chat-panel: rgba(12, 20, 37, .92);
    --chat-panel-strong: rgba(18, 29, 51, .96);
    --chat-line: rgba(255,255,255,.075);
    --chat-accent: #7583ff;
    --chat-accent-2: #5cd1b0;
    gap: 14px;
    padding: 0;
}
.chat-sidebar,.chat-main {
    border: 1px solid var(--chat-line);
    background: linear-gradient(160deg,var(--chat-panel-strong),var(--chat-panel));
    box-shadow: 0 20px 65px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
}
.chat-sidebar { border-radius: 22px; }
.chat-main { border-radius: 24px; overflow: hidden; }
.panel-heading,.chat-header {
    border-bottom: 1px solid var(--chat-line);
    background: rgba(255,255,255,.018);
}
.panel-label {
    color: var(--chat-accent-2);
    letter-spacing: .13em;
    font-size: .62rem;
    font-weight: 900;
}
.room-list,.online-users { padding: 10px; gap: 6px; }
.room-item,.online-user {
    position: relative;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: transform .18s ease,border-color .18s ease,background .18s ease;
}
.room-item:hover,.online-user:hover {
    transform: translateY(-1px);
    border-color: rgba(117,131,255,.24);
    background: rgba(117,131,255,.08);
}
.room-item.active {
    border-color: rgba(117,131,255,.38);
    background: linear-gradient(135deg,rgba(117,131,255,.19),rgba(92,209,176,.07));
    box-shadow: inset 3px 0 0 var(--chat-accent);
}
.room-icon {
    border-radius: 11px;
    background: rgba(117,131,255,.13);
    color: #cdd2ff;
}
.chat-header { min-height: 76px; padding: 14px 18px; }
.chat-header h1 { font-size: 1.06rem; letter-spacing: -.02em; }
.connection-status {
    border: 1px solid var(--chat-line);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255,255,255,.035);
}
.connection-status.online::before {
    content: ""; display:inline-block; width:7px; height:7px; margin-right:7px;
    border-radius:50%; background:#59d59b; box-shadow:0 0 0 4px rgba(89,213,155,.12);
}
.messages {
    padding: 18px 18px 24px;
    scroll-behavior: smooth;
    background:
      radial-gradient(circle at 50% 0,rgba(117,131,255,.055),transparent 34%),
      rgba(4,9,18,.23);
}
.chat-message {
    position: relative;
    gap: 11px;
    margin: 3px 0;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 15px;
    transition: background .16s ease,border-color .16s ease;
}
.chat-message:hover {
    background: rgba(255,255,255,.035);
    border-color: rgba(255,255,255,.045);
}
.message-avatar,.online-avatar {
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.message-avatar { width: 42px; height: 42px; border-radius: 14px; }
.online-avatar { width: 38px; height: 38px; border-radius: 13px; }
.message-avatar img,.online-avatar img { width:100%; height:100%; object-fit:cover; border-radius:inherit; }
.message-meta { gap: 7px; }
.message-meta strong,.chat-profile-link { font-size: .88rem; font-weight: 850; text-decoration:none; }
.message-meta time { margin-left:auto; opacity:.72; }
.message-text { color: var(--text-soft); line-height:1.55; word-break:break-word; }
.role-badge { padding: 3px 7px; border-radius:999px; font-size:.58rem; letter-spacing:.04em; }
.chat-composer {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: end;
    gap: 10px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--chat-line);
    background: rgba(10,17,31,.94);
}
.chat-composer-tools { display:flex; gap:6px; padding-bottom:2px; }
.composer-tool {
    width: 40px; height: 40px; display:grid; place-items:center;
    border:1px solid var(--chat-line); border-radius:12px;
    color:var(--text-soft); background:rgba(255,255,255,.035); cursor:pointer;
}
.composer-tool:hover { border-color:rgba(117,131,255,.35); background:rgba(117,131,255,.12); }
.composer-field { border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(255,255,255,.035); }
.chat-composer textarea { min-height:44px; padding:12px 66px 12px 14px; background:transparent!important; border:0!important; }
.send-button { min-height:44px; border-radius:14px; padding-inline:18px; box-shadow:0 10px 26px rgba(109,124,255,.24); }
.character-count { right:12px; bottom:9px; }
.chat-jump-latest {
    position:absolute; right:18px; bottom:82px; z-index:20;
    border:1px solid rgba(117,131,255,.32); border-radius:999px; padding:8px 12px;
    color:#e7e9ff; background:rgba(20,29,52,.95); box-shadow:0 12px 30px rgba(0,0,0,.3); cursor:pointer;
}
.chat-jump-latest[hidden] { display:none; }
.online-dot { box-shadow:0 0 0 4px rgba(89,213,155,.1); }
.sidebar-information { margin:10px; border-radius:14px; background:linear-gradient(145deg,rgba(117,131,255,.09),rgba(92,209,176,.045)); }
@media (max-width: 1100px) { .chat-application { gap:0; } }
@media (max-width: 720px) {
  .main-content { padding:0; }
  .chat-main { border-radius:0; border-left:0; border-right:0; }
  .chat-header { min-height:66px; }
  .messages { padding:12px 8px 18px; }
  .chat-message { padding:9px 8px; }
  .message-avatar { width:38px; height:38px; border-radius:12px; }
  .chat-composer { grid-template-columns:auto minmax(0,1fr); padding:9px; }
  .send-button { grid-column:1/-1; width:100%; }
  .composer-tool { width:38px; height:38px; }
}


/* source: /public/assets/css/chat-user-card.css */
/* ChrisEmm Connect – Benutzerkarte 0.9.9 */

.online-user,
.message-avatar,
.message-meta strong,
.chat-profile-link,
.online-profile-link {
    cursor: pointer;
}

.chat-user-card {
    position: fixed;
    z-index: 7000;
    width: min(340px, calc(100vw - 24px));
    padding: 18px;
    border: 1px solid rgba(129, 148, 255, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(
            155deg,
            rgba(24, 39, 70, 0.99),
            rgba(10, 21, 41, 0.99)
        );
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(16px);
}

.chat-user-card[hidden] {
    display: none;
}

.chat-user-card-close {
    position: absolute;
    top: 9px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    color: var(--muted, #a8b5cc);
    background: transparent;
    cursor: pointer;
    font-size: 1.3rem;
}

.chat-user-card-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.chat-user-card-head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-right: 22px;
}

.chat-user-card-avatar {
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 2px solid rgba(108, 126, 255, 0.58);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.05);
}

.chat-user-card-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-user-card-identity {
    min-width: 0;
}

.chat-user-card-name {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-user-card-role {
    display: inline-flex;
    margin-top: 5px;
    padding: 3px 7px;
    border-radius: 999px;
    color: #bdc7ff;
    background: rgba(109, 124, 255, 0.13);
    font-size: 0.65rem;
    font-weight: 850;
    text-transform: uppercase;
}

.chat-user-card-details {
    display: block;
    margin-top: 5px;
    color: var(--muted, #a8b5cc);
    font-size: 0.72rem;
}

.chat-user-card-online {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #72e1b2;
    font-size: 0.7rem;
    font-weight: 800;
}

.chat-user-card-online i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #56d9a3;
    box-shadow: 0 0 0 4px rgba(86, 217, 163, 0.12);
}

.chat-user-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 17px;
}

.chat-user-card-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 42px;
    margin: 0;
    text-align: center;
}

.chat-user-card-actions > :only-child {
    grid-column: 1 / -1;
}

.chat-user-card-note,
.chat-user-card-loading,
.chat-user-card-error {
    margin: 0;
    color: var(--muted, #a8b5cc);
    font-size: 0.78rem;
    line-height: 1.55;
}

.chat-user-card-error {
    color: #ff9ca6;
}

@media (max-width: 560px) {
    .chat-user-card {
        right: 12px !important;
        bottom: 12px !important;
        left: 12px !important;
        top: auto !important;
        width: auto;
    }
}


/* source: /public/assets/css/profile-social.css */
/* ChrisEmm Connect 1.0 – Freunde und private Profilkommunikation */
.profile-social-actions { margin-top: 18px; }
.profile-social-actions form { display:flex; flex-wrap:wrap; gap:10px; }
.profile-friends-section,
.profile-private-chat {
    margin-top:22px; padding:18px;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(255,255,255,.025);
}
.profile-section-heading {
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    margin-bottom:15px;
}
.profile-section-heading h2 { margin:0; }
.profile-section-heading span { color:var(--muted); font-size:.78rem; }
.profile-friend-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(145px,1fr)); gap:12px;
}
.profile-friend-card {
    display:grid; justify-items:center; gap:5px; padding:14px;
    border:1px solid var(--border); border-radius:14px;
    color:var(--text); text-decoration:none; background:rgba(255,255,255,.025);
}
.profile-friend-card:hover { border-color:rgba(109,124,255,.55); }
.profile-friend-card img {
    width:64px; height:64px; object-fit:cover; border-radius:17px;
}
.profile-friend-card small { color:var(--muted); }
.profile-request-row {
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding:10px 0; border-bottom:1px solid var(--border);
}
.profile-request-row form { display:flex; gap:8px; }
.profile-private-message-list {
    display:grid; gap:10px; max-height:430px; overflow:auto; padding:4px;
}
.profile-private-message-list article {
    max-width:78%; padding:11px 13px; border-radius:14px;
    background:rgba(255,255,255,.055); border:1px solid var(--border);
}
.profile-private-message-list article.is-own { margin-left:auto; background:rgba(109,124,255,.13); }
.profile-private-message-list header { display:flex; justify-content:space-between; gap:12px; font-size:.72rem; }
.profile-private-message-list time { color:var(--muted); }
.profile-private-message-list p { margin:8px 0 0; }
.profile-private-message-list img { display:block; max-width:100%; max-height:320px; margin-top:9px; border-radius:12px; object-fit:contain; }
.profile-private-message-form { display:grid; gap:10px; margin-top:15px; }
.profile-private-message-form textarea { width:100%; }
.button-danger { background:rgba(255,77,97,.14); color:#ff9aa6; border:1px solid rgba(255,77,97,.3); }
@media(max-width:650px) {
    .profile-request-row { align-items:flex-start; flex-direction:column; }
    .profile-private-message-list article { max-width:94%; }
}


/* source: /public/assets/css/profile-friends-ui.css */
/* =========================================================
   ChrisEmm Connect – Freundesystem 1.0.3
   ========================================================= */

.profile-social-actions {
    margin-top: 22px;
}

.profile-friend-action-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(130, 147, 184, 0.18);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
}

.profile-action-button {
    min-height: 42px;
    border-radius: 12px;
}

.profile-friend-state {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 11px;
    font-size: 0.77rem;
    font-weight: 850;
}

.profile-friend-state.is-pending {
    color: #cdd5ff;
    background: rgba(109, 124, 255, 0.13);
}

.profile-friend-state.is-incoming {
    color: #ffe0a2;
    background: rgba(255, 177, 55, 0.12);
}

.profile-friend-state.is-friend {
    color: #8de9bf;
    background: rgba(63, 210, 148, 0.11);
}

.profile-guest-friend-note {
    margin: 0;
    padding: 13px 15px;
    border: 1px solid rgba(130, 147, 184, 0.16);
    border-radius: 13px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.025);
}

.profile-friends-section {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(130, 147, 184, 0.18);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.012)
        );
}

.profile-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.profile-section-heading h2 {
    margin: 0;
    font-size: 1.05rem;
}

.profile-section-heading > span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #cbd4eb;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.72rem;
    font-weight: 800;
}

.profile-friend-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
}

.profile-friend-card {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 0;
    padding: 15px 12px;
    border: 1px solid rgba(130, 147, 184, 0.17);
    border-radius: 15px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.025);
    transition:
        transform 0.16s ease,
        border-color 0.16s ease,
        background 0.16s ease;
}

.profile-friend-card:hover {
    transform: translateY(-2px);
    border-color: rgba(109, 124, 255, 0.52);
    background: rgba(109, 124, 255, 0.07);
}

.profile-friend-avatar {
    position: relative;
    display: block;
    width: 68px;
    height: 68px;
}

.profile-friend-avatar img {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: cover;
    border: 2px solid rgba(118, 136, 241, 0.32);
    border-radius: 18px;
}

.profile-friend-presence {
    position: absolute;
    right: -2px;
    bottom: 2px;
    width: 13px;
    height: 13px;
    border: 3px solid #121d34;
    border-radius: 50%;
}

.profile-friend-presence.is-online {
    background: #54d7a1;
}

.profile-friend-presence.is-offline {
    background: #68758c;
}

.profile-friend-name {
    max-width: 100%;
    overflow: hidden;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-friend-card small {
    max-width: 100%;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-request-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(130, 147, 184, 0.14);
}

.profile-request-row:last-child {
    border-bottom: 0;
}

.profile-request-row form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-private-chat {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(130, 147, 184, 0.18);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.02);
}

.profile-private-message-list {
    display: grid;
    gap: 10px;
    max-height: 440px;
    padding: 4px;
    overflow-y: auto;
}

.profile-private-message-list article {
    max-width: 78%;
    padding: 11px 13px;
    border: 1px solid rgba(130, 147, 184, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.profile-private-message-list article.is-own {
    margin-left: auto;
    border-color: rgba(109, 124, 255, 0.25);
    background: rgba(109, 124, 255, 0.12);
}

.profile-private-message-list article header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.7rem;
}

.profile-private-message-list article time {
    color: var(--muted);
}

.profile-private-message-list article p {
    margin: 7px 0 0;
    overflow-wrap: anywhere;
}

.profile-private-message-list article img {
    display: block;
    max-width: 100%;
    max-height: 330px;
    margin-top: 9px;
    border-radius: 12px;
    object-fit: contain;
}

.profile-private-message-form {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(130, 147, 184, 0.14);
}

.profile-private-message-form textarea {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 92px;
    resize: vertical;
}

.profile-private-message-form label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px dashed rgba(130, 147, 184, 0.28);
    border-radius: 12px;
    color: var(--muted);
    cursor: pointer;
}

.profile-private-message-form label span {
    font-size: 0.72rem;
}

.profile-private-message-form input[type="file"] {
    min-width: 0;
}

.profile-private-upload-preview {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    border: 1px solid rgba(109, 124, 255, 0.2);
    border-radius: 12px;
    background: rgba(109, 124, 255, 0.06);
}

.profile-private-upload-preview[hidden] {
    display: none;
}

.profile-private-upload-preview img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
}

.profile-private-upload-preview span {
    min-width: 0;
    overflow: hidden;
    color: #d8dfef;
    font-size: 0.73rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 680px) {
    .profile-friend-action-form {
        align-items: stretch;
        flex-direction: column;
    }

    .profile-action-button,
    .profile-friend-state {
        justify-content: center;
        width: 100%;
    }

    .profile-request-row {
        align-items: stretch;
        flex-direction: column;
    }

    .profile-request-row form {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .profile-private-message-list article {
        max-width: 94%;
    }

    .profile-private-message-form {
        grid-template-columns: 1fr;
    }

    .profile-private-message-form textarea,
    .profile-private-upload-preview {
        grid-column: 1;
    }
}


/* source: /public/assets/css/community-suite.css */
/* ChrisEmm.de Community Suite 1.1.0 */

.profile-suite {
    max-width: 1180px;
    margin: 24px auto 0;
}

.profile-suite-card {
    padding: 22px;
    border: 1px solid rgba(130,147,184,.18);
    border-radius: 20px;
    background: rgba(255,255,255,.025);
}

.profile-suite-card > h2 {
    margin: 5px 0 18px;
}

.profile-suite-card form {
    display: grid;
    gap: 14px;
}

.profile-suite-card label {
    display: grid;
    gap: 7px;
}

.profile-gallery-settings-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}

.profile-gallery-settings-grid form {
    padding: 17px;
    border: 1px solid rgba(130,147,184,.16);
    border-radius: 16px;
    background: rgba(255,255,255,.02);
}

.profile-gallery-admin-grid,
.profile-public-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 13px;
    margin-top: 18px;
}

.profile-gallery-admin-grid article,
.profile-gallery-tile {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(130,147,184,.16);
    border-radius: 15px;
    color: inherit;
    background: rgba(255,255,255,.025);
}

.profile-gallery-admin-grid img,
.profile-gallery-tile img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 11px;
}

.profile-gallery-tile {
    cursor: pointer;
    text-align: left;
}

.profile-public-gallery {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(130,147,184,.18);
    border-radius: 17px;
    background: rgba(255,255,255,.02);
}

.profile-gallery-empty {
    color: var(--muted);
}

.profile-account-summary {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.profile-account-summary span {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 13px;
    background: rgba(255,255,255,.035);
}

.profile-account-summary small {
    color: var(--muted);
}

.profile-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.profile-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.profile-gallery-lightbox[hidden] {
    display: none;
}

.profile-gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(8px);
}

.profile-gallery-lightbox section {
    position: relative;
    z-index: 2;
    width: min(900px,calc(100vw - 30px));
    max-height: calc(100vh - 40px);
    padding: 18px;
    overflow: auto;
    border-radius: 20px;
    background: #0c172b;
}

.profile-gallery-lightbox section > button {
    position: sticky;
    top: 0;
    float: right;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.1);
    cursor: pointer;
    font-size: 1.5rem;
}

.profile-gallery-lightbox img {
    display: block;
    max-width: 100%;
    max-height: 70vh;
    margin: auto;
    object-fit: contain;
    border-radius: 14px;
}

body.profile-lightbox-open {
    overflow: hidden;
}

.whisper-pro-delete {
    align-self: start;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255,100,120,.24);
    border-radius: 9px;
    background: rgba(255,80,100,.08);
    cursor: pointer;
}

.whisper-pro-clear-chat {
    margin-left: auto;
    padding: 7px 10px;
    border: 1px solid rgba(255,100,120,.24);
    border-radius: 9px;
    color: #ffb0ba;
    background: rgba(255,80,100,.08);
    cursor: pointer;
    font-size: .68rem;
    font-weight: 800;
}

@media (max-width: 760px) {
    .profile-gallery-settings-grid,
    .profile-account-summary {
        grid-template-columns: 1fr;
    }
}


/* Profil-Fusion 1.2.0: ab Privatsphäre identische Karten/Form-Container */
.profile-suite{margin-top:22px}.profile-suite-card{padding:24px;border:1px solid rgba(137,153,194,.2);border-radius:20px;background:rgba(13,25,48,.78);box-shadow:0 18px 55px rgba(0,0,0,.18)}.profile-suite-form,.profile-gallery-settings-grid>form,.profile-suite-card>form{display:grid;gap:15px;margin-top:18px;padding:18px;border:1px solid rgba(137,153,194,.16);border-radius:16px;background:rgba(4,13,30,.42)}.profile-suite-form label,.profile-gallery-settings-grid label,.profile-suite-card>form label{display:grid;gap:7px}.profile-suite-form input,.profile-suite-form select,.profile-suite-form textarea,.profile-gallery-settings-grid input,.profile-gallery-settings-grid select,.profile-gallery-settings-grid textarea,.profile-suite-card>form input,.profile-suite-card>form select,.profile-suite-card>form textarea{box-sizing:border-box;width:100%}.profile-suite-card h2{margin-top:5px}.profile-suite-card .eyebrow{color:#79dfbc;font-weight:900;letter-spacing:.1em;text-transform:uppercase}


/* source: /public/assets/css/profile-modern-140.css */
.profile-center-shell{display:grid;grid-template-columns:260px minmax(0,1fr);gap:24px;align-items:start}.profile-center-nav{position:sticky;top:18px;padding:18px;border:1px solid rgba(148,163,184,.18);border-radius:22px;background:rgba(15,23,42,.88);display:flex;flex-direction:column;gap:5px}.profile-center-nav a,.profile-center-nav span{padding:11px 13px;border-radius:12px;text-decoration:none;color:#cbd5e1}.profile-center-nav a:hover,.profile-center-nav a.active{background:rgba(139,92,246,.18);color:#fff}.profile-center-nav span{margin-top:10px;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:#64748b}.profile-center-user{padding:8px 12px 16px;display:flex;flex-direction:column}.profile-center-user small{color:#94a3b8}.profile-center-content{display:grid;gap:18px}.profile-modern-card,.profile-danger-zone,.gallery-hero,.modern-profile-hero,.profile-tab-nav{border:1px solid rgba(148,163,184,.16);background:linear-gradient(145deg,rgba(15,23,42,.96),rgba(30,41,59,.83));border-radius:24px;padding:24px;box-shadow:0 18px 50px rgba(2,6,23,.24)}.profile-modern-heading,.gallery-hero,.modern-profile-headline{display:flex;justify-content:space-between;gap:18px;align-items:center}.profile-modern-heading h1,.gallery-hero h1{margin:.25rem 0 0}.form-grid{display:grid;gap:16px;margin-top:20px}.form-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}.form-grid .full{grid-column:1/-1}.profile-modern-form label,.gallery-manager-grid label{display:grid;gap:7px}.profile-modern-form input,.profile-modern-form textarea,.profile-modern-form select,.gallery-manager-grid input,.gallery-manager-grid textarea,.gallery-manager-grid select{width:100%;padding:12px 14px;border-radius:12px;border:1px solid rgba(148,163,184,.25);background:#0b1220;color:#fff}.slug-field{display:flex;align-items:center;background:#0b1220;border-radius:12px;padding-left:12px}.slug-field input{border:0!important}.avatar-picker{display:grid;grid-template-columns:repeat(8,minmax(66px,1fr));gap:12px;margin-top:16px}.avatar-picker label{position:relative}.avatar-picker input{position:absolute;opacity:0}.avatar-picker img{width:100%;aspect-ratio:1;border-radius:18px;border:3px solid transparent;background:#0b1220;padding:6px;cursor:pointer}.avatar-picker input:checked+img{border-color:#8b5cf6;transform:translateY(-3px)}.profile-team-notice{padding:14px 18px;border-radius:16px;background:rgba(14,165,233,.14);border:1px solid rgba(14,165,233,.35)}.profile-danger-zone{border-color:rgba(239,68,68,.4)}.gallery-manager-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:22px 0}.gallery-drop{padding:26px;border:2px dashed rgba(139,92,246,.5);border-radius:18px;text-align:center}.gallery-drop input{padding:0;border:0;background:none}.modern-gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:18px}.gallery-tile{overflow:hidden;border-radius:20px;background:#111827;border:1px solid rgba(148,163,184,.16);transition:.2s transform,.2s box-shadow}.gallery-tile:hover{transform:translateY(-6px);box-shadow:0 20px 45px rgba(0,0,0,.32)}.gallery-tile img{width:100%;aspect-ratio:1;object-fit:cover;display:block}.gallery-tile>div{padding:14px;display:grid;gap:4px}.gallery-tile small{color:#94a3b8}.link-danger{border:0;background:none;color:#f87171;padding:5px 0;text-align:left;cursor:pointer}.gallery-empty{grid-column:1/-1;text-align:center;padding:70px 20px;border:2px dashed rgba(148,163,184,.2);border-radius:24px}.modern-profile-page{--accent:#8b5cf6}.accent-blue{--accent:#3b82f6}.accent-emerald{--accent:#10b981}.accent-rose{--accent:#f43f5e}.accent-orange{--accent:#f97316}.accent-gold{--accent:#eab308}.modern-profile-cover{height:220px;border-radius:20px;background:radial-gradient(circle at 20% 20%,var(--accent),transparent 34%),linear-gradient(120deg,#0f172a,#1e293b)}.modern-profile-headline{margin-top:-58px;padding:0 22px 4px;align-items:end}.modern-profile-avatar{width:132px;height:132px;object-fit:cover;border-radius:30px;border:6px solid #0f172a;background:#111827}.modern-profile-title{display:flex;align-items:center;gap:12px;flex:1}.modern-profile-title h1{margin:0;font-size:2rem}.modern-profile-title p{margin:.25rem 0;color:#94a3b8}.online-dot{width:12px;height:12px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 5px rgba(34,197,94,.14)}.profile-tab-nav{display:flex;gap:7px;margin:18px 0;padding:10px}.profile-tab-nav a{padding:11px 16px;text-decoration:none;color:#94a3b8;border-radius:12px}.profile-tab-nav a:hover,.profile-tab-nav a.active{color:#fff;background:color-mix(in srgb,var(--accent) 22%,transparent)}.modern-profile-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(280px,.75fr);gap:20px}.modern-profile-grid main,.modern-profile-grid aside{display:grid;gap:20px;align-content:start}.profile-facts{display:grid;gap:13px}.profile-facts div{display:flex;justify-content:space-between;gap:15px}.profile-facts dt{color:#94a3b8}.profile-facts dd{margin:0;text-align:right}.profile-gallery-preview{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin:12px 0}.profile-gallery-preview img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:10px}.button-block{width:100%;text-align:center}.mini-friends{display:flex;flex-wrap:wrap;gap:8px}.mini-friends a{padding:7px 10px;border-radius:999px;background:rgba(148,163,184,.12);text-decoration:none}.profile-empty-state{padding:24px;border-radius:16px;background:rgba(148,163,184,.07);color:#94a3b8}.button-row{display:flex;gap:10px;flex-wrap:wrap}@media(max-width:900px){.profile-center-shell,.modern-profile-grid{grid-template-columns:1fr}.profile-center-nav{position:static}.gallery-manager-grid,.form-grid.two{grid-template-columns:1fr}.modern-profile-headline{align-items:center;flex-wrap:wrap;margin-top:-45px}.avatar-picker{grid-template-columns:repeat(4,1fr)}}@media(max-width:560px){.modern-profile-cover{height:160px}.modern-profile-avatar{width:100px;height:100px}.profile-tab-nav{overflow:auto}.profile-modern-heading,.gallery-hero{align-items:flex-start;flex-direction:column}.avatar-picker{grid-template-columns:repeat(3,1fr)}}

/* Update 1.5.0 – responsive profile center and complete gallery management */
*,*::before,*::after{box-sizing:border-box}.profile-center-shell,.modern-gallery-page,.modern-profile-page{width:min(100%,1320px);max-width:100%;margin-inline:auto}.profile-center-content,.profile-modern-form,.profile-modern-card,.gallery-management,.modern-gallery-grid{min-width:0}.profile-center-shell img,.modern-gallery-page img,.modern-profile-page img{max-width:100%}.profile-modern-form input,.profile-modern-form select,.profile-modern-form textarea,.gallery-form input,.gallery-form select,.gallery-form textarea{min-width:0;max-width:100%}.gallery-album-nav{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:12px;margin:20px 0}.gallery-album-nav>a{min-width:0;display:flex;align-items:center;gap:12px;padding:12px;border:1px solid rgba(148,163,184,.18);border-radius:18px;background:rgba(15,23,42,.82);color:#e2e8f0;text-decoration:none;transition:.2s}.gallery-album-nav>a:hover,.gallery-album-nav>a.active{transform:translateY(-2px);border-color:rgba(139,92,246,.65);background:rgba(99,102,241,.15)}.gallery-album-nav img{width:54px;height:54px;object-fit:cover;border-radius:13px;flex:0 0 auto}.gallery-album-nav span{display:grid;min-width:0}.gallery-album-nav strong,.gallery-album-nav small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gallery-album-nav small{color:#94a3b8}.gallery-management{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:18px;margin:20px 0}.profile-modern-card>summary,.album-edit-pop>summary,.image-actions>summary{cursor:pointer;list-style:none}.profile-modern-card>summary::-webkit-details-marker,.album-edit-pop>summary::-webkit-details-marker,.image-actions>summary::-webkit-details-marker{display:none}.profile-modern-card>summary span{display:grid;gap:3px}.profile-modern-card>summary small{color:#94a3b8}.gallery-form{display:grid;gap:14px;margin-top:18px}.gallery-form.compact{gap:10px}.gallery-form label{display:grid;gap:6px}.gallery-form input,.gallery-form select,.gallery-form textarea{width:100%;padding:11px 12px;border:1px solid rgba(148,163,184,.25);border-radius:11px;background:#0b1220;color:#fff}.gallery-form textarea{resize:vertical;min-height:84px}.gallery-drop{position:relative;min-height:140px;display:grid!important;place-content:center;text-align:center;padding:24px;border:2px dashed rgba(139,92,246,.5)!important;border-radius:18px;background:rgba(99,102,241,.06);overflow:hidden}.gallery-drop input{position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:pointer}.gallery-drop strong{font-size:1.05rem}.gallery-drop small{color:#94a3b8}.selected-album-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin:24px 0}.selected-album-head h2{margin:.3rem 0}.album-edit-pop{position:relative;flex:0 0 auto}.album-edit-pop[open]{width:min(420px,100%)}.album-edit-pop[open]>.gallery-form,.album-edit-pop[open]>.gallery-delete-form{padding:16px;border:1px solid rgba(148,163,184,.2);background:#0f172a;border-radius:16px;box-shadow:0 20px 50px rgba(0,0,0,.35)}.gallery-delete-form{display:grid;gap:12px;margin-top:12px}.gallery-tile{min-width:0}.gallery-image-link{position:relative;display:block}.cover-badge{position:absolute;left:10px;top:10px;padding:5px 9px;border-radius:999px;background:rgba(15,23,42,.9);font-size:.72rem;font-weight:700}.gallery-tile-body{min-width:0}.gallery-tile-body>strong,.gallery-tile-body>small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.image-actions{margin-top:8px}.image-actions>summary{padding:8px 10px;border-radius:10px;background:rgba(148,163,184,.1);text-align:center}.image-actions[open]>summary{margin-bottom:10px}.check-row{display:flex!important;grid-template-columns:none!important;align-items:center;gap:8px!important}.check-row input{width:auto!important}.button-danger{background:#7f1d2d!important;color:#fff!important;border-color:#be123c!important}.profile-center-nav{min-width:0}.profile-center-nav a{overflow-wrap:anywhere}.profile-modern-heading{flex-wrap:wrap}.profile-modern-heading>div{min-width:0}.avatar-picker{grid-template-columns:repeat(auto-fit,minmax(74px,1fr))}.avatar-picker img{max-height:110px}.modern-gallery-grid{grid-template-columns:repeat(auto-fill,minmax(min(100%,220px),1fr))}
@media(max-width:1100px){.profile-center-shell{grid-template-columns:220px minmax(0,1fr)}.gallery-management{grid-template-columns:1fr}.avatar-picker{grid-template-columns:repeat(4,minmax(68px,1fr))}}
@media(max-width:820px){.profile-center-shell{display:block}.profile-center-nav{position:static;display:flex;flex-direction:row;overflow-x:auto;gap:7px;margin-bottom:18px;padding:10px;scrollbar-width:thin}.profile-center-nav .profile-center-user,.profile-center-nav span{display:none}.profile-center-nav a{flex:0 0 auto;white-space:nowrap}.form-grid.two{grid-template-columns:1fr}.gallery-hero,.selected-album-head,.profile-modern-heading{flex-direction:column;align-items:stretch}.gallery-hero .button-row,.selected-album-head .button-row{width:100%}.album-edit-pop,.album-edit-pop[open]{width:100%}.modern-profile-headline{padding-inline:12px}.modern-profile-grid{grid-template-columns:1fr}}
@media(max-width:600px){.profile-modern-card,.profile-danger-zone,.gallery-hero,.modern-profile-hero,.profile-tab-nav{padding:16px;border-radius:18px}.gallery-album-nav{grid-template-columns:1fr 1fr}.gallery-album-nav>a{padding:9px}.gallery-album-nav img{width:44px;height:44px}.modern-gallery-grid{grid-template-columns:1fr 1fr;gap:10px}.gallery-tile>div{padding:10px}.avatar-picker{grid-template-columns:repeat(3,1fr)}.button-row>.button{flex:1 1 auto;text-align:center}.profile-modern-heading .button{width:100%}.gallery-drop{min-height:120px}.modern-profile-title{min-width:0}.modern-profile-title h1{font-size:1.45rem;overflow-wrap:anywhere}}
.profile-activity-list{display:grid;gap:0;margin-top:14px}.profile-activity-item{position:relative;display:grid;grid-template-columns:44px auto minmax(0,1fr);gap:12px;padding:14px 0;border-bottom:1px solid rgba(148,163,184,.13)}.profile-activity-item:last-child{border-bottom:0}.profile-activity-icon{width:40px;height:40px;display:grid;place-items:center;border-radius:13px;background:color-mix(in srgb,var(--accent) 22%,#0f172a);color:#fff;font-weight:900}.profile-activity-image{width:58px;height:58px;object-fit:cover;border-radius:13px;background:#0b1220}.profile-activity-item p{margin:3px 0;color:#cbd5e1;overflow-wrap:anywhere}.profile-activity-item time{color:#94a3b8;font-size:.78rem}.profile-activity-item a{font-size:.78rem}.profile-activity-icon.type-friend{color:#fb7185}.profile-activity-icon.type-gallery{color:#67e8f9}@media(max-width:520px){.profile-activity-item{grid-template-columns:38px minmax(0,1fr)}.profile-activity-image{grid-column:2;width:100%;height:auto;max-height:220px}.profile-activity-icon{width:36px;height:36px}}
@media(max-width:390px){.gallery-album-nav,.modern-gallery-grid{grid-template-columns:1fr}.avatar-picker{grid-template-columns:repeat(2,1fr)}}


/* source: /public/assets/css/social-status-chat-160.css */
*{box-sizing:border-box}html,body{max-width:100%;overflow-x:hidden}.application,.main-content{width:100%;min-width:0}.main-content{padding-inline:clamp(12px,3vw,42px)}.topbar{display:flex;gap:12px;flex-wrap:wrap}.topbar-user{min-width:0;display:flex;flex-wrap:wrap;gap:8px}.modern-profile-page,.profile-center-shell,.gallery-page{width:min(1440px,100%);margin-inline:auto}.modern-profile-grid{grid-template-columns:minmax(0,2fr) minmax(280px,1fr)}.profile-settings-layout{grid-template-columns:minmax(180px,260px) minmax(0,1fr)}.profile-form-grid,.gallery-manager-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.profile-modern-card,.gallery-card,input,select,textarea{min-width:0;max-width:100%}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:16px}.gallery-grid img,.gallery-image-card img,.status-card img{width:100%;height:auto;max-height:720px;object-fit:contain;background:#070d18;border-radius:16px}.status-composer{display:grid;gap:12px;margin-bottom:18px}.status-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px}.status-card{padding:14px;border:1px solid rgba(255,255,255,.1);border-radius:18px;background:rgba(3,9,20,.55)}.status-card form{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}.hugo-avatar{display:grid;place-items:center;background:linear-gradient(135deg,#27d6c5,#6878ff);font-weight:900}.hugo-message{border-color:rgba(39,214,197,.35)}
@media(max-width:1000px){.modern-profile-grid,.profile-settings-layout{grid-template-columns:1fr}.profile-sidebar{position:static}.profile-form-grid,.gallery-manager-grid{grid-template-columns:1fr}.chat-application{grid-template-columns:minmax(0,1fr)}.chat-sidebar{position:fixed;inset:0 auto 0 0;width:min(88vw,360px);z-index:100;transform:translateX(-105%)}.chat-sidebar.is-open{transform:translateX(0)}}
@media(max-width:700px){.main-content{padding:12px}.topbar{padding:10px}.brand{width:100%}.topbar-user{width:100%}.topbar-navigation-button,.topbar-user form,.topbar-user form button{flex:1 1 auto}.user-summary{order:-1;width:100%}.modern-profile-headline{display:grid;grid-template-columns:1fr;text-align:center}.modern-profile-avatar{margin-inline:auto}.button-row{justify-content:center}.profile-tab-nav{overflow-x:auto;white-space:nowrap}.gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.gallery-grid img{max-height:360px}.footer{padding-inline:12px;text-align:center}}@media(max-width:430px){.gallery-grid{grid-template-columns:1fr}.button,.topbar-navigation-button{min-height:44px}.profile-modern-card{padding:16px}}


/* source: /public/assets/css/avatar-202.css */
/* ChrisEmm Connect 2.0.2 – einheitliche Avatar-Komponenten */

.avatar-upload-panel {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin: 18px 0 24px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.5);
}

.avatar-upload-preview {
    display: block;
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 3px solid rgba(139, 92, 246, 0.45);
    border-radius: 24px;
    background: #0b1220;
}

.avatar-upload-actions {
    display: grid;
    justify-items: start;
    gap: 12px;
}

.avatar-remove-option {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 9px !important;
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.08);
}

.avatar-remove-option input {
    width: auto !important;
}

.avatar-friend-list {
    display: grid;
    gap: 10px;
}

.avatar-friend-chip {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 10px !important;
    border-radius: 14px !important;
}

.avatar-friend-image-wrap {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
}

.avatar-friend-image {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 14px;
    background: #0b1220;
}

.avatar-presence {
    position: absolute;
    right: -2px;
    bottom: 0;
    width: 12px;
    height: 12px;
    border: 3px solid #0f172a;
    border-radius: 50%;
}

.avatar-presence.is-online {
    background: #22c55e;
}

.avatar-presence.is-offline {
    background: #64748b;
}

.status-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.status-author > div {
    display: grid;
}

.status-author small {
    color: #94a3b8;
}

.status-avatar {
    width: 48px !important;
    height: 48px !important;
    max-height: none !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    background: #0b1220 !important;
}

.status-content-image {
    margin-top: 4px;
}

@media (max-width: 620px) {
    .avatar-upload-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .avatar-upload-actions {
        justify-items: center;
    }
}


/* source: /public/assets/css/gallery-modern-220.css */
.modern-gallery-page {
    --gallery-accent: #8b5cf6;
    --gallery-accent-2: #22d3ee;
    display: grid;
    gap: 22px;
}

.modern-gallery-page .gallery-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 210px;
    padding: clamp(24px, 4vw, 44px);
    background:
        radial-gradient(circle at 85% 20%, rgba(34, 211, 238, .24), transparent 32%),
        radial-gradient(circle at 15% 90%, rgba(139, 92, 246, .32), transparent 38%),
        linear-gradient(135deg, #0b1022 0%, #17213c 55%, #101827 100%);
}

.modern-gallery-page .gallery-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to left, #000, transparent 78%);
}

.gallery-hero-copy { max-width: 720px; }
.gallery-hero-copy h1 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.04em; }
.gallery-hero-copy p { max-width: 620px; color: #b8c3d8; font-size: 1.04rem; }

.gallery-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.gallery-stat {
    display: grid;
    min-width: 106px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(6, 12, 27, .55);
    backdrop-filter: blur(12px);
}

.gallery-stat strong { color: #fff; font-size: 1.25rem; }
.gallery-stat small { color: #9aa9c2; }

.gallery-album-nav {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 4px 2px 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.gallery-album-nav > a {
    flex: 0 0 min(250px, 76vw);
    min-height: 82px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, rgba(19,30,54,.94), rgba(10,18,34,.94));
}

.gallery-album-nav > a.active {
    border-color: color-mix(in srgb, var(--gallery-accent) 75%, white);
    box-shadow: 0 12px 36px rgba(76, 29, 149, .22);
}

.gallery-management {
    margin: 0;
    padding: 4px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(139,92,246,.22), rgba(34,211,238,.10), transparent 70%);
}

.gallery-management .profile-modern-card {
    box-shadow: none;
    background: rgba(9, 16, 31, .94);
}

.gallery-drop {
    min-height: 190px;
    transition: border-color .2s, background .2s, transform .2s;
}

.gallery-drop:hover,
.gallery-drop.is-dragging {
    transform: translateY(-2px);
    border-color: var(--gallery-accent-2) !important;
    background: rgba(34, 211, 238, .08);
}

.gallery-file-summary {
    margin: 0;
    color: #a7f3d0;
    font-size: .9rem;
}

.gallery-upload-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}
.gallery-upload-previews:empty { display: none; }
.gallery-upload-previews figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.18);
    border-radius: 14px;
    background: rgba(15,23,42,.72);
}
.gallery-upload-previews img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.gallery-upload-previews figcaption { padding: 8px 9px; overflow: hidden; color: #cbd5e1; font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.gallery-upload-progress { position: relative; overflow: hidden; min-height: 38px; border-radius: 12px; background: rgba(15,23,42,.85); }
.gallery-upload-progress span { position: absolute; inset: 0; width: 40%; background: linear-gradient(90deg,#8b5cf6,#22d3ee); animation: gallery-upload 1.2s ease-in-out infinite alternate; }
.gallery-upload-progress small { position: relative; z-index: 1; display: grid; place-items: center; min-height: 38px; color: white; }
@keyframes gallery-upload { to { transform: translateX(150%); } }

.selected-album-head {
    margin: 0;
    padding: 22px 24px;
    border: 1px solid rgba(148,163,184,.16);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(30,41,59,.86), rgba(15,23,42,.72));
}

.modern-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 20px;
}

.gallery-tile {
    position: relative;
    background: linear-gradient(155deg, rgba(24,34,55,.98), rgba(8,15,29,.98));
    border-radius: 24px;
}

.gallery-image-link { overflow: hidden; background: #070c17; }
.gallery-tile img {
    aspect-ratio: 4 / 3;
    transition: transform .4s ease, filter .4s ease;
}
.gallery-tile:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-tile-body { padding: 16px 17px 18px !important; }
.gallery-tile-body > strong { font-size: 1.03rem; }

.gallery-visibility-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(5,10,20,.8);
    color: #dbeafe;
    font-size: .7rem;
    backdrop-filter: blur(10px);
}

.gallery-lightbox {
    width: min(1100px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 26px;
    background: #080e1b;
    color: #fff;
    box-shadow: 0 30px 100px rgba(0,0,0,.65);
}
.gallery-lightbox::backdrop { background: rgba(2,6,23,.88); backdrop-filter: blur(8px); }
.gallery-lightbox-media { display: grid; place-items: center; min-height: 55vh; background: #030712; }
.gallery-lightbox-media img { width: 100%; max-height: 75vh; object-fit: contain; }
.gallery-lightbox-nav{position:absolute;top:50%;z-index:2;translate:0 -50%;width:48px;height:64px;border:1px solid rgba(255,255,255,.15);border-radius:16px;background:rgba(3,7,18,.68);color:#fff;font-size:2.4rem;cursor:pointer;backdrop-filter:blur(8px)}
.gallery-lightbox-nav.previous{left:14px}.gallery-lightbox-nav.next{right:14px}
.gallery-lightbox-copy p{margin:4px 0 0;color:#cbd5e1}
.gallery-lightbox-footer { display: flex; justify-content: space-between; gap: 18px; padding: 16px 18px; }
.gallery-lightbox-copy { display: grid; gap: 3px; min-width: 0; }
.gallery-lightbox-copy small { color: #94a3b8; }
.gallery-lightbox-close {
    align-self: center;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
}

@media (max-width: 700px) {
    .modern-gallery-page { gap: 16px; }
    .modern-gallery-page .gallery-hero { min-height: 0; }
    .gallery-hero .button-row { margin-top: 8px; }
    .gallery-stat { min-width: 88px; }
    .modern-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .gallery-tile { border-radius: 17px; }
    .gallery-tile-body { padding: 11px !important; }
    .gallery-lightbox-footer { align-items: center; }
    .gallery-lightbox-nav{width:40px;height:54px}.gallery-lightbox-nav.previous{left:7px}.gallery-lightbox-nav.next{right:7px}
}

@media (max-width: 430px) {
    .modern-gallery-grid { grid-template-columns: 1fr; }
}


/* source: /public/assets/css/profile-gallery-3110.css */
/* Profile and gallery experience – 3.11.0 */
.modern-profile-page,
.modern-gallery-page {
    --surface: rgba(13, 22, 41, .92);
    --surface-raised: rgba(21, 33, 58, .95);
    --line: rgba(148, 163, 184, .17);
}

.modern-profile-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #0b1325;
}

.modern-profile-cover {
    position: relative;
    height: clamp(210px, 27vw, 320px);
    border-radius: 0;
    background:
        radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--accent) 82%, white), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(34, 211, 238, .32), transparent 26%),
        linear-gradient(125deg, #121c35, #111a2e 48%, #08111f);
}

.modern-profile-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, #0b1325, transparent 60%),
        linear-gradient(115deg, transparent 35%, rgba(255,255,255,.06) 35.2%, transparent 35.5%);
}

.modern-profile-headline {
    position: relative;
    z-index: 1;
    margin-top: -76px;
    padding: 0 clamp(20px, 4vw, 42px) 30px;
    align-items: flex-end;
}

.modern-profile-avatar {
    width: clamp(118px, 12vw, 158px);
    height: clamp(118px, 12vw, 158px);
    border: 6px solid #0b1325;
    border-radius: 36px;
    box-shadow: 0 22px 50px rgba(2,6,23,.5);
}

.modern-profile-title { align-items: flex-end; }
.modern-profile-title > div { min-width: 0; }
.modern-profile-title h1 {
    margin: 4px 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -.045em;
    line-height: 1;
}

.profile-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border: 1px solid color-mix(in srgb, var(--accent) 48%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: #eef2ff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.profile-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.profile-hero-stats a {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(3, 8, 20, .42);
    color: #cbd5e1;
    text-decoration: none;
}
.profile-hero-stats a:hover { border-color: var(--accent); color: #fff; }
.profile-hero-stats strong { color: #fff; font-size: 1rem; }
.profile-hero-stats span { font-size: .78rem; }

.modern-profile-headline > .button-row {
    justify-content: flex-end;
    max-width: 420px;
}

.profile-tab-nav {
    position: sticky;
    z-index: 12;
    top: 10px;
    margin: 18px 0 22px;
    padding: 8px;
    overflow-x: auto;
    border-radius: 18px;
    background: rgba(10, 18, 34, .86);
    backdrop-filter: blur(18px);
}
.profile-tab-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.profile-tab-nav a i { color: color-mix(in srgb, var(--accent) 75%, white); }

.profile-modern-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--surface-raised), var(--surface));
}
.profile-modern-card:hover { border-color: rgba(148,163,184,.28); }
.profile-about-card { padding-left: clamp(24px, 8vw, 104px); }
.profile-card-icon {
    position: absolute;
    left: 24px;
    top: 24px;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--accent) 20%, #111827);
    color: color-mix(in srgb, var(--accent) 70%, white);
    font-size: 1.35rem;
}
.profile-gallery-preview { gap: 9px; }
.profile-gallery-preview a { overflow: hidden; border-radius: 14px; }
.profile-gallery-preview img { border-radius: 14px; transition: transform .3s ease; }
.profile-gallery-preview a:hover img { transform: scale(1.06); }

.gallery-hero-symbol {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(139,92,246,.35), rgba(34,211,238,.16));
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 20px 50px rgba(2,6,23,.3);
}

.gallery-browser {
    display: grid;
    gap: 18px;
    padding: clamp(14px, 2vw, 22px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(7, 13, 26, .5);
}
.gallery-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 12px;
    align-items: center;
}
.gallery-toolbar > label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(15,23,42,.9);
    color: #94a3b8;
}
.gallery-toolbar input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}
.gallery-toolbar input::placeholder { color: #78879e; }
.gallery-toolbar [data-gallery-result-count] { color: #94a3b8; font-size: .86rem; white-space: nowrap; }
.gallery-view-buttons { display: flex; gap: 5px; padding: 4px; border: 1px solid var(--line); border-radius: 13px; }
.gallery-view-buttons button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
}
.gallery-view-buttons button:hover,
.gallery-view-buttons button.active { background: rgba(99,102,241,.22); color: #fff; }

.gallery-tile { content-visibility: auto; contain-intrinsic-size: 360px; }
.gallery-tile-body > p {
    display: -webkit-box;
    margin: 5px 0;
    overflow: hidden;
    color: #aebbd0;
    font-size: .86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.modern-gallery-grid.is-compact { grid-template-columns: 1fr; }
.modern-gallery-grid.is-compact .gallery-tile {
    display: grid;
    grid-template-columns: minmax(150px, 250px) minmax(0, 1fr);
}
.modern-gallery-grid.is-compact .gallery-image-link { height: 100%; }
.modern-gallery-grid.is-compact .gallery-image-link img { height: 100%; min-height: 170px; aspect-ratio: auto; }
.modern-gallery-grid.is-compact .gallery-tile-body { align-content: center; }

.gallery-filter-empty {
    padding: 58px 20px;
    border: 2px dashed rgba(148,163,184,.18);
    border-radius: 22px;
    text-align: center;
    color: #94a3b8;
}
.gallery-filter-empty i { display: block; margin-bottom: 12px; color: #8b5cf6; font-size: 1.8rem; }
.gallery-filter-empty strong { display: block; color: #e2e8f0; font-size: 1.05rem; }
.gallery-filter-empty p { margin-bottom: 0; }

@media (max-width: 900px) {
    .modern-profile-headline { align-items: flex-start; }
    .modern-profile-headline > .button-row { max-width: none; }
    .gallery-hero-symbol { width: 64px; height: 64px; border-radius: 20px; }
}

@media (max-width: 650px) {
    .modern-profile-headline { margin-top: -60px; }
    .modern-profile-title { align-items: center; }
    .modern-profile-headline > .button-row { width: 100%; }
    .profile-about-card { padding-left: 18px; padding-top: 84px; }
    .profile-card-icon { left: 18px; top: 18px; }
    .gallery-toolbar { grid-template-columns: 1fr auto; }
    .gallery-toolbar > label { grid-column: 1 / -1; }
    .modern-gallery-grid.is-compact .gallery-tile { grid-template-columns: 120px minmax(0, 1fr); }
    .modern-gallery-grid.is-compact .gallery-image-link img { min-height: 145px; }
}

@media (max-width: 430px) {
    .modern-profile-title { align-items: flex-start; }
    .modern-profile-avatar { border-radius: 28px; }
    .modern-gallery-grid.is-compact .gallery-tile { display: block; }
    .modern-gallery-grid.is-compact .gallery-image-link img { height: auto; aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-tile,
    .gallery-tile img,
    .profile-gallery-preview img { transition: none !important; }
}


/* source: /public/assets/css/chat-bot-230.css */
.chat-message.role-bot {
    margin-block: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(34, 211, 238, .28);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(8, 47, 73, .52), rgba(76, 29, 149, .28));
}
.chat-message.role-bot .message-avatar {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22d3ee, #8b5cf6);
}
.chat-message.role-bot .message-avatar::after {
    content: "H";
    color: #fff;
    font-weight: 900;
}
.chat-message.role-bot .message-avatar img { display: none; }
.chat-message.role-bot .message-meta strong { color: #67e8f9; }
.chat-message.role-bot .role-badge {
    color: #ddd6fe;
    background: rgba(139, 92, 246, .22);
}
.chat-message.role-bot .message-text { color: #e0f2fe; }


/* source: /public/assets/css/chat-social-330.css */
.chat-social-actions{display:flex;align-items:center;gap:8px;margin-top:7px;opacity:.72;transition:opacity .2s}.chat-message:hover .chat-social-actions{opacity:1}.chat-social-actions button{border:1px solid rgba(148,163,184,.16);border-radius:999px;background:rgba(15,23,42,.56);color:inherit;cursor:pointer;padding:4px 8px}.chat-reply-reference{display:grid;width:100%;gap:2px;margin-bottom:7px;padding:8px 10px;text-align:left;border:0;border-left:3px solid #8b5cf6;border-radius:8px;background:rgba(139,92,246,.1);color:inherit;cursor:pointer}.chat-reply-reference span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#94a3b8}.chat-reply-composer{grid-column:1/-1;display:flex;justify-content:space-between;gap:10px;padding:9px 12px;border:1px solid rgba(139,92,246,.35);border-radius:12px;background:rgba(139,92,246,.12)}.chat-reply-composer span{display:grid;min-width:0}.chat-reply-composer small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.chat-reply-composer button{border:0;background:transparent;color:inherit;font-size:1.3rem}.chat-message.is-highlighted{animation:message-highlight 1.6s ease}@keyframes message-highlight{50%{box-shadow:0 0 0 3px rgba(139,92,246,.55);background:rgba(139,92,246,.14)}}.notification-center{position:fixed;right:18px;bottom:86px;z-index:850}.notification-launch{position:relative;width:48px;height:48px;border:1px solid rgba(255,255,255,.14);border-radius:16px;background:#111c33;color:#fff;font-size:1.2rem;box-shadow:0 15px 38px rgba(0,0,0,.32)}.notification-launch strong{position:absolute;right:-5px;top:-6px;min-width:21px;padding:3px;border-radius:999px;background:#ef476f;font-size:.7rem}.notification-center section{position:absolute;right:0;bottom:58px;width:min(390px,calc(100vw - 24px));max-height:min(560px,75vh);overflow:auto;border:1px solid rgba(148,163,184,.2);border-radius:20px;background:#0b1427;box-shadow:0 24px 70px rgba(0,0,0,.5)}.notification-center section header{position:sticky;top:0;display:flex;align-items:center;gap:8px;padding:14px;background:#101c33}.notification-center h2{margin:0 auto 0 0;font-size:1rem}.notification-center header button{border:0;background:transparent;color:#cbd5e1}.notification-center section>div{display:grid}.notification-center a{display:grid;gap:3px;padding:13px 15px;border-bottom:1px solid rgba(148,163,184,.1);color:#e2e8f0;text-decoration:none}.notification-center a.is-unread{background:rgba(99,102,241,.13)}.notification-center a span,.notification-center a small{color:#94a3b8}@media(max-width:700px){.chat-social-actions{opacity:1}.notification-center{right:10px;bottom:76px}.notification-center section{position:fixed;inset:10px 10px auto;max-height:calc(100dvh - 20px)}}

.chat-feedback-actions{display:flex;align-items:center;gap:5px}
.chat-feedback-actions button{display:inline-flex;align-items:center;gap:6px;min-height:30px;padding:4px 9px}
.chat-feedback-actions button strong{min-width:16px;color:#94a3b8;font-size:.72rem;font-weight:800}
.chat-feedback-actions button.is-mine{border-color:#60a5fa;background:rgba(59,130,246,.16);color:#dbeafe}
.chat-feedback-actions button[data-reaction="unlike"].is-mine{border-color:#f87171;background:rgba(239,68,68,.13);color:#fee2e2}
@media(max-width:700px){.chat-feedback-actions button{min-height:36px;padding:6px 10px}.chat-feedback-actions button>span{display:none}}


/* 3.24.4 – Like/Unlike user hover */
.chat-feedback-actions button[data-reaction]{
    position:relative;
}
.chat-feedback-tooltip{
    position:absolute;
    left:50%;
    bottom:calc(100% + 9px);
    z-index:980;
    width:max-content;
    max-width:min(300px,70vw);
    padding:8px 10px;
    border:1px solid rgba(148,163,184,.22);
    border-radius:10px;
    background:#081225;
    color:#f8fafc;
    box-shadow:0 12px 30px rgba(0,0,0,.38);
    font-size:.75rem;
    font-weight:600;
    line-height:1.4;
    text-align:left;
    white-space:normal;
    pointer-events:none;
    opacity:0;
    visibility:hidden;
    transform:translate(-50%,5px);
    transition:opacity .14s ease,transform .14s ease,visibility .14s ease;
}
.chat-feedback-tooltip[hidden]{
    display:none!important;
}
.chat-feedback-actions button.has-reactions:hover .chat-feedback-tooltip,
.chat-feedback-actions button.has-reactions:focus-visible .chat-feedback-tooltip{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
}
.chat-feedback-actions button[data-reaction="like"] .chat-feedback-tooltip{
    border-color:rgba(96,165,250,.28);
}
.chat-feedback-actions button[data-reaction="unlike"] .chat-feedback-tooltip{
    border-color:rgba(248,113,113,.28);
}
@media(max-width:700px){
    .chat-feedback-tooltip{
        max-width:min(260px,78vw);
    }
}


/* 3.24.5 – Reaktion umschalten / zurücknehmen */
.chat-feedback-actions button[data-reaction]{
    transition:background-color .15s ease,border-color .15s ease,color .15s ease,transform .15s ease;
}
.chat-feedback-actions button[data-reaction]:not(.is-mine):hover{
    transform:translateY(-1px);
}
.chat-feedback-actions button[data-reaction].is-mine{
    font-weight:800;
}
.chat-feedback-actions button[data-reaction="like"].is-mine{
    border-color:#60a5fa;
    background:rgba(59,130,246,.20);
    color:#dbeafe;
}
.chat-feedback-actions button[data-reaction="unlike"].is-mine{
    border-color:#f87171;
    background:rgba(239,68,68,.18);
    color:#fee2e2;
}


.radio-wish-live-popup{position:fixed;right:24px;bottom:154px;z-index:1100;display:grid;grid-template-columns:auto 1fr;gap:14px;width:min(430px,calc(100vw - 28px));padding:20px;border:1px solid rgba(129,140,248,.55);border-radius:22px;background:linear-gradient(145deg,#172554,#0f172a 62%,#312e81);color:#fff;box-shadow:0 28px 80px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.05);animation:radio-wish-in .28s ease-out}
.radio-wish-live-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:17px;background:linear-gradient(135deg,#8b5cf6,#4f46e5);font-size:1.25rem;box-shadow:0 12px 28px rgba(79,70,229,.38)}
.radio-wish-live-popup>div{display:grid;gap:5px;min-width:0}.radio-wish-live-popup small{color:#a5b4fc;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.radio-wish-live-popup strong{font-size:1.12rem}.radio-wish-live-popup p{margin:2px 0 8px;color:#dbeafe;line-height:1.45}.radio-wish-live-popup [data-open-wishes]{justify-self:start;border:1px solid rgba(255,255,255,.18);border-radius:12px;background:#6366f1;color:#fff;padding:9px 13px;font-weight:800;cursor:pointer}.radio-wish-live-close{position:absolute;right:11px;top:9px;border:0;background:transparent;color:#cbd5e1;font-size:1.3rem;cursor:pointer}
@keyframes radio-wish-in{from{opacity:0;transform:translateY(16px) scale(.97)}to{opacity:1;transform:none}}
@media(max-width:700px){.radio-wish-live-popup{right:14px;bottom:136px;padding:17px}.radio-wish-live-icon{width:46px;height:46px}}


/* source: /public/assets/css/notification-actions-3204.css */
.notification-center section header {
    flex-wrap: wrap;
}

.notification-center section header button {
    white-space: nowrap;
    cursor: pointer;
}

.notification-center section header button[data-delete-all] {
    color: #fda4af;
}

.notification-manager-actions .button-danger {
    white-space: nowrap;
}

@media (max-width: 520px) {
    .notification-center section header h2 {
        flex-basis: 100%;
    }
}


/* source: /public/assets/css/roles-340.css */
.role-admin-modern{display:grid;gap:22px}.role-heading{align-items:center}.role-heading-stat{display:grid;min-width:150px;padding:18px 22px;border:1px solid rgba(139,92,246,.35);border-radius:18px;background:linear-gradient(135deg,rgba(124,58,237,.18),rgba(34,211,238,.08));text-align:center}.role-heading-stat strong{font-size:2rem;color:#fff}.role-heading-stat span{color:#a5b4fc}.role-section-heading{display:flex;align-items:center;gap:14px;margin-bottom:22px}.role-section-heading h2,.role-section-heading p{margin:0}.role-section-heading p{margin-top:4px;color:#94a3b8}.role-section-icon{display:grid;place-items:center;width:48px;height:48px;border-radius:15px;background:linear-gradient(135deg,#7c3aed,#0891b2);color:#fff;font-size:1.1rem}.role-editor{display:grid;gap:22px}.role-basics{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.role-basics label,.role-card label,.role-assignment label{display:grid;gap:7px}.role-basics label>span,.role-card label>span,.role-assignment label>span{font-weight:700;color:#dbeafe}.role-basics small{color:#8391a8}.role-icon-field{display:grid;grid-template-columns:44px 1fr;gap:8px}.role-icon-field i{display:grid;place-items:center;border:1px solid rgba(148,163,184,.18);border-radius:10px;background:#0b1220;color:#a78bfa}.permission-groups{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}.permission-groups fieldset{min-width:0;padding:17px;border:1px solid rgba(148,163,184,.16);border-radius:16px;background:rgba(2,6,23,.25)}.permission-groups legend{padding:0 8px;color:#c4b5fd;font-weight:800}.permission-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.permission-grid.compact{grid-template-columns:1fr}.permission-toggle{display:grid!important;grid-template-columns:auto 1fr;align-items:center;gap:10px;padding:11px 12px;border:1px solid rgba(148,163,184,.12);border-radius:12px;background:rgba(15,23,42,.58);cursor:pointer}.permission-toggle input{position:absolute;opacity:0;pointer-events:none}.permission-switch{position:relative;width:38px;height:22px;border-radius:999px;background:#334155;transition:.2s}.permission-switch:after{content:"";position:absolute;top:3px;left:3px;width:16px;height:16px;border-radius:50%;background:#fff;transition:.2s}.permission-toggle input:checked+.permission-switch{background:linear-gradient(90deg,#7c3aed,#06b6d4)}.permission-toggle input:checked+.permission-switch:after{transform:translateX(16px)}.permission-toggle>span:last-child{display:grid}.permission-toggle small{color:#8290a7;font-size:.72rem}.role-submit{justify-self:start;min-width:240px}.role-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(330px,1fr));gap:16px}.role-card{display:grid;gap:15px;padding:19px;border:1px solid color-mix(in srgb,var(--role-color) 50%,#26334a);border-radius:20px;background:linear-gradient(155deg,color-mix(in srgb,var(--role-color) 10%,#172033),#0b1323)}.role-card header{display:grid;grid-template-columns:50px 1fr;align-items:center;gap:12px}.role-card-icon{display:grid;place-items:center;width:50px;height:50px;border-radius:15px;background:color-mix(in srgb,var(--role-color) 18%,#111827);color:var(--role-color);font-size:1.35rem}.role-card header div{display:grid;gap:4px}.role-card header input{border:0;background:transparent;padding:0;color:#fff;font-size:1.16rem;font-weight:800}.role-card header small{color:#94a3b8}.role-card-basics{display:grid;grid-template-columns:1fr 90px 1fr;gap:10px}.role-card input,.role-card select,.role-editor input,.role-editor select,.role-assignment select{width:100%}.role-card details{border:1px solid rgba(148,163,184,.13);border-radius:14px}.role-card summary{display:flex;justify-content:space-between;padding:13px;cursor:pointer;font-weight:700}.role-card summary span{color:var(--role-color);font-size:.8rem}.role-card details .permission-grid{padding:0 10px 10px}.role-empty{display:grid;place-items:center;gap:8px;padding:35px;color:#94a3b8;text-align:center}.role-empty i{font-size:2rem;color:#8b5cf6}.role-empty strong{color:#e2e8f0}.role-empty p{margin:0}.role-assignment{display:grid;grid-template-columns:1fr auto 1fr auto;align-items:end;gap:12px}.role-assignment-arrow{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:rgba(139,92,246,.14);color:#a78bfa}@media(max-width:900px){.permission-groups{grid-template-columns:1fr}.role-assignment{grid-template-columns:1fr 1fr}.role-assignment-arrow{display:none}.role-assignment button{grid-column:1/-1}.role-card-basics{grid-template-columns:1fr 80px}}@media(max-width:650px){.role-heading{align-items:flex-start;flex-direction:column}.role-heading-stat{width:100%}.role-basics,.permission-grid,.role-assignment{grid-template-columns:1fr}.role-card-grid{grid-template-columns:1fr}.role-card-basics{grid-template-columns:1fr}.role-submit{width:100%}.role-assignment button{grid-column:auto}}


/* source: /public/assets/css/admin-team-branding-250.css */
.admin-navigation-350{position:relative;z-index:30;display:grid;gap:10px;margin-bottom:22px}
.admin-nav-primary{display:flex;gap:9px;justify-content:space-between}
.admin-nav-primary a,.admin-navigation-350 summary,.admin-navigation-350 details a{display:flex;align-items:center;gap:9px;min-height:44px;padding:10px 14px;border:1px solid var(--border);border-radius:12px;color:var(--text);background:var(--surface-soft);text-decoration:none;font-weight:800}
.admin-nav-primary a.is-active,.admin-navigation-350 details a.is-active{border-color:rgba(99,102,241,.55);background:rgba(99,102,241,.14);color:#fff}
.admin-nav-chat{margin-left:auto}
.admin-nav-groups{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;align-items:start}
.admin-navigation-350 details{position:relative;min-width:0}
.admin-navigation-350 summary{justify-content:space-between;cursor:pointer;list-style:none;user-select:none}
.admin-navigation-350 summary::-webkit-details-marker{display:none}
.admin-navigation-350 summary>span{display:flex;align-items:center;gap:9px;min-width:0}
.admin-nav-chevron{font-size:.72rem;transition:transform .2s}
.admin-navigation-350 details[open] .admin-nav-chevron{transform:rotate(180deg)}
.admin-navigation-350 details>div{position:absolute;left:0;right:0;top:calc(100% + 5px);display:grid;gap:5px;padding:8px;border:1px solid var(--border);border-radius:14px;background:var(--surface);box-shadow:0 18px 45px rgba(0,0,0,.34)}
.admin-navigation-350 details a{min-height:40px;padding:8px 10px;border:0;background:transparent;color:var(--text-soft);font-weight:700}
.admin-navigation-350 details a:hover{background:var(--surface-soft);color:var(--text)}
.admin-navigation-350 i{width:18px;text-align:center}
.admin-settings-group{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;padding:18px;border:1px solid var(--border);border-radius:14px}.admin-settings-group legend{padding:0 8px;font-weight:900}
.copyright-lock{display:grid;gap:4px;padding:14px;border:1px solid rgba(89,213,155,.25);border-radius:12px;background:rgba(89,213,155,.08)}.copyright-lock span{color:var(--muted)}
.brand-logo{display:block;max-width:180px;max-height:48px;object-fit:contain}
.team-role-mark{display:inline-flex;align-items:center;gap:5px;font-weight:900}.team-role-mark i{font-size:.82em}
.role-admin .message-content,.role-moderator .message-content{border-color:color-mix(in srgb,var(--team-color,currentColor) 38%,transparent)}
@media(max-width:900px){.admin-nav-groups{grid-template-columns:repeat(2,minmax(0,1fr))}.admin-navigation-350 details>div{position:static;margin-top:5px}}
@media(max-width:560px){.admin-nav-primary{display:grid;grid-template-columns:1fr 1fr}.admin-nav-chat{margin:0}.admin-nav-groups,.admin-settings-group{grid-template-columns:1fr}.admin-navigation-350 details>div{position:static}.admin-navigation-350 summary,.admin-nav-primary a{justify-content:flex-start}}


/* source: /public/assets/css/giphy-260.css */
.chat-giphy-image {
    display: block;
    width: min(360px, 100%);
    max-height: 300px;
    margin-top: 9px;
    object-fit: contain;
    border-radius: 12px;
}

.giphy-panel {
    position: fixed;
    z-index: 1000;
    right: 24px;
    bottom: 96px;
    width: min(520px, calc(100vw - 24px));
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text, #fff);
    background: var(--surface, #0b1629);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.giphy-panel[hidden] { display: none; }
.giphy-panel header { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.giphy-panel input { min-width: 0; padding: 10px; border: 1px solid var(--border); border-radius: 10px; color: var(--text, #fff); background: var(--surface-soft, #071020); }
.giphy-results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; max-height: 330px; margin-top: 10px; overflow: auto; }
.giphy-results button { padding: 0; border: 0; border-radius: 8px; overflow: hidden; background: transparent; cursor: pointer; }
.giphy-results img { display: block; width: 100%; height: 105px; object-fit: cover; }
.giphy-panel small { display: block; margin-top: 8px; color: var(--muted); text-align: right; }

@media (max-width: 520px) {
    html.giphy-panel-open { overflow: hidden; }
    .giphy-panel {
        inset: max(64px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
        width: auto;
        max-height: none;
        display: flex;
        flex-direction: column;
    }
    .giphy-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: none;
        min-height: 0;
        flex: 1;
    }
    .giphy-panel header input { font-size: 16px; }
    .giphy-panel [data-close] { min-width: 44px; min-height: 44px; }
}


/* source: /public/assets/css/chat-smilies-3240.css */
.chat-smiley-panel{
    position:absolute;
    left:0;
    bottom:calc(100% + 10px);
    z-index:520;
    width:min(520px,calc(100vw - 32px));
    max-height:min(520px,65vh);
    display:grid;
    grid-template-rows:auto auto auto minmax(0,1fr);
    gap:10px;
    padding:12px;
    border:1px solid rgba(148,163,184,.18);
    border-radius:18px;
    background:#0b1427;
    box-shadow:0 22px 60px rgba(0,0,0,.48);
}
.chat-smiley-panel[hidden]{display:none}
.chat-smiley-header{display:flex;align-items:center;gap:8px}
.chat-smiley-header strong{display:flex;align-items:center;gap:8px;font-size:.95rem}
.chat-smiley-header>button{margin-left:auto;width:34px;height:34px;border:0;border-radius:10px;background:rgba(148,163,184,.10);color:#e2e8f0;font-size:1.3rem;cursor:pointer}
.chat-smiley-search-wrap{position:relative}
.chat-smiley-search-wrap>i{position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#64748b;font-size:.8rem}
.chat-smiley-search-wrap input{width:100%;min-height:40px;padding:8px 12px 8px 34px;border:1px solid rgba(148,163,184,.16);border-radius:12px;background:rgba(15,23,42,.8);color:#f8fafc;outline:none}
.chat-smiley-search-wrap input:focus{border-color:rgba(96,165,250,.5);box-shadow:0 0 0 3px rgba(59,130,246,.10)}
.chat-smiley-categories{display:flex;gap:6px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.chat-smiley-categories::-webkit-scrollbar{display:none}
.chat-smiley-categories button{flex:0 0 auto;min-height:34px;padding:6px 10px;border:1px solid rgba(148,163,184,.14);border-radius:999px;background:rgba(148,163,184,.06);color:#cbd5e1;font-size:.78rem;font-weight:700;cursor:pointer}
.chat-smiley-categories button.is-active{border-color:rgba(96,165,250,.42);background:rgba(59,130,246,.16);color:#fff}
.chat-smiley-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:7px;overflow-y:auto;padding-right:2px}
.chat-smiley-item{min-width:0;display:grid;place-items:center;gap:5px;padding:8px 4px;border:1px solid transparent;border-radius:12px;background:transparent;color:#cbd5e1;cursor:pointer;touch-action:manipulation}
.chat-smiley-item:hover{border-color:rgba(148,163,184,.16);background:rgba(148,163,184,.07)}
.chat-smiley-item img{width:38px;height:38px;object-fit:contain;pointer-events:none}
.chat-smiley-item span{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.68rem;text-align:center}
.chat-smiley-empty{min-height:120px;display:grid;place-items:center;align-content:center;gap:8px;color:#64748b;text-align:center}
.chat-smiley-empty i{font-size:1.5rem}
.chat-smiley-inline{display:inline-block;width:30px;height:30px;margin:0 2px;object-fit:contain;vertical-align:middle}
.chat-smiley-toggle i{font-size:1rem}

@media(max-width:700px){
    .chat-smiley-panel{
        position:fixed;
        left:10px;
        right:10px;
        bottom:calc(82px + env(safe-area-inset-bottom));
        width:auto;
        max-height:min(62dvh,520px);
        z-index:2147481400;
    }
    .chat-smiley-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
    .chat-smiley-item{min-height:62px}
    .chat-smiley-item img{width:40px;height:40px}
}
@media(max-width:390px){
    .chat-smiley-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}

/* 3.24.4: hidden empty-state must stay hidden even though the base class uses display:grid. */
.chat-smiley-empty[hidden]{display:none!important}


/* source: /public/assets/css/admin-smilies-3240.css */
.admin-smilies-page{display:grid;gap:18px}
.admin-page-hero{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;padding:22px;border:1px solid var(--border);border-radius:18px;background:linear-gradient(135deg,rgba(59,130,246,.10),rgba(139,92,246,.06))}
.admin-page-hero h1{margin:.25rem 0 .4rem}
.admin-page-hero p{margin:0;color:var(--muted)}
.admin-smiley-summary{display:flex;gap:10px}
.admin-smiley-summary span{min-width:95px;display:grid;gap:2px;padding:12px;border:1px solid var(--border);border-radius:14px;background:rgba(15,23,42,.38);text-align:center}
.admin-smiley-summary strong{font-size:1.25rem;color:#fff}
.admin-smiley-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:18px}
.admin-smiley-form,.admin-smiley-edit{display:grid;gap:11px}
.admin-smiley-form label,.admin-smiley-edit label{display:grid;gap:5px}
.admin-smiley-form label>span,.admin-smiley-edit label>span{font-size:.78rem;font-weight:800;color:var(--muted)}
.admin-smiley-form input,.admin-smiley-form select,.admin-smiley-edit input,.admin-smiley-edit select{width:100%;min-height:42px;padding:8px 10px;border:1px solid var(--border);border-radius:10px;background:rgba(15,23,42,.5);color:inherit}
.admin-smiley-form small,.admin-smiley-edit small{color:var(--muted);font-size:.72rem}
.admin-smiley-check{display:flex!important;grid-template-columns:auto 1fr!important;align-items:center!important;gap:8px!important}
.admin-smiley-check input{width:18px!important;min-height:18px!important}
.admin-smiley-category-list{display:grid;gap:9px;margin-top:16px}
.admin-smiley-category-list>article{display:grid;grid-template-columns:1fr auto;gap:8px;padding:11px;border:1px solid var(--border);border-radius:13px}
.admin-smiley-category-edit{display:grid;grid-template-columns:minmax(160px,1fr) minmax(120px,1fr) 100px auto auto;gap:8px;align-items:end}
.admin-smiley-category-title{grid-column:1/-1;display:flex;align-items:center;gap:8px}
.admin-smiley-category-title small{margin-left:auto;color:var(--muted)}
.admin-smiley-delete{width:38px;height:38px;border:1px solid rgba(239,68,68,.25);border-radius:10px;background:rgba(239,68,68,.08);color:#fca5a5;cursor:pointer}
.admin-smiley-delete:disabled{opacity:.35;cursor:not-allowed}
.admin-smiley-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:14px}
.admin-smiley-grid>article{display:grid;gap:12px;padding:13px;border:1px solid var(--border);border-radius:15px;background:rgba(15,23,42,.28)}
.admin-smiley-grid>article.is-inactive{opacity:.62}
.admin-smiley-preview{position:relative;min-height:108px;display:grid;place-items:center;border-radius:12px;background:rgba(2,6,23,.35)}
.admin-smiley-preview img{max-width:82px;max-height:82px;object-fit:contain}
.admin-smiley-preview>span{position:absolute;right:8px;top:8px;padding:4px 7px;border-radius:999px;background:#334155;color:#cbd5e1;font-size:.68rem;font-weight:800}
.admin-smiley-empty{min-height:150px;display:grid;place-items:center;align-content:center;gap:8px;padding:24px;border:1px dashed var(--border);border-radius:14px;color:var(--muted);text-align:center}
.admin-smiley-empty i{font-size:1.7rem}
@media(max-width:900px){.admin-smiley-layout{grid-template-columns:1fr}.admin-smiley-category-edit{grid-template-columns:1fr 110px auto}.admin-smiley-category-edit .admin-smiley-category-title{grid-column:1/-1}}
@media(max-width:600px){.admin-page-hero{align-items:stretch;flex-direction:column}.admin-smiley-summary span{flex:1}.admin-smiley-category-edit{grid-template-columns:1fr}.admin-smiley-category-list>article{grid-template-columns:1fr}.admin-smiley-delete{width:100%}.admin-smiley-grid{grid-template-columns:1fr}}

