/* /Components/ChatComponent.razor.rz.scp.css */
.chat-shell[b-gvhyt2z93n] {
    height: 100dvh;
    width: 100%;
    padding: 0;
    background:
            radial-gradient(circle at top left, rgba(88, 101, 242, 0.16), transparent 28%),
            radial-gradient(circle at bottom right, rgba(0, 200, 255, 0.12), transparent 24%),
            linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.chat-app[b-gvhyt2z93n] {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: 100dvh;
    width: 100%;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: rgba(17, 24, 39, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: none;
}

.chat-sidebar[b-gvhyt2z93n] {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.chat-sidebar-header[b-gvhyt2z93n],
.chat-main-header[b-gvhyt2z93n] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-title[b-gvhyt2z93n],
.chat-room-title[b-gvhyt2z93n] {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
}

.chat-subtitle[b-gvhyt2z93n],
.chat-room-subtitle[b-gvhyt2z93n],
.chat-user-status[b-gvhyt2z93n],
.chat-section-title[b-gvhyt2z93n] {
    color: #94a3b8;
    font-size: 0.85rem;
}

.chat-userlist[b-gvhyt2z93n] {
    padding: 1rem;
    overflow-y: auto;
}

.chat-section-title[b-gvhyt2z93n] {
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.chat-user[b-gvhyt2z93n] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, transform 0.2s ease;
}

.chat-user:hover[b-gvhyt2z93n] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.chat-user.is-current-user[b-gvhyt2z93n] {
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(129, 140, 248, 0.25);
}

.chat-user-avatar[b-gvhyt2z93n] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    flex-shrink: 0;
}

.chat-user-name[b-gvhyt2z93n] {
    color: #e2e8f0;
    font-weight: 600;
}

.chat-main[b-gvhyt2z93n] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}

.chat-messages[b-gvhyt2z93n] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    min-height: 0;
    padding: 1.5rem;
    overflow-y: auto;
    background:
            linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
            linear-gradient(135deg, rgba(51, 65, 85, 0.22), rgba(15, 23, 42, 0.12));
}

/* Wichtig: dynamisch per MarkupString gerenderte Inhalte */
.chat-messages[b-gvhyt2z93n]  .chat-message-row {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.chat-messages[b-gvhyt2z93n]  .chat-message-row.own {
    justify-content: flex-end;
}

.chat-messages[b-gvhyt2z93n]  .chat-message-bubble {
    max-width: min(75%, 680px);
    padding: 0.9rem 1rem;
    border-radius: 18px 18px 18px 6px;
    background: #243244;
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #f8fafc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.chat-messages[b-gvhyt2z93n]  .chat-message-bubble.own {
    border-radius: 18px 18px 6px 18px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.chat-messages[b-gvhyt2z93n]  .chat-message-user {
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.chat-messages[b-gvhyt2z93n]  .chat-message-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-word;
    white-space: pre-wrap;
}

.chat-messages[b-gvhyt2z93n]  .chat-system-message {
    align-self: center;
    max-width: 80%;
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(250, 204, 21, 0.28);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(250, 204, 21, 0.14);
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
}

.chat-inputbar[b-gvhyt2z93n] {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.95);
}

.chat-input[b-gvhyt2z93n] {
    flex: 1;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    outline: none;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chat-input[b-gvhyt2z93n]::placeholder {
    color: #94a3b8;
}

.chat-input:focus[b-gvhyt2z93n] {
    border-color: rgba(96, 165, 250, 0.8);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.chat-send-button[b-gvhyt2z93n] {
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.chat-send-button:hover[b-gvhyt2z93n] {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(59, 130, 246, 0.35);
}

.chat-send-button:active[b-gvhyt2z93n] {
    transform: translateY(0);
}

.chat-empty-state[b-gvhyt2z93n],
.chat-empty-conversation[b-gvhyt2z93n] {
    color: #94a3b8;
    text-align: center;
}

.chat-empty-conversation[b-gvhyt2z93n] {
    margin: auto 0;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .chat-app[b-gvhyt2z93n] {
        grid-template-columns: 1fr;
    }

    .chat-sidebar[b-gvhyt2z93n] {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .chat-messages[b-gvhyt2z93n]  .chat-message-bubble {
        max-width: 88%;
    }
}

@media (max-width: 576px) {
    .chat-shell[b-gvhyt2z93n] {
        height: 100dvh;
        padding: 0;
    }

    .chat-inputbar[b-gvhyt2z93n] {
        flex-direction: column;
    }

    .chat-send-button[b-gvhyt2z93n] {
        width: 100%;
    }
}
/* /Components/JoinChatComponent.razor.rz.scp.css */
.entry-shell[b-hutd886oag] {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
            radial-gradient(circle at top left, rgba(88, 101, 242, 0.16), transparent 28%),
            radial-gradient(circle at bottom right, rgba(0, 200, 255, 0.12), transparent 24%),
            linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.entry-card[b-hutd886oag] {
    width: 100%;
    max-width: 520px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.entry-badge[b-hutd886oag] {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    color: #bfdbfe;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.entry-title[b-hutd886oag] {
    margin-bottom: 0.5rem;
    color: #f8fafc;
    font-size: 1.9rem;
    font-weight: 800;
}

.entry-subtitle[b-hutd886oag] {
    margin-bottom: 1.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

.entry-form[b-hutd886oag] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.entry-field[b-hutd886oag] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.entry-label[b-hutd886oag] {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
}

.entry-input[b-hutd886oag] {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    outline: none;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.entry-input[b-hutd886oag]::placeholder {
    color: #94a3b8;
}

.entry-input:focus[b-hutd886oag] {
    border-color: rgba(96, 165, 250, 0.8);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.entry-button[b-hutd886oag] {
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.entry-button:hover[b-hutd886oag] {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(59, 130, 246, 0.35);
}

.entry-button:active[b-hutd886oag] {
    transform: translateY(0);
}

.entry-validation-summary[b-hutd886oag] {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(248, 113, 113, 0.22);
}

.entry-validation-message[b-hutd886oag] {
    color: #fda4af;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .entry-shell[b-hutd886oag] {
        padding: 1rem;
    }

    .entry-card[b-hutd886oag] {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .entry-title[b-hutd886oag] {
        font-size: 1.55rem;
    }
}
/* /Components/NewChatComponent.razor.rz.scp.css */
.entry-shell[b-ymcex4f967] {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
            radial-gradient(circle at top left, rgba(88, 101, 242, 0.16), transparent 28%),
            radial-gradient(circle at bottom right, rgba(0, 200, 255, 0.12), transparent 24%),
            linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.entry-card[b-ymcex4f967] {
    width: 100%;
    max-width: 520px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.entry-badge[b-ymcex4f967] {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    color: #bfdbfe;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.entry-title[b-ymcex4f967] {
    margin-bottom: 0.5rem;
    color: #f8fafc;
    font-size: 1.9rem;
    font-weight: 800;
}

.entry-subtitle[b-ymcex4f967] {
    margin-bottom: 1.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

.entry-form[b-ymcex4f967] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.entry-field[b-ymcex4f967] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.entry-label[b-ymcex4f967] {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
}

.entry-input[b-ymcex4f967] {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    outline: none;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.entry-input[b-ymcex4f967]::placeholder {
    color: #94a3b8;
}

.entry-input:focus[b-ymcex4f967] {
    border-color: rgba(96, 165, 250, 0.8);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.entry-button[b-ymcex4f967] {
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.entry-button:hover[b-ymcex4f967] {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(59, 130, 246, 0.35);
}

.entry-button:active[b-ymcex4f967] {
    transform: translateY(0);
}

.entry-validation-summary[b-ymcex4f967] {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(248, 113, 113, 0.22);
}

.entry-validation-message[b-ymcex4f967] {
    color: #fda4af;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .entry-shell[b-ymcex4f967] {
        padding: 1rem;
    }

    .entry-card[b-ymcex4f967] {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .entry-title[b-ymcex4f967] {
        font-size: 1.55rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-v8q5m4zhkd] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    width: 100%;
}

.app-main[b-v8q5m4zhkd] {
    flex: 1 1 auto;
    display: block;
    min-height: 100dvh;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}
