/* /Components/Audio/WaveSurferPlayer.razor.rz.scp.css */
.wavesurfer-player[b-zfnjen8csw] {
    width: 100%;
    margin: 1rem 0;
}

.waveform-container[b-zfnjen8csw] {
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.fallback-waveform[b-zfnjen8csw] {
    align-items: end;
    background: linear-gradient(180deg, #f8fafb 0%, #eef4f7 100%);
    border: 1px solid #dbe7ee;
    border-radius: 8px;
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(28, 1fr);
    height: 80px;
    margin-bottom: 0.5rem;
    padding: 10px;
}

.fallback-bar[b-zfnjen8csw] {
    animation: pulse-b-zfnjen8csw 1.8s ease-in-out infinite;
    animation-delay: calc(var(--i) * 60ms);
    background: linear-gradient(180deg, #8ec5a0 0%, #4CAF50 100%);
    border-radius: 999px;
    height: 28%;
    min-height: 8px;
}

@keyframes pulse-b-zfnjen8csw {
    0%, 100% {
        height: 20%;
        opacity: 0.65;
    }
    35% {
        height: 85%;
        opacity: 1;
    }
    70% {
        height: 42%;
        opacity: 0.82;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fallback-bar[b-zfnjen8csw] {
        animation: none;
        opacity: 0.85;
    }
}

.native-audio[b-zfnjen8csw] {
    width: 100%;
    margin-bottom: 0.5rem;
}

.player-controls[b-zfnjen8csw] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
}

.control-btn[b-zfnjen8csw] {
    padding: 0.5rem 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.control-btn:hover:not(:disabled)[b-zfnjen8csw] {
    background: #45a049;
}

.control-btn:disabled[b-zfnjen8csw] {
    background: #ccc;
    cursor: not-allowed;
}

.control-btn span[b-zfnjen8csw] {
    display: inline-block;
}
/* /Components/ChatComposer.razor.rz.scp.css */
.inline-composer[b-514ny1ju0r] {
    position: relative;
    width: 100%;
}

.composer-status[b-514ny1ju0r] {
    color: #236b51;
    font-size: 0.76rem;
    margin: 0 54px 8px 4px;
}

.composer-status.is-error[b-514ny1ju0r] {
    color: #a33b37;
}

.composer-row[b-514ny1ju0r] {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.composer-mode[hidden][b-514ny1ju0r] {
    display: none;
}

.voice-note-composer[b-514ny1ju0r] {
    align-items: center;
    display: grid;
    gap: 9px;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    min-width: 0;
}

.record-button[b-514ny1ju0r],
.send-button[b-514ny1ju0r],
.discard-button[b-514ny1ju0r],
.mode-toggle[b-514ny1ju0r] {
    align-items: center;
    border: 0;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
}

.record-button[b-514ny1ju0r] {
    background: #236b51;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(35, 107, 81, 0.22);
    height: 48px;
    width: 48px;
}

.record-button.is-recording[b-514ny1ju0r] {
    animation: recording-pulse-b-514ny1ju0r 1.6s ease-in-out infinite;
    background: #bb4944;
    box-shadow: 0 0 0 5px rgba(187, 73, 68, 0.12);
}

.record-button:disabled[b-514ny1ju0r],
.send-button:disabled[b-514ny1ju0r],
.discard-button:disabled[b-514ny1ju0r],
.mode-toggle:disabled[b-514ny1ju0r] {
    cursor: not-allowed;
    opacity: 0.48;
}

.voice-note-stage[b-514ny1ju0r] {
    align-items: center;
    background: #f1f4f2;
    border: 1px solid transparent;
    border-radius: 8px;
    display: grid;
    min-height: 50px;
    min-width: 0;
    overflow: hidden;
    padding: 5px 13px;
    position: relative;
}

.voice-note-stage.has-waveform[b-514ny1ju0r] {
    background: #edf4f0;
    border-color: #c7dbd1;
    grid-template-columns: minmax(0, 1fr) auto;
}

.voice-note-copy[b-514ny1ju0r] {
    display: flex;
    flex-direction: column;
    grid-area: 1 / 1;
    min-width: 0;
    z-index: 1;
}

.voice-note-copy strong[b-514ny1ju0r] {
    color: #26332d;
    font-size: 0.86rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.voice-note-copy span[b-514ny1ju0r] {
    color: #6c7772;
    font-size: 0.7rem;
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.has-waveform .voice-note-copy[b-514ny1ju0r] {
    display: none;
}

.recorder-waveform[b-514ny1ju0r] {
    display: block;
    grid-area: 1 / 1;
    height: 44px;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    width: 100%;
}

.has-waveform .recorder-waveform[b-514ny1ju0r] {
    opacity: 1;
    visibility: visible;
}

.recording-time[b-514ny1ju0r] {
    color: #a33b37;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    padding-left: 8px;
}

.send-button[b-514ny1ju0r] {
    background: #236b51;
    border-radius: 50%;
    color: white;
    height: 44px;
    width: 44px;
}

.send-button:hover:not(:disabled)[b-514ny1ju0r],
.record-button:hover:not(:disabled)[b-514ny1ju0r] {
    background: #164a38;
}

.send-icon[b-514ny1ju0r] {
    font-size: 1.25rem;
    line-height: 1;
    transform: rotate(-18deg) translateY(-1px);
}

.discard-button[b-514ny1ju0r] {
    background: #edf0ee;
    border-radius: 50%;
    color: #68736e;
    font-size: 1.45rem;
    height: 40px;
    width: 40px;
}

.discard-button:hover:not(:disabled)[b-514ny1ju0r] {
    background: #f1dfdd;
    color: #a33b37;
}

.text-message-form[b-514ny1ju0r] {
    align-items: center;
    background: #f1f4f2;
    border: 1px solid transparent;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
    padding: 4px 5px 4px 14px;
}

.text-message-form:focus-within[b-514ny1ju0r] {
    border-color: #9dbdaf;
}

.message-input[b-514ny1ju0r] {
    background: transparent;
    border: 0;
    color: #202824;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.35;
    max-height: 96px;
    min-height: 38px;
    outline: 0;
    padding: 9px 0 7px;
    resize: none;
    width: 100%;
}

.message-input[b-514ny1ju0r]::placeholder {
    color: #77817c;
}

.mode-toggle[b-514ny1ju0r] {
    border-radius: 50%;
    height: 46px;
    width: 46px;
}

.mode-toggle.show-text[b-514ny1ju0r] {
    background: #edf2ef;
    color: #236b51;
}

.mode-toggle.show-voice[b-514ny1ju0r] {
    background: #236b51;
    box-shadow: 0 6px 14px rgba(35, 107, 81, 0.2);
    color: white;
}

.text-mode-icon[b-514ny1ju0r] {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
}

.microphone-icon[b-514ny1ju0r] {
    border: 2px solid currentColor;
    border-radius: 7px;
    height: 15px;
    position: relative;
    width: 9px;
}

.microphone-icon[b-514ny1ju0r]::before {
    border: 2px solid currentColor;
    border-radius: 0 0 8px 8px;
    border-top: 0;
    content: '';
    height: 10px;
    left: -5px;
    position: absolute;
    top: 7px;
    width: 15px;
}

.microphone-icon[b-514ny1ju0r]::after {
    background: currentColor;
    bottom: -8px;
    content: '';
    height: 5px;
    left: 2px;
    position: absolute;
    width: 2px;
}

.record-button .microphone-icon[b-514ny1ju0r] {
    color: white;
}

.stop-icon[b-514ny1ju0r] {
    background: white;
    border-radius: 3px;
    height: 14px;
    width: 14px;
}

.play-icon[b-514ny1ju0r] {
    border-bottom: 8px solid transparent;
    border-left: 13px solid white;
    border-top: 8px solid transparent;
    margin-left: 3px;
}

.pause-icon[b-514ny1ju0r] {
    border-left: 4px solid white;
    border-right: 4px solid white;
    height: 16px;
    width: 13px;
}

button[b-514ny1ju0r] {
    cursor: pointer;
}

button:focus-visible[b-514ny1ju0r],
.message-input:focus-visible[b-514ny1ju0r] {
    outline: 3px solid rgba(35, 107, 81, 0.28);
    outline-offset: 2px;
}

@keyframes recording-pulse-b-514ny1ju0r {
    0%, 100% { box-shadow: 0 0 0 4px rgba(187, 73, 68, 0.1); }
    50% { box-shadow: 0 0 0 8px rgba(187, 73, 68, 0.16); }
}

@media (max-width: 640px) {
    .composer-row[b-514ny1ju0r] {
        gap: 8px;
    }

    .voice-note-composer[b-514ny1ju0r] {
        gap: 7px;
    }

    .record-button[b-514ny1ju0r] {
        height: 44px;
        width: 44px;
    }

    .voice-note-stage[b-514ny1ju0r] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .voice-note-copy strong[b-514ny1ju0r] {
        font-size: 0.8rem;
    }

    .voice-note-copy span[b-514ny1ju0r] {
        font-size: 0.65rem;
    }

    .discard-button[b-514ny1ju0r] {
        height: 36px;
        width: 36px;
    }

    .send-button[b-514ny1ju0r],
    .mode-toggle[b-514ny1ju0r] {
        height: 42px;
        width: 42px;
    }
}

@media (max-width: 420px) {
    .voice-note-composer:has(.discard-button)[b-514ny1ju0r] {
        grid-template-columns: auto minmax(72px, 1fr) auto auto;
    }

    .voice-note-composer:has(.discard-button) .record-button[b-514ny1ju0r],
    .voice-note-composer:has(.discard-button) .discard-button[b-514ny1ju0r],
    .voice-note-composer:has(.discard-button) .send-button[b-514ny1ju0r] {
        height: 36px;
        width: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .record-button.is-recording[b-514ny1ju0r] {
        animation: none;
    }
}
/* /Components/ErrorPanel.razor.rz.scp.css */
.error-panel[b-e4rpf0rc27] {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7e6 0%, #ffe3f1 100%);
    border: 2px dashed #f2b8d8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.error-panel-title[b-e4rpf0rc27] {
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    color: #6a1b9a;
}

.error-panel-message[b-e4rpf0rc27] {
    margin: 0 0 1rem 0;
    color: inherit;
}

.error-panel-details[b-e4rpf0rc27] {
    margin-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: inherit;
}

.error-panel-detail code[b-e4rpf0rc27] {
    background: #fff;
    padding: 0.15rem 0.35rem;
    border-radius: 6px;
    border: 1px solid #f2d1e4;
}

.error-panel-actions[b-e4rpf0rc27] {
    display: flex;
    gap: 0.75rem;
}

.error-panel-actions .btn[b-e4rpf0rc27] {
    border-radius: 999px;
    font-weight: 600;
}

.error-panel-actions .btn-primary[b-e4rpf0rc27] {
    background: #8e24aa;
    border-color: #8e24aa;
}

.error-panel-actions .btn-outline-secondary[b-e4rpf0rc27] {
    border-color: #8e24aa;
    color: #8e24aa;
}

@media (max-width: 576px) {
    .error-panel[b-e4rpf0rc27] {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .error-panel-actions[b-e4rpf0rc27] {
        flex-direction: column;
        width: 100%;
    }

    .error-panel-actions .btn[b-e4rpf0rc27] {
        width: 100%;
    }

    .btn-home[b-e4rpf0rc27], .btn-issue[b-e4rpf0rc27] {
        width: 100%;
    }
}

.btn-home[b-e4rpf0rc27], .btn-issue[b-e4rpf0rc27] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    margin: 10px;
}

.btn-home:hover[b-e4rpf0rc27], .btn-issue:hover[b-e4rpf0rc27] {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
}

.btn-home:active[b-e4rpf0rc27], .btn-issue:active[b-e4rpf0rc27] {
    transform: translateY(-1px);
}

@media (prefers-color-scheme: dark) {
    .error-panel[b-e4rpf0rc27] {
        background: linear-gradient(135deg, #2c1e3a 0%, #3a1e2f 100%);
        border-color: #6a1b9a;
    }

    .error-panel-title[b-e4rpf0rc27] {
        color: #f3c7ff;
    }

    .error-panel-message[b-e4rpf0rc27],
    .error-panel-details[b-e4rpf0rc27] {
        color: #e0d1e6;
    }

    .error-panel-detail code[b-e4rpf0rc27] {
        background: #2a2430;
        border-color: #6a1b9a;
        color: #f0e6f5;
    }

    .error-panel-actions .btn-outline-secondary[b-e4rpf0rc27] {
        color: #f3c7ff;
        border-color: #f3c7ff;
    }
}
/* /Components/Forms/PostFormModal.razor.rz.scp.css */
/* Modal Overlay */
.modal[b-74kh6z3wry] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-backdrop[b-74kh6z3wry] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn-b-74kh6z3wry 0.2s ease-in;
}

.modal.show[b-74kh6z3wry] {
    animation: fadeIn-b-74kh6z3wry 0.2s ease-in;
}

/* Modal Dialog */
.modal-dialog[b-74kh6z3wry] {
    position: relative;
    margin: 1.75rem auto;
    max-width: 600px;
    pointer-events: none;
    animation: slideUp-b-74kh6z3wry 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-dialog-centered[b-74kh6z3wry] {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

/* Modal Content */
.modal-content[b-74kh6z3wry] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

/* Modal Header */
.modal-header[b-74kh6z3wry] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e4e6eb;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.modal-title[b-74kh6z3wry] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #050505;
    margin: 0;
}

.btn-close[b-74kh6z3wry] {
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: none;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-close:hover[b-74kh6z3wry] {
    opacity: 1;
    background-color: #f0f2f5;
    transform: rotate(90deg);
}

.btn-close:active[b-74kh6z3wry] {
    transform: scale(0.9);
}

/* Modal Body */
.modal-body[b-74kh6z3wry] {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

/* Tabs */
.nav-tabs[b-74kh6z3wry] {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #e4e6eb;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-tabs .nav-item[b-74kh6z3wry] {
    margin-bottom: -2px;
}

.nav-tabs .nav-link[b-74kh6z3wry] {
    display: block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #65676b;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
}

.nav-tabs .nav-link:hover[b-74kh6z3wry] {
    color: #007bff;
    background: #f0f2f5;
    border-bottom-color: transparent;
}

.nav-tabs .nav-link.active[b-74kh6z3wry] {
    color: #007bff;
    border-bottom-color: #007bff;
    background: transparent;
}

/* Tab Content */
.tab-content[b-74kh6z3wry] {
    padding: 1rem 0;
}

.tab-pane[b-74kh6z3wry] {
    display: none;
}

.tab-pane.active[b-74kh6z3wry] {
    display: block;
    animation: fadeIn-b-74kh6z3wry 0.3s ease-in;
}

/* Desktop (Tablets and up) */
@media (min-width: 768px) {
    .modal-dialog[b-74kh6z3wry] {
        margin: 1.75rem auto;
        max-width: 700px;
    }

    .modal-content[b-74kh6z3wry] {
        border-radius: 16px;
    }

    .modal-header[b-74kh6z3wry] {
        padding: 1.5rem 2rem;
    }

    .modal-body[b-74kh6z3wry] {
        padding: 2rem;
    }

    .btn-close[b-74kh6z3wry] {
        width: 36px;
        height: 36px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .modal-dialog[b-74kh6z3wry] {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-header[b-74kh6z3wry] {
        padding: 1rem 1.25rem;
    }

    .modal-title[b-74kh6z3wry] {
        font-size: 1.15rem;
    }

    .modal-body[b-74kh6z3wry] {
        padding: 1.25rem;
        max-height: calc(100vh - 200px);
    }

    .nav-tabs .nav-link[b-74kh6z3wry] {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices - Full Screen Modal */
@media (max-width: 576px) {
    .modal-dialog[b-74kh6z3wry] {
        margin: 0;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
    }

    .modal-dialog-centered[b-74kh6z3wry] {
        min-height: 100vh;
        align-items: stretch;
    }

    .modal-content[b-74kh6z3wry] {
        border-radius: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .modal-header[b-74kh6z3wry] {
        padding: 1rem 1.25rem;
        border-bottom: 2px solid #e4e6eb;
        flex-shrink: 0;
    }

    .modal-body[b-74kh6z3wry] {
        padding: 1rem;
        max-height: none;
        flex: 1;
        overflow-y: auto;
    }

    .nav-tabs[b-74kh6z3wry] {
        gap: 0.25rem;
        flex-wrap: nowrap;
    }

    .nav-tabs .nav-link[b-74kh6z3wry] {
        padding: 0.75rem 0.75rem;
        font-size: 0.85rem;
        flex: 1;
        text-align: center;
    }

    .tab-content[b-74kh6z3wry] {
        padding: 0.75rem 0;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .modal-title[b-74kh6z3wry] {
        font-size: 1rem;
    }

    .btn-close[b-74kh6z3wry] {
        width: 28px;
        height: 28px;
    }

    .nav-tabs .nav-link[b-74kh6z3wry] {
        padding: 0.65rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn-b-74kh6z3wry {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-74kh6z3wry {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
.modal-body[b-74kh6z3wry]::-webkit-scrollbar {
    width: 8px;
}

.modal-body[b-74kh6z3wry]::-webkit-scrollbar-track {
    background: #f0f2f5;
    border-radius: 4px;
}

.modal-body[b-74kh6z3wry]::-webkit-scrollbar-thumb {
    background: #c4c6ca;
    border-radius: 4px;
}

.modal-body[b-74kh6z3wry]::-webkit-scrollbar-thumb:hover {
    background: #a8aaad;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modal-content[b-74kh6z3wry] {
        background: #242526;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .modal-header[b-74kh6z3wry] {
        background: linear-gradient(135deg, #2d2e2f 0%, #242526 100%);
        border-bottom-color: #3a3b3c;
    }

    .modal-title[b-74kh6z3wry] {
        color: #e4e6eb;
    }

    .btn-close[b-74kh6z3wry] {
        filter: invert(1);
    }

    .btn-close:hover[b-74kh6z3wry] {
        background-color: #3a3b3c;
    }

    .nav-tabs[b-74kh6z3wry] {
        border-bottom-color: #3a3b3c;
    }

    .nav-tabs .nav-link[b-74kh6z3wry] {
        color: #a8aaad;
    }

    .nav-tabs .nav-link:hover[b-74kh6z3wry] {
        color: #0084ff;
        background: #3a3b3c;
    }

    .nav-tabs .nav-link.active[b-74kh6z3wry] {
        color: #0084ff;
        border-bottom-color: #0084ff;
    }

    .modal-body[b-74kh6z3wry]::-webkit-scrollbar-track {
        background: #3a3b3c;
    }

    .modal-body[b-74kh6z3wry]::-webkit-scrollbar-thumb {
        background: #555658;
    }

    .modal-body[b-74kh6z3wry]::-webkit-scrollbar-thumb:hover {
        background: #6a6c6e;
    }
}

/* Focus States for Accessibility */
.modal-header .btn-close:focus[b-74kh6z3wry],
.nav-tabs .nav-link:focus[b-74kh6z3wry] {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
/* /Components/PostFeed.razor.rz.scp.css */
.post-feed[b-4iva5sqy61] {
    max-width: 100%;
    padding: 0;
}

/* Post Card - Main Container */
.post-card[b-4iva5sqy61] {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px; /* Limit width on larger devices */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card:hover[b-4iva5sqy61] {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-2px);
}

/* Post Header - Author Info */
.meta-data[b-4iva5sqy61] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e4e6eb;
    gap: 1rem;
}

.meta-data-author[b-4iva5sqy61] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author[b-4iva5sqy61] {
    font-weight: 600;
    color: #050505;
    font-size: 0.95rem;
    margin: 0;
    font-style: normal;
}

.timestamp[b-4iva5sqy61] {
    font-weight: 400;
    color: #65676b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Post Content */
.post-content[b-4iva5sqy61] {
    font-size: 1rem;
    line-height: 1.6;
    color: #050505;
    word-wrap: break-word;
}

/* Caption/Title */
h5[b-4iva5sqy61] {
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #050505;
    word-break: break-word;
}

/* Text Post Content */
.post-card p.card-body[b-4iva5sqy61] {
    margin: 1rem;
    padding: 0;
}

/* Audio Post Container with better spacing */
.audio-post[b-4iva5sqy61] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    margin-top: 0.75rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-post > :first-child[b-4iva5sqy61] {
    margin-bottom: 1rem;
}

/* Auralizer Visualization Styling */
[b-4iva5sqy61] .auralizer {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 6;
    max-width: 100%;
}

[b-4iva5sqy61] .auralizer canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Audio Post Container with better spacing */
.audio-post[b-4iva5sqy61] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    margin-top: 0.75rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Auralizer container wrapper for aspect ratio control */
.audio-post > :first-child[b-4iva5sqy61] {
    width: 100%;
}

/* Mobile responsive audio post */
@media (max-width: 1199px) {
    [b-4iva5sqy61] .auralizer {
        aspect-ratio: 16 / 7;
    }
}

@media (max-width: 767px) {
    .audio-post[b-4iva5sqy61] {
        padding: 1rem;
        margin: 0.75rem 0;
        gap: 0.75rem;
    }

    [b-4iva5sqy61] .auralizer {
        aspect-ratio: 16 / 8;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .audio-post[b-4iva5sqy61] {
        padding: 0.75rem;
        margin: 0.5rem 0;
        gap: 0.5rem;
    }

    [b-4iva5sqy61] .auralizer {
        aspect-ratio: 16 / 9;
        margin-bottom: 0.5rem;
    }
}

/* Plyr Audio Player inside audio-post */
.audio-post .audio-player-container[b-4iva5sqy61] {
    width: 100%;
    order: 2;
}

/* Auralizer inside audio-post - stacked on top */
.audio-post[b-4iva5sqy61]  .auralizer {
    width: 100%;
    margin-bottom: 0;
    order: 1;
}

/* Post Actions (Footer) */
.post-actions[b-4iva5sqy61] {
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0;
    border-top: 1px solid #e4e6eb;
    margin-top: 1rem;
}

.post-action-btn[b-4iva5sqy61] {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background: transparent;
    color: #65676b;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.post-action-btn:hover[b-4iva5sqy61] {
    background: #f0f2f5;
    color: #007bff;
}

.post-action-btn:active[b-4iva5sqy61] {
    transform: scale(0.98);
}

/* Post Feed Header */
.post-feed-header[b-4iva5sqy61] {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.post-feed-header h3[b-4iva5sqy61] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #050505;
}

/* Loading & Empty States */
.post-feed-empty[b-4iva5sqy61],
.post-feed-loading[b-4iva5sqy61] {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    color: #65676b;
}

.post-feed-empty[b-4iva5sqy61] {
    font-size: 1.1rem;
}

.post-feed-loading[b-4iva5sqy61] {
    font-size: 1rem;
    animation: pulse-b-4iva5sqy61 1.5s ease-in-out infinite;
}

@keyframes pulse-b-4iva5sqy61 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-card[b-4iva5sqy61] {
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .meta-data[b-4iva5sqy61] {
        padding: 0.75rem;
    }

    .post-action-btn[b-4iva5sqy61] {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    h5[b-4iva5sqy61] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .post-feed[b-4iva5sqy61] {
        padding: 0 0.5rem;
    }

    .post-card[b-4iva5sqy61] {
        border-radius: 8px;
        margin-bottom: 0.75rem;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .meta-data[b-4iva5sqy61] {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .meta-data-author[b-4iva5sqy61] {
        width: 100%;
    }

    h5[b-4iva5sqy61] {
        font-size: 0.95rem;
    }

    .post-action-btn[b-4iva5sqy61] {
        font-size: 0.8rem;
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .post-action-btn span[b-4iva5sqy61] {
        font-size: 1.1rem;
    }

    .post-feed-empty[b-4iva5sqy61],
    .post-feed-loading[b-4iva5sqy61] {
        padding: 2rem 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .post-card[b-4iva5sqy61] {
        background: #242526;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    .post-card:hover[b-4iva5sqy61] {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    }

    .meta-data[b-4iva5sqy61] {
        border-bottom-color: #3a3b3c;
    }

    .author[b-4iva5sqy61] {
        color: #e4e6eb;
    }

    .timestamp[b-4iva5sqy61] {
        color: #a8aaad;
    }

    .post-content[b-4iva5sqy61] {
        color: #e4e6eb;
    }

    h5[b-4iva5sqy61] {
        color: #e4e6eb;
    }

    .audio-post[b-4iva5sqy61] {
        background: linear-gradient(135deg, #2d2e2f 0%, #242526 100%);
        box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.05);
    }

    .post-action-btn[b-4iva5sqy61] {
        color: #a8aaad;
    }

    .post-action-btn:hover[b-4iva5sqy61] {
        background: #3a3b3c;
        color: #0084ff;
    }

    .post-feed-empty[b-4iva5sqy61],
    .post-feed-loading[b-4iva5sqy61],
    .post-feed-header[b-4iva5sqy61] {
        background: #242526;
        color: #e4e6eb;
    }

    [b-4iva5sqy61] .auralizer canvas {
        background: linear-gradient(135deg, #0f0f1e 0%, #0a1428 100%);
    }

    [b-4iva5sqy61] .auralizer {
        height: 200px;
    }
}

@media (min-width: 1200px) {
    [b-4iva5sqy61] .auralizer {
        height: 250px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    [b-4iva5sqy61] .auralizer {
        height: 200px;
    }
}

@media (max-width: 767px) {
    [b-4iva5sqy61] .auralizer {
        height: 150px;
    }
}

@media (max-width: 480px) {
    [b-4iva5sqy61] .auralizer {
        height: 120px;
    }
}

/* Chat messages */
.post-feed[b-4iva5sqy61] {
    margin: 0 auto;
    max-width: 760px;
    padding: 0;
    width: 100%;
}

.latest-post-marker[b-4iva5sqy61] {
    height: 1px;
    width: 100%;
}

.message-date[b-4iva5sqy61] {
    display: flex;
    justify-content: center;
    margin: 0 0 24px;
}

.message-date span[b-4iva5sqy61] {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(38, 74, 58, 0.1);
    border-radius: 999px;
    color: #68736e;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    text-transform: uppercase;
}

.post-card[b-4iva5sqy61] {
    align-items: flex-start;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    margin: 0 0 22px auto;
    max-width: min(82%, 620px);
    overflow: visible;
}

.post-card:hover[b-4iva5sqy61] {
    box-shadow: none;
    transform: none;
}

.message-avatar[b-4iva5sqy61] {
    align-items: center;
    background: #d9e8df;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #1f5b44;
    display: flex;
    flex: 0 0 34px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.85rem;
    height: 34px;
    justify-content: center;
    margin-top: 20px;
    width: 34px;
}

.message-group[b-4iva5sqy61] {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.meta-data[b-4iva5sqy61] {
    border: 0;
    display: block;
    margin: 0 4px 5px 0;
    padding: 0;
    text-align: right;
}

.author[b-4iva5sqy61] {
    color: #43514b;
    font-size: 0.76rem;
    font-weight: 700;
}

.message-bubble[b-4iva5sqy61] {
    background: #dcece3;
    border: 1px solid rgba(35, 107, 81, 0.12);
    border-radius: 16px 4px 16px 16px;
    box-shadow: 0 4px 14px rgba(32, 54, 45, 0.07);
    color: #202824;
    padding: 12px 15px;
}

.message-bubble h3[b-4iva5sqy61] {
    color: #1f2925;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 5px;
    overflow-wrap: anywhere;
}

.post-content[b-4iva5sqy61] {
    color: #202824;
    font-size: 0.94rem;
    line-height: 1.5;
    margin: 0;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.timestamp[b-4iva5sqy61] {
    color: #7b8580;
    display: block;
    font-size: 0.68rem;
    margin: 5px 5px 0 0;
    text-align: right;
}

.audio-bubble[b-4iva5sqy61] {
    min-width: min(440px, 64vw);
    padding: 12px 14px 10px;
}

.audio-post[b-4iva5sqy61] {
    background: transparent;
    box-shadow: none;
    display: block;
    margin: 0;
    min-width: 0;
    padding: 0;
}

[b-4iva5sqy61] .wavesurfer-player {
    margin: 4px 0 0;
}

[b-4iva5sqy61] .waveform-container {
    margin-bottom: 8px;
}

[b-4iva5sqy61] .player-controls {
    gap: 8px;
}

[b-4iva5sqy61] .control-btn {
    align-items: center;
    background: #236b51;
    border-radius: 50%;
    display: flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 36px;
}

[b-4iva5sqy61] .control-btn:hover:not(:disabled) {
    background: #164a38;
}

.post-feed-empty[b-4iva5sqy61] {
    background: transparent;
    box-shadow: none;
    color: #68736e;
    padding: 12px 20px 34px;
    text-align: center;
}

.post-feed-empty p[b-4iva5sqy61] {
    color: #313e38;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.08rem;
    margin: 0 0 3px;
}

.post-feed-empty span[b-4iva5sqy61] {
    font-size: 0.82rem;
}

.post-feed-loading[b-4iva5sqy61] {
    align-items: center;
    background: white;
    border-radius: 4px 16px 16px 16px;
    box-shadow: none;
    display: flex;
    gap: 5px;
    margin: 0 auto 24px;
    padding: 14px 16px;
    width: fit-content;
}

.loading-dot[b-4iva5sqy61] {
    animation: message-typing-b-4iva5sqy61 1.2s ease-in-out infinite;
    background: #91a29a;
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

.loading-dot:nth-child(2)[b-4iva5sqy61] {
    animation-delay: 150ms;
}

.loading-dot:nth-child(3)[b-4iva5sqy61] {
    animation-delay: 300ms;
}

@keyframes message-typing-b-4iva5sqy61 {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

@media (max-width: 640px) {
    .post-feed[b-4iva5sqy61] {
        padding: 0;
    }

    .post-card[b-4iva5sqy61] {
        border-radius: 0;
        margin-bottom: 20px;
        max-width: 92%;
    }

    .message-avatar[b-4iva5sqy61] {
        flex-basis: 30px;
        height: 30px;
        width: 30px;
    }

    .meta-data[b-4iva5sqy61] {
        padding: 0;
    }

    .audio-bubble[b-4iva5sqy61] {
        min-width: min(300px, 72vw);
    }

    .audio-post[b-4iva5sqy61] {
        margin: 0;
        padding: 0;
    }
}

@media (prefers-color-scheme: dark) {
    .post-card[b-4iva5sqy61],
    .post-card:hover[b-4iva5sqy61] {
        background: transparent;
        box-shadow: none;
    }

    .message-bubble[b-4iva5sqy61],
    .post-feed-loading[b-4iva5sqy61] {
        background: #ffffff;
    }

    .message-bubble h3[b-4iva5sqy61],
    .post-content[b-4iva5sqy61],
    .post-feed-empty p[b-4iva5sqy61] {
        color: #202824;
    }

    .post-feed-empty[b-4iva5sqy61] {
        background: transparent;
        color: #68736e;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-dot[b-4iva5sqy61] {
        animation: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
:root[b-sexfvc6sq2] {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.teddie-container[b-sexfvc6sq2] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Header Section */
.teddie-header[b-sexfvc6sq2] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 3rem 0;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.header-content[b-sexfvc6sq2] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-title[b-sexfvc6sq2] {
    text-align: center;
}

.brand-title[b-sexfvc6sq2] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-subtitle[b-sexfvc6sq2] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0.5rem 0 0;
    font-weight: 300;
}

/* Main Content */
.teddie-main[b-sexfvc6sq2] {
    padding: 2rem 0 4rem;
}

    .teddie-main .container-fluid[b-sexfvc6sq2] {
        max-width: 1400px;
        margin: 0 auto;
    }

/* Sidebar Cards */
.sidebar-card[b-sexfvc6sq2] {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

    .sidebar-card:hover[b-sexfvc6sq2] {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }

.sidebar-header[b-sexfvc6sq2] {
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

    .sidebar-header h5[b-sexfvc6sq2] {
        margin: 0;
        color: #333;
        font-weight: 600;
    }

.sidebar-text[b-sexfvc6sq2] {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.sidebar-stats[b-sexfvc6sq2] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item[b-sexfvc6sq2] {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.stat-label[b-sexfvc6sq2] {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.stat-value[b-sexfvc6sq2] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

/* Floating Action Button */
.fab-container[b-sexfvc6sq2] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-button[b-sexfvc6sq2] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    font-weight: bold;
}

    .fab-button:hover[b-sexfvc6sq2] {
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
        color: var(--white);
        text-decoration: none;
    }

    .fab-button:active[b-sexfvc6sq2] {
        transform: scale(0.95);
    }

.fab-icon[b-sexfvc6sq2] {
    display: block;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .teddie-main[b-sexfvc6sq2] {
        padding: 1rem 0 4rem;
    }

    .brand-title[b-sexfvc6sq2] {
        font-size: 2rem;
    }

    .brand-subtitle[b-sexfvc6sq2] {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .teddie-header[b-sexfvc6sq2] {
        padding: 2rem 0;
        margin-bottom: 1rem;
    }

    .brand-title[b-sexfvc6sq2] {
        font-size: 1.75rem;
    }

    .brand-subtitle[b-sexfvc6sq2] {
        font-size: 0.95rem;
    }

    .fab-container[b-sexfvc6sq2] {
        bottom: 1rem;
        right: 1rem;
    }

    .fab-button[b-sexfvc6sq2] {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .brand-title[b-sexfvc6sq2] {
        font-size: 1.5rem;
    }

    .brand-subtitle[b-sexfvc6sq2] {
        font-size: 0.9rem;
    }

    .sidebar-card[b-sexfvc6sq2] {
        padding: 1rem;
    }

    .fab-button[b-sexfvc6sq2] {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Animation for modal open */
@keyframes slideUp-b-sexfvc6sq2 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card[b-sexfvc6sq2] {
    animation: slideUp-b-sexfvc6sq2 0.3s ease;
}
/* /Pages/ComingSoon.razor.rz.scp.css */
.coming-soon-container[b-uk4u41n8yh] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-content[b-uk4u41n8yh] {
    text-align: center;
    color: #FFF;
    position: relative;
    z-index: 1;
}

.theodora-image[b-uk4u41n8yh] {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.coming-soon-content h1[b-uk4u41n8yh] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-content p[b-uk4u41n8yh] {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

a[b-uk4u41n8yh] {
    color: #fff;
}

a:hover[b-uk4u41n8yh] {
    font-style: italic;
}

/* Floating emoji animations */
.emoji-float[b-uk4u41n8yh] {
    position: absolute;
    font-size: 4rem;
    opacity: 0.5;
    animation: float-b-uk4u41n8yh 10s infinite;
    z-index: 0;
}

.emoji-1[b-uk4u41n8yh] {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.emoji-2[b-uk4u41n8yh] {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.emoji-3[b-uk4u41n8yh] {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.emoji-4[b-uk4u41n8yh] {
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

.emoji-5[b-uk4u41n8yh] {
    top: 40%;
    left: 20%;
    animation-delay: 3s;
}

.emoji-6[b-uk4u41n8yh] {
    top: 40%;
    right: 28%;
    animation-delay: 3s;
}

.emoji-7[b-uk4u41n8yh] {
    top: 70%;
    left: 32%;
    animation-delay: 3s;
}

.emoji-8[b-uk4u41n8yh] {
    top: 80%;
    right: 30%;
    animation-delay: 3s;
}

.emoji-9[b-uk4u41n8yh] {
    top: 5%;
    right: 30%;
    animation-delay: 3s;
}

.emoji-10[b-uk4u41n8yh] {
    top: 5%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float-b-uk4u41n8yh {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(20px) translateX(10px);
    }
}

@media (max-width: 768px) {
    .theodora-image[b-uk4u41n8yh] {
        max-width: 200px;
    }

    .coming-soon-content h1[b-uk4u41n8yh] {
        font-size: 1.5rem;
    }

    .coming-soon-content p[b-uk4u41n8yh] {
        font-size: 1rem;
    }

    .emoji-float[b-uk4u41n8yh] {
        font-size: 1.5rem;
    }
    .emoji-1[b-uk4u41n8yh] { top: 2%; left: 5%; }
    .emoji-2[b-uk4u41n8yh] { top: 70%; right: 5%; }
    .emoji-3[b-uk4u41n8yh] { bottom: 5%; left: 5%; }
    .emoji-4[b-uk4u41n8yh] { top: 20%; right: 10%; }
    .emoji-5[b-uk4u41n8yh] { top: 40%; left: 6%; }
    .emoji-6[b-uk4u41n8yh] { top: 50%; right: 10%; }
    .emoji-7[b-uk4u41n8yh] { top: 80%; left: 30%; }
    .emoji-8[b-uk4u41n8yh] { top: 85%; right: 20%; }
    .emoji-9[b-uk4u41n8yh] { top: 2%; right: 25%; }
    .emoji-10[b-uk4u41n8yh] { top: 12%; left: 30%; }
}
/* /Pages/Errors/Error404.razor.rz.scp.css */
.fof-container[b-gcbrut4apn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.fof-container[b-gcbrut4apn]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.fof-content[b-gcbrut4apn] {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    animation: slideIn-b-gcbrut4apn 0.6s ease-out;
}

@keyframes slideIn-b-gcbrut4apn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.royal-pup[b-gcbrut4apn] {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes bounce-b-gcbrut4apn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fof-title[b-gcbrut4apn] {
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 1rem 0 0.5rem;
    letter-spacing: -1px;
}

.fof-subtitle[b-gcbrut4apn] {
    font-size: 1.3rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.fof-message[b-gcbrut4apn] {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.redirect-notice[b-gcbrut4apn] {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #333;
}

.countdown[b-gcbrut4apn] {
    font-size: 2rem;
    font-weight: 700;
    color: #764ba2;
    margin: 0.5rem 0;
}

.action-buttons[b-gcbrut4apn] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-home[b-gcbrut4apn] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-home:hover[b-gcbrut4apn] {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
}

.btn-home:active[b-gcbrut4apn] {
    transform: translateY(-1px);
}

.emoji-float[b-gcbrut4apn] {
    position: absolute;
    font-size: 4rem;
    opacity: 0.5;
    animation: float-b-gcbrut4apn 6s infinite;
    z-index: 0;
}

.emoji-1[b-gcbrut4apn] {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.emoji-2[b-gcbrut4apn] {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.emoji-3[b-gcbrut4apn] {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.emoji-4[b-gcbrut4apn] {
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

.emoji-5[b-gcbrut4apn] {
    top: 40%;
    left: 20%;
    animation-delay: 3s;
}

.emoji-6[b-gcbrut4apn] {
    top: 40%;
    right: 28%;
    animation-delay: 3s;
}

.emoji-7[b-gcbrut4apn] {
    top: 70%;
    left: 32%;
    animation-delay: 3s;
}

.emoji-8[b-gcbrut4apn] {
    top: 80%;
    right: 30%;
    animation-delay: 3s;
}

.emoji-9[b-gcbrut4apn] {
    top: 5%;
    right: 30%;
    animation-delay: 3s;
}

.emoji-10[b-gcbrut4apn] {
    top: 5%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float-b-gcbrut4apn {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(20px) translateX(10px);
    }
}

@media (max-width: 768px) {
    .fof-container[b-gcbrut4apn] {
        min-height: 100vh;
        padding: 1rem;
    }

    .fof-content[b-gcbrut4apn] {
        padding: 2rem;
    }

    .fof-title[b-gcbrut4apn] {
        font-size: 2.5rem;
    }

    .fof-subtitle[b-gcbrut4apn] {
        font-size: 1.1rem;
    }

    .royal-pup[b-gcbrut4apn] {
        max-width: 200px;
    }

    .action-buttons[b-gcbrut4apn] {
        flex-direction: column;
    }

    .btn-home[b-gcbrut4apn] {
        width: 100%;
    }
}
/* /Pages/Errors/Error500.razor.rz.scp.css */
.error-container[b-3g35qi4kid] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.error-container[b-3g35qi4kid]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.error-content[b-3g35qi4kid] {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    animation: slideIn-b-3g35qi4kid 0.6s ease-out;
}

@keyframes slideIn-b-3g35qi4kid {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.royal-pup[b-3g35qi4kid] {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    border-radius: 16px;
}

.error-title[b-3g35qi4kid] {
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 1rem 0 0.5rem;
    letter-spacing: -1px;
}

.error-subtitle[b-3g35qi4kid] {
    font-size: 1.3rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.error-message[b-3g35qi4kid] {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.error-panel-wrapper[b-3g35qi4kid] {
    margin-top: 1.5rem;
}

.emoji-float[b-3g35qi4kid] {
    position: absolute;
    font-size: 4rem;
    opacity: 0.5;
    animation: float-b-3g35qi4kid 6s infinite;
    z-index: 0;
}

.emoji-1[b-3g35qi4kid] { top: 10%; left: 5%; animation-delay: 0s; }
.emoji-2[b-3g35qi4kid] { top: 60%; right: 8%; animation-delay: 1s; }
.emoji-3[b-3g35qi4kid] { bottom: 20%; left: 12%; animation-delay: 2s; }
.emoji-4[b-3g35qi4kid] { top: 30%; right: 5%; animation-delay: 3s; }
.emoji-5[b-3g35qi4kid] { top: 40%; left: 20%; animation-delay: 3s; }

@keyframes float-b-3g35qi4kid {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 576px) {
    .error-content[b-3g35qi4kid] {
        padding: 2rem 1.25rem;
    }

    .royal-pup[b-3g35qi4kid] {
        max-width: 220px;
    }

    .error-title[b-3g35qi4kid] {
        font-size: 2.75rem;
    }

    .error-subtitle[b-3g35qi4kid] {
        font-size: 1.25rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
:root[b-jj04l38dje] {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.teddie-container[b-jj04l38dje] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Header Section */
.teddie-header[b-jj04l38dje] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 3rem 0;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.header-content[b-jj04l38dje] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-title[b-jj04l38dje] {
    text-align: center;
}

.brand-title[b-jj04l38dje] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-subtitle[b-jj04l38dje] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0.5rem 0 0;
    font-weight: 300;
}

/* Main Content */
.teddie-main[b-jj04l38dje] {
    padding: 2rem 0 4rem;
}

    .teddie-main .container-fluid[b-jj04l38dje] {
        max-width: 1400px;
        margin: 0 auto;
    }

/* Sidebar Cards */
.sidebar-card[b-jj04l38dje] {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

    .sidebar-card:hover[b-jj04l38dje] {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }

.sidebar-header[b-jj04l38dje] {
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

    .sidebar-header h5[b-jj04l38dje] {
        margin: 0;
        color: #333;
        font-weight: 600;
    }

.sidebar-text[b-jj04l38dje] {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.sidebar-stats[b-jj04l38dje] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item[b-jj04l38dje] {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.stat-label[b-jj04l38dje] {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.stat-value[b-jj04l38dje] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

/* Floating Action Button */
.fab-container[b-jj04l38dje] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

/* Desktop - Align horizontally with right sidebar, same vertical position */
@media (min-width: 992px) {
    .fab-container[b-jj04l38dje] {
        position: fixed;
        bottom: 2rem; /* Same vertical position as mobile */
        right: auto;
        left: 50%;
        margin-left: calc(700px / 2 + 1.5rem); /* Center + half of max container + gap into right sidebar area */
    }
}

@media (min-width: 1200px) {
    .fab-container[b-jj04l38dje] {
        margin-left: calc(700px / 2 + 2rem); /* Adjust for larger screens */
    }
}

.fab-button[b-jj04l38dje] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    font-weight: bold;
}

    .fab-button:hover[b-jj04l38dje] {
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
        color: var(--white);
        text-decoration: none;
    }

    .fab-button:active[b-jj04l38dje] {
        transform: scale(0.95);
    }

.fab-icon[b-jj04l38dje] {
    display: block;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .teddie-main[b-jj04l38dje] {
        padding: 1rem 0 4rem;
    }

    .brand-title[b-jj04l38dje] {
        font-size: 2rem;
    }

    .brand-subtitle[b-jj04l38dje] {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .teddie-header[b-jj04l38dje] {
        padding: 2rem 0;
        margin-bottom: 1rem;
    }

    .brand-title[b-jj04l38dje] {
        font-size: 1.75rem;
    }

    .brand-subtitle[b-jj04l38dje] {
        font-size: 0.95rem;
    }

    .fab-container[b-jj04l38dje] {
        bottom: 1rem;
        right: 1rem;
    }

    .fab-button[b-jj04l38dje] {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .brand-title[b-jj04l38dje] {
        font-size: 1.5rem;
    }

    .brand-subtitle[b-jj04l38dje] {
        font-size: 0.9rem;
    }

    .sidebar-card[b-jj04l38dje] {
        padding: 1rem;
    }

    .fab-button[b-jj04l38dje] {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Animation for modal open */
@keyframes slideUp-b-jj04l38dje {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card[b-jj04l38dje] {
    animation: slideUp-b-jj04l38dje 0.3s ease;
}

/* Chat interface */
.chat-page[b-jj04l38dje] {
    --chat-ink: #18201d;
    --chat-muted: #66716c;
    --chat-line: #dfe5e1;
    --chat-paper: #f7f8f6;
    --chat-surface: #ffffff;
    --chat-brand: #236b51;
    --chat-brand-dark: #164a38;
    background: radial-gradient(circle at 16% 12%, rgba(218, 234, 224, 0.85), transparent 32%), linear-gradient(145deg, #edf1ed 0%, #f7f5f0 58%, #e8eeea 100%);
    color: var(--chat-ink);
    display: grid;
    min-height: 100vh;
    padding: clamp(0px, 3vw, 32px);
    place-items: center;
}

.chat-shell[b-jj04l38dje] {
    background: var(--chat-surface);
    border: 1px solid rgba(29, 57, 46, 0.12);
    box-shadow: 0 24px 70px rgba(29, 50, 42, 0.14);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: min(900px, calc(100vh - clamp(0px, 6vw, 64px)));
    max-width: 940px;
    overflow: hidden;
    width: 100%;
}

.chat-header[b-jj04l38dje] {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--chat-line);
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
    padding: 12px 18px;
    z-index: 2;
}

.teddie-avatar[b-jj04l38dje],
.intro-mark[b-jj04l38dje] {
    align-items: center;
    background: #dcebe2;
    color: var(--chat-brand-dark);
    display: flex;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    justify-content: center;
}

.teddie-avatar[b-jj04l38dje] {
    border-radius: 50%;
    font-size: 1.2rem;
    height: 46px;
    width: 46px;
}

.chat-identity h1[b-jj04l38dje] {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.chat-identity p[b-jj04l38dje] {
    align-items: center;
    color: var(--chat-muted);
    display: flex;
    font-size: 0.78rem;
    gap: 6px;
    margin: 3px 0 0;
}

.status-dot[b-jj04l38dje] {
    background: #3fa26f;
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

.header-action[b-jj04l38dje],
.composer-action[b-jj04l38dje],
.voice-button[b-jj04l38dje] {
    align-items: center;
    border: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

.header-action[b-jj04l38dje] {
    background: transparent;
    color: #5d6863;
    font-size: 1rem;
    height: 42px;
    width: 42px;
}

.header-action:hover[b-jj04l38dje] {
    background: #f0f3f1;
}

.chat-conversation[b-jj04l38dje] {
    background-color: var(--chat-paper);
    background-image: radial-gradient(rgba(62, 85, 75, 0.08) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    overflow-y: auto;
    padding: 38px clamp(18px, 5vw, 58px) 28px;
}

.conversation-intro[b-jj04l38dje] {
    color: var(--chat-muted);
    margin: 0 auto 38px;
    text-align: center;
}

.intro-mark[b-jj04l38dje] {
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(30, 71, 54, 0.12);
    font-size: 1.7rem;
    height: 72px;
    margin: 0 auto 12px;
    width: 72px;
}

.conversation-intro h2[b-jj04l38dje] {
    color: var(--chat-ink);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 4px;
}

.conversation-intro p[b-jj04l38dje] {
    font-size: 0.9rem;
    margin: 0 0 8px;
}

.conversation-intro span[b-jj04l38dje] {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(52, 80, 68, 0.1);
    border-radius: 999px;
    display: inline-block;
    font-size: 0.72rem;
    padding: 5px 10px;
}

.chat-composer[b-jj04l38dje] {
    background: var(--chat-surface);
    border-top: 1px solid var(--chat-line);
    min-height: 84px;
    padding: 13px 18px;
}

.chat-page button[b-jj04l38dje] {
    cursor: pointer;
}

.chat-page button:focus-visible[b-jj04l38dje] {
    outline: 3px solid rgba(35, 107, 81, 0.3);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .chat-page[b-jj04l38dje] {
        padding: 0;
    }

    .chat-shell[b-jj04l38dje] {
        animation: none;
        border: 0;
        height: 100dvh;
        transform: none;
    }

    .chat-header[b-jj04l38dje] {
        min-height: 68px;
        padding: 10px 14px;
    }

    .teddie-avatar[b-jj04l38dje] {
        height: 42px;
        width: 42px;
    }

    .chat-conversation[b-jj04l38dje] {
        padding: 28px 14px 22px;
    }

    .conversation-intro[b-jj04l38dje] {
        margin-bottom: 30px;
    }

    .chat-composer[b-jj04l38dje] {
        min-height: 76px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: no-preference) {
    .chat-shell[b-jj04l38dje] {
        animation: chat-arrival-b-jj04l38dje 420ms ease-out both;
    }

    @keyframes chat-arrival-b-jj04l38dje {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
    .chat-shell[b-jj04l38dje] {
        animation: none;
        transform: none;
    }
}
