/* /Components/Layout/FloatingChat.razor.rz.scp.css */
.floating-chat-container[b-3fn03we538] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

.floating-chat-button[b-3fn03we538] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 50%, #C9A84C 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.floating-chat-button:hover[b-3fn03we538] {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(27, 42, 74, 0.5);
}

.floating-chat-button.open[b-3fn03we538] {
    background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 100%);
}

.chat-window[b-3fn03we538] {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 450px;
    height: 560px;
    max-height: 80vh;
    background: #1e1e2e;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp-b-3fn03we538 0.3s ease;
    min-width: 320px;
    min-height: 280px;
}

@keyframes slideUp-b-3fn03we538 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header[b-3fn03we538] {
    background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 100%);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: move;
    user-select: none;
}

.chat-header-info[b-3fn03we538] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar[b-3fn03we538] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C95A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B2A4A;
}

.chat-header-text[b-3fn03we538] {
    display: flex;
    flex-direction: column;
}

.chat-title[b-3fn03we538] {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.chat-status[b-3fn03we538] {
    font-size: 11px;
    color: #10b981;
}

.chat-close-btn[b-3fn03we538] {
    color: rgba(255, 255, 255, 0.6) !important;
}

.chat-close-btn:hover[b-3fn03we538] {
    color: white !important;
}

.chat-messages[b-3fn03we538] {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100px;
}

.chat-messages[b-3fn03we538]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-3fn03we538]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-3fn03we538]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.chat-welcome[b-3fn03we538] {
    text-align: center;
    padding: 20px 10px;
    color: white;
}

.welcome-icon[b-3fn03we538] {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-welcome h3[b-3fn03we538] {
    margin: 0 0 8px;
    font-size: 20px;
}

.chat-welcome p[b-3fn03we538] {
    margin: 0 0 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.quick-actions[b-3fn03we538] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-actions button[b-3fn03we538] {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    justify-content: flex-start !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.quick-actions button:hover[b-3fn03we538] {
    background: rgba(201, 168, 76, 0.3) !important;
    border-color: rgba(201, 168, 76, 0.7) !important;
    color: #FFE082 !important;
}

.chat-message[b-3fn03we538] {
    display: flex;
    gap: 8px;
    max-width: 90%;
}

.chat-message.user-message[b-3fn03we538] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-message.assistant-message[b-3fn03we538] {
    align-self: flex-start;
}

.message-avatar[b-3fn03we538] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C95A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B2A4A;
    flex-shrink: 0;
}

.message-content[b-3fn03we538] {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.6;
    word-wrap: break-word;
}

.user-message .message-content[b-3fn03we538] {
    background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.assistant-message .message-content[b-3fn03we538] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-bottom-left-radius: 4px;
}

.assistant-message .message-content p[b-3fn03we538] {
    margin: 0 0 10px;
}

.assistant-message .message-content p:last-child[b-3fn03we538] {
    margin-bottom: 0;
}

.assistant-message .message-content code[b-3fn03we538] {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.assistant-message .message-content ul[b-3fn03we538],
.assistant-message .message-content ol[b-3fn03we538] {
    margin: 8px 0 12px;
    padding-left: 24px;
}

.assistant-message .message-content li[b-3fn03we538] {
    margin: 6px 0;
    line-height: 1.5;
}

.assistant-message .message-content li[b-3fn03we538]::marker {
    color: #C9A84C;
}

.assistant-message .message-content strong[b-3fn03we538],
.assistant-message .message-content b[b-3fn03we538] {
    color: #E8C95A;
    font-weight: 600;
}

.assistant-message .message-content h1[b-3fn03we538],
.assistant-message .message-content h2[b-3fn03we538],
.assistant-message .message-content h3[b-3fn03we538],
.assistant-message .message-content h4[b-3fn03we538] {
    margin: 10px 0 6px;
    font-weight: 600;
    color: #E8C95A;
}

.assistant-message .message-content h3[b-3fn03we538] { font-size: 14px; }
.assistant-message .message-content h4[b-3fn03we538] { font-size: 13px; }

.typing-indicator[b-3fn03we538] {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span[b-3fn03we538] {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bounce-b-3fn03we538 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1)[b-3fn03we538] { animation-delay: 0s; }
.typing-indicator span:nth-child(2)[b-3fn03we538] { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3)[b-3fn03we538] { animation-delay: 0.4s; }

@keyframes bounce-b-3fn03we538 {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

.chat-input-area[b-3fn03we538] {
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-wrapper[b-3fn03we538] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4px 4px 4px 16px;
}

.chat-input[b-3fn03we538] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.chat-textarea[b-3fn03we538] {
    resize: none;
    overflow-y: auto;
    min-height: 24px;
    max-height: 120px;
    line-height: 1.4;
    font-family: inherit;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.chat-input[b-3fn03we538]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-button[b-3fn03we538] {
    background: linear-gradient(135deg, #C9A84C 0%, #E8C95A 100%) !important;
    border-radius: 50% !important;
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
    color: #1B2A4A !important;
}

.floating-feedback-row[b-3fn03we538] {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    justify-content: flex-end;
}

.floating-feedback-btn[b-3fn03we538] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 6px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.floating-feedback-btn:hover[b-3fn03we538] {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.4);
}

.floating-feedback-btn.active-positive[b-3fn03we538] {
    opacity: 1;
    background: rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.6);
}

.floating-feedback-btn.active-negative[b-3fn03we538] {
    opacity: 1;
    background: rgba(244, 67, 54, 0.25);
    border-color: rgba(244, 67, 54, 0.6);
}

.chat-footer[b-3fn03we538] {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

/* Voice Bot */

.voice-button[b-3fn03we538] {
    color: #FFFFFF !important;
    flex-shrink: 0;
    min-width: 38px !important;
    width: 38px !important;
    height: 38px !important;
    background: rgba(201, 168, 76, 0.25) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(201, 168, 76, 0.4) !important;
}

.voice-button:hover[b-3fn03we538] {
    color: #FFE082 !important;
    background: rgba(201, 168, 76, 0.4) !important;
    border-color: rgba(201, 168, 76, 0.7) !important;
}

.voice-status-bar[b-3fn03we538] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(201, 168, 76, 0.15);
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    color: #C9A84C;
    font-size: 12px;
}

.voice-status-bar.listening[b-3fn03we538] {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.voice-status-bar.speaking[b-3fn03we538] {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.voice-status-bar.thinking[b-3fn03we538] {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.voice-status-bar.error[b-3fn03we538] {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.voice-status-icon[b-3fn03we538] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voice-status-text[b-3fn03we538] {
    flex: 1;
    font-weight: 500;
}

.voice-disconnect-btn[b-3fn03we538] {
    color: rgba(255, 255, 255, 0.5) !important;
}

.voice-disconnect-btn:hover[b-3fn03we538] {
    color: #ef4444 !important;
}

.voice-wave[b-3fn03we538] {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
}

.voice-wave span[b-3fn03we538] {
    width: 3px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: voiceWave-b-3fn03we538 1s infinite ease-in-out;
}

.voice-wave span:nth-child(1)[b-3fn03we538] { animation-delay: 0s; }
.voice-wave span:nth-child(2)[b-3fn03we538] { animation-delay: 0.15s; }
.voice-wave span:nth-child(3)[b-3fn03we538] { animation-delay: 0.3s; }

@keyframes voiceWave-b-3fn03we538 {
    0%, 100% { height: 6px; }
    50% { height: 16px; }
}

@media (max-width: 480px) {
    .chat-window[b-3fn03we538] {
        width: calc(100vw - 48px);
        max-height: 70vh;
        right: -12px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-6yzre662gl] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6yzre662gl] {
    flex: 1;
}

.sidebar[b-6yzre662gl] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6yzre662gl] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6yzre662gl]  a, .top-row[b-6yzre662gl]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-6yzre662gl]  a:hover, .top-row[b-6yzre662gl]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-6yzre662gl]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-6yzre662gl] {
        justify-content: space-between;
    }

    .top-row[b-6yzre662gl]  a, .top-row[b-6yzre662gl]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6yzre662gl] {
        flex-direction: row;
    }

    .sidebar[b-6yzre662gl] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6yzre662gl] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6yzre662gl]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6yzre662gl], article[b-6yzre662gl] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-6yzre662gl] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-6yzre662gl] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-3l25axt0vu] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-3l25axt0vu] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-3l25axt0vu] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-3l25axt0vu] {
    font-size: 1.1rem;
}

.bi[b-3l25axt0vu] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-3l25axt0vu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-3l25axt0vu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-3l25axt0vu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-3l25axt0vu] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-3l25axt0vu] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-3l25axt0vu] {
        padding-bottom: 1rem;
    }

    .nav-item[b-3l25axt0vu]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-3l25axt0vu]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-3l25axt0vu]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-3l25axt0vu] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-3l25axt0vu] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-3l25axt0vu] {
        display: none;
    }

    .nav-scrollable[b-3l25axt0vu] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-dpc8t6sday],
.components-reconnect-repeated-attempt-visible[b-dpc8t6sday],
.components-reconnect-failed-visible[b-dpc8t6sday],
.components-pause-visible[b-dpc8t6sday],
.components-resume-failed-visible[b-dpc8t6sday],
.components-rejoining-animation[b-dpc8t6sday] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-retrying[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-failed[b-dpc8t6sday],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-dpc8t6sday] {
    display: block;
}


#components-reconnect-modal[b-dpc8t6sday] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-dpc8t6sday 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-dpc8t6sday 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-dpc8t6sday 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-dpc8t6sday]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-dpc8t6sday 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-dpc8t6sday {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-dpc8t6sday {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-dpc8t6sday {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-dpc8t6sday] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-dpc8t6sday] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-dpc8t6sday] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-dpc8t6sday] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-dpc8t6sday] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-dpc8t6sday] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-dpc8t6sday] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-dpc8t6sday 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-dpc8t6sday] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-dpc8t6sday {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AktaSearch.razor.rz.scp.css */
/* Mobile-only styles for AktaSearch.razor */

.akta-mobile[b-dqjrz676nl] {
    /* Respect iOS Safari notch / home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.akta-result-card[b-dqjrz676nl] {
    cursor: pointer;
    transition: background-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.akta-result-card:active[b-dqjrz676nl] {
    background-color: var(--mud-palette-action-default-hover);
}
/* /Components/Pages/Alibi.razor.rz.scp.css */
/* Mobile-only styles for Alibi.razor */

.alibi-mobile[b-qp5jhqmbim] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.alibi-mobile .stat-mobile[b-qp5jhqmbim] {
    border-radius: 10px !important;
}

.conflict-card-mobile[b-qp5jhqmbim] {
    border-radius: 10px !important;
}
/* /Components/Pages/AnalizaZeznan.razor.rz.scp.css */
/* Mobile-only styles for AnalizaZeznan.razor */

.zeznan-mobile[b-of91aq9hip] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.zeznan-mobile-header[b-of91aq9hip] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
    position: sticky;
    top: 0;
    z-index: 10;
}

.zeznan-mobile-stats[b-of91aq9hip] {
    border-radius: 10px !important;
    border-left: 3px solid var(--mud-palette-primary) !important;
}

/* Compact tab labels on mobile */
.zeznan-mobile-tabs .mud-tab[b-of91aq9hip] {
    min-width: 0 !important;
    padding: 0 0.4rem !important;
    font-size: 0.7rem !important;
    text-transform: none;
}

.zeznan-mobile-tabs .mud-tab-icon-text[b-of91aq9hip] {
    margin-right: 0.25rem;
}

/* Make any inner MudPaper a bit tighter */
.zeznan-mobile .mud-paper[b-of91aq9hip] {
    padding: 0.5rem !important;
}

/* Tables — horizontally scroll */
.zeznan-mobile table[b-of91aq9hip] {
    display: block;
    overflow-x: auto;
    font-size: 0.75rem;
}

.zeznan-mobile .mud-table-cell[b-of91aq9hip],
.zeznan-mobile .mud-table-head-cell[b-of91aq9hip] {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.75rem !important;
}

/* Reduce typo sizes inside content */
.zeznan-mobile .mud-typography-h5[b-of91aq9hip] {
    font-size: 1.1rem;
}

.zeznan-mobile .mud-typography-h6[b-of91aq9hip] {
    font-size: 0.95rem;
}
/* /Components/Pages/Apelacja.razor.rz.scp.css */
/* Mobile-only styles for Apelacja.razor */

.apel-mobile[b-lx58gqubuv] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.apel-mobile-header[b-lx58gqubuv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.apel-mobile-section[b-lx58gqubuv] {
    padding: 0.5rem 0.75rem;
}

.apel-mobile-result[b-lx58gqubuv] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 56px);
}

.apel-mobile-result-header[b-lx58gqubuv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.apel-mobile-stats[b-lx58gqubuv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.apel-mobile-tabs[b-lx58gqubuv] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.apel-mobile-tabs .mud-tab[b-lx58gqubuv] {
    min-width: 0;
    padding: 0 0.5rem;
    font-size: 0.75rem;
}

.apel-mobile-tabs .mud-tabs-panels[b-lx58gqubuv] {
    flex: 1;
    overflow-y: auto;
}

.apel-mobile-preview[b-lx58gqubuv] {
    padding: 0.5rem;
    word-break: break-word;
}

.apel-mobile-sec-card[b-lx58gqubuv] {
    border-radius: 8px !important;
    border-left: 3px solid var(--mud-palette-primary) !important;
}

.apel-mobile-bottom-bar[b-lx58gqubuv] {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-background);
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
}

.markdown-mobile[b-lx58gqubuv] {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.markdown-mobile p[b-lx58gqubuv] {
    margin: 0.25rem 0;
}

.markdown-mobile h1[b-lx58gqubuv], .markdown-mobile h2[b-lx58gqubuv], .markdown-mobile h3[b-lx58gqubuv] {
    margin: 0.5rem 0 0.25rem;
}

.markdown-mobile table[b-lx58gqubuv] {
    display: block;
    overflow-x: auto;
    font-size: 0.75rem;
}
/* /Components/Pages/Argumentation.razor.rz.scp.css */
/* Mobile-only styles for Argumentation.razor */

.argumentation-mobile[b-yzo47q5afo] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.session-card-mobile[b-yzo47q5afo] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.session-card-mobile:active[b-yzo47q5afo] {
    background-color: var(--mud-palette-action-default-hover);
}
/* /Components/Pages/Battlebook.razor.rz.scp.css */
/* Mobile-only styles for Battlebook.razor */

.battlebook-mobile[b-jfjik58hp5] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bb-mobile-section[b-jfjik58hp5] {
    padding: 0.75rem;
}

.bb-mobile-result[b-jfjik58hp5] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 56px);
}

.bb-mobile-header[b-jfjik58hp5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.bb-mobile-tabs[b-jfjik58hp5] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bb-mobile-tabs .mud-tabs-panels[b-jfjik58hp5] {
    flex: 1;
    overflow: hidden;
}

.bb-mobile-tabs .mud-tab-panel[b-jfjik58hp5] {
    height: 100%;
    overflow-y: auto;
}

.bb-mobile-tree[b-jfjik58hp5] {
    padding: 0.5rem 0.75rem;
}

.bb-mobile-chat[b-jfjik58hp5] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bb-mobile-chat-messages[b-jfjik58hp5] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

.bb-mobile-chat-input[b-jfjik58hp5] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-background);
}

.bb-mobile-chat-input .mud-input-control[b-jfjik58hp5] {
    flex: 1;
}

.bb-msg-mobile[b-jfjik58hp5] {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

.bb-msg-user[b-jfjik58hp5] {
    align-items: flex-end;
}

.bb-msg-ai[b-jfjik58hp5] {
    align-items: flex-start;
}

.bb-msg-bubble[b-jfjik58hp5] {
    max-width: 85%;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.bb-msg-user .bb-msg-bubble[b-jfjik58hp5] {
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    border-bottom-right-radius: 2px;
}

.bb-msg-ai .bb-msg-bubble[b-jfjik58hp5] {
    background: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    border-bottom-left-radius: 2px;
}

.bb-node-card-mobile[b-jfjik58hp5] {
    border-radius: 10px !important;
}

.bb-node-highlighted[b-jfjik58hp5] {
    box-shadow: 0 0 0 2px var(--mud-palette-warning) !important;
}

.bb-resp-row-mobile[b-jfjik58hp5] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
    font-size: 0.75rem;
    border-bottom: 1px dashed var(--mud-palette-divider);
}

.bb-resp-action[b-jfjik58hp5] {
    flex: 1;
    color: var(--mud-palette-text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bb-mobile-bottom-bar[b-jfjik58hp5] {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-background);
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
}

.bb-session-card-mobile[b-jfjik58hp5] {
    border-radius: 10px !important;
    cursor: pointer;
}

.bb-mobile-overlay[b-jfjik58hp5] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
}

.bb-mobile-sheet[b-jfjik58hp5] {
    background: var(--mud-palette-background);
    width: 100%;
    max-height: 80dvh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}
/* /Components/Pages/ChatRag.razor.rz.scp.css */
/* Mobile-only styles for ChatRag.razor */

.chatrag-mobile-header[b-m3if1jek78] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
    position: sticky;
    top: 0;
    z-index: 10;
}

.chatrag-mobile-grid[b-m3if1jek78] {
    margin: 0 !important;
    padding: 0;
    overflow: hidden;
}

/* Compact message bubbles on mobile */
.chatrag-mobile-grid .mud-paper[b-m3if1jek78] {
    padding: 0.5rem !important;
}

.chatrag-mobile-grid .mud-input-control[b-m3if1jek78] {
    margin-bottom: 0;
}

/* Mobile drawer overlay */
.chatrag-mobile-overlay[b-m3if1jek78] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn-b-m3if1jek78 0.15s ease-out;
}

.chatrag-mobile-drawer[b-m3if1jek78] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: var(--mud-palette-surface);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight-b-m3if1jek78 0.2s ease-out;
}

.chatrag-mobile-drawer-header[b-m3if1jek78] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--mud-palette-primary);
    color: white;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.chatrag-mobile-drawer-header .mud-icon-button[b-m3if1jek78] {
    color: white;
}

.chatrag-mobile-drawer-body[b-m3if1jek78] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
}

.chatrag-mobile-conv-item[b-m3if1jek78] {
    border-radius: 8px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    cursor: pointer;
}

/* Compact welcome alert on mobile */
.chatrag-mobile-welcome[b-m3if1jek78] {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.6rem !important;
}

.chatrag-mobile-welcome .mud-alert-message[b-m3if1jek78] {
    padding: 0 !important;
}

/* Larger, more usable input on mobile */
.chatrag-mobile-input .mud-input-slot[b-m3if1jek78] {
    font-size: 16px !important;
    line-height: 1.4 !important;
}

.chatrag-mobile-input textarea[b-m3if1jek78] {
    min-height: 72px !important;
}

.chatrag-mobile-input .mud-input-label[b-m3if1jek78] {
    font-size: 0.85rem !important;
}

/* Mobile input row: toolbar above, full-width textfield below */
.chatrag-mobile-input-row[b-m3if1jek78] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}

.chatrag-mobile-toolbar[b-m3if1jek78] {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

@keyframes fadeIn-b-m3if1jek78 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight-b-m3if1jek78 {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
/* /Components/Pages/DefenseDocuments.razor.rz.scp.css */
/* Mobile-only styles for DefenseDocuments.razor */

.defdoc-mobile[b-00raigsklj] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.defdoc-mobile-header[b-00raigsklj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.defdoc-mobile-tabs .mud-tab[b-00raigsklj] {
    min-width: 0;
    padding: 0 0.5rem;
    font-size: 0.75rem;
}

.defdoc-card-mobile[b-00raigsklj] {
    border-radius: 10px !important;
    border-left: 3px solid var(--mud-palette-primary) !important;
}

.defdoc-arg-mobile[b-00raigsklj] {
    border-left: 2px solid var(--mud-palette-divider);
    padding-left: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.defdoc-stats-mobile[b-00raigsklj] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.defdoc-stat[b-00raigsklj] {
    background: var(--mud-palette-background-grey);
    border-radius: 8px;
    padding: 0.5rem 0.25rem;
}
/* /Components/Pages/Diagnostyka.razor.rz.scp.css */
/* Mobile-only styles for Diagnostyka.razor */

.diag-mobile[b-zise4v19ii] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.conn-card-mobile[b-zise4v19ii],
.module-card-mobile[b-zise4v19ii] {
    border-radius: 10px !important;
}
/* /Components/Pages/GeneratedDocuments.razor.rz.scp.css */
/* Mobile-only styles for GeneratedDocuments.razor */

.gendocs-mobile[b-psfaqjff1g] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.gendoc-card-mobile[b-psfaqjff1g] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.gendoc-card-mobile:active[b-psfaqjff1g] {
    background-color: var(--mud-palette-action-default-hover);
}

.markdown-mobile[b-psfaqjff1g] {
    font-size: 0.875rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.markdown-mobile h1[b-psfaqjff1g] { font-size: 1.25rem; margin-top: 1rem; }
.markdown-mobile h2[b-psfaqjff1g] { font-size: 1.125rem; margin-top: 0.875rem; }
.markdown-mobile h3[b-psfaqjff1g] { font-size: 1rem; margin-top: 0.75rem; }
.markdown-mobile h4[b-psfaqjff1g] { font-size: 0.9375rem; margin-top: 0.625rem; }

.markdown-mobile table[b-psfaqjff1g] {
    display: block;
    overflow-x: auto;
    max-width: 100%;
}

.markdown-mobile pre[b-psfaqjff1g] {
    overflow-x: auto;
    font-size: 0.75rem;
}
/* /Components/Pages/GraphVisualization.razor.rz.scp.css */
/* Mobile-only styles for GraphVisualization.razor */

.graf-mobile[b-vutxo70ejt] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 56px);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.graf-mobile-toolbar[b-vutxo70ejt] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
    gap: 0.25rem;
}

.graf-mobile-search[b-vutxo70ejt] {
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.graf-mobile-canvas-wrap[b-vutxo70ejt] {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #fafbfc;
    min-height: 0;
}

.graf-mobile-canvas[b-vutxo70ejt] {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.graf-mobile-empty[b-vutxo70ejt] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.graf-mobile-detail[b-vutxo70ejt] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mud-palette-background);
    border-top: 1px solid var(--mud-palette-divider);
    border-radius: 16px 16px 0 0;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 900;
    max-height: 60dvh;
    overflow-y: auto;
}
/* /Components/Pages/Hipotezy.razor.rz.scp.css */
/* Mobile-only styles for Hipotezy.razor */

.hipotezy-mobile[b-ozgzoya5xr] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.hipotezy-mobile .stat-mobile[b-ozgzoya5xr] {
    border-radius: 10px !important;
}

.hypothesis-card-mobile[b-ozgzoya5xr] {
    border-radius: 10px !important;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Mobile-only styles for Home.razor */

.home-mobile[b-f86auf8hwn] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.welcome-gradient-mobile[b-f86auf8hwn] {
    background: linear-gradient(135deg, #1B2A4A 0%, #2D4A7A 100%);
    border-radius: 12px;
    padding: 16px;
    color: white;
    margin-bottom: 16px;
}

.stat-card-mobile[b-f86auf8hwn] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
    display: flex;
    flex-direction: column;
    min-height: 88px;
    justify-content: space-between;
}

.stat-card-mobile:active[b-f86auf8hwn] {
    background-color: var(--mud-palette-action-default-hover);
}

.stat-value-mobile[b-f86auf8hwn] {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 4px;
}

.report-card-mobile[b-f86auf8hwn] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.report-card-mobile:active[b-f86auf8hwn] {
    background-color: var(--mud-palette-action-default-hover);
}

.quick-action-mobile[b-f86auf8hwn] {
    border-radius: 10px !important;
    padding: 14px 16px !important;
    text-align: left;
}
/* /Components/Pages/InformacjeKlienta.razor.rz.scp.css */
/* Mobile-only styles for InformacjeKlienta.razor */

.info-klienta-mobile[b-d8z14kf357] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}
/* /Components/Pages/OpracowanieSprawy.razor.rz.scp.css */
/* Mobile-only styles for OpracowanieSprawy.razor */

.opracowanie-mobile[b-c00q3kuqrm] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.module-link-mobile[b-c00q3kuqrm] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.module-link-mobile:active[b-c00q3kuqrm] {
    background-color: var(--mud-palette-action-default-hover);
}
/* /Components/Pages/PlanDzialania.razor.rz.scp.css */
/* Mobile-only styles for PlanDzialania.razor */

.plan-mobile[b-v21lairokr] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.plan-mobile .stat-mobile[b-v21lairokr] {
    border-radius: 10px !important;
}
/* /Components/Pages/ProfilSwiadka.razor.rz.scp.css */
/* Mobile-only styles for ProfilSwiadka.razor */

.profil-mobile[b-fcupqhhkru] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.contradiction-card-mobile[b-fcupqhhkru],
.evolution-card-mobile[b-fcupqhhkru] {
    border-radius: 10px !important;
}

.evolution-version-mobile[b-fcupqhhkru] {
    border-left: 2px solid var(--mud-palette-primary);
    padding-left: 0.625rem;
    margin-bottom: 0.625rem;
}
/* /Components/Pages/ProjectDocuments.razor.rz.scp.css */
/* Mobile-only styles for ProjectDocuments.razor */

.projdoc-mobile[b-oaf6nsb47d] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.projdoc-mobile-header[b-oaf6nsb47d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.projdoc-mobile-section[b-oaf6nsb47d] {
    padding: 0.5rem 0.75rem;
}

.projdoc-card-mobile[b-oaf6nsb47d] {
    border-radius: 10px !important;
    border-left: 3px solid var(--mud-palette-primary) !important;
}

.projdoc-stat-mobile[b-oaf6nsb47d] {
    flex: 1;
    background: var(--mud-palette-background-grey);
    border-radius: 8px;
    padding: 0.5rem 0.25rem;
    text-align: center;
}
/* /Components/Pages/ProjectManagement.razor.rz.scp.css */
/* Mobile-only styles for ProjectManagement.razor */

.projects-mobile[b-bzdmr83wfk] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.project-card-mobile[b-bzdmr83wfk] {
    border-radius: 10px !important;
    -webkit-tap-highlight-color: transparent;
}
/* /Components/Pages/Psychiatria.razor.rz.scp.css */
/* Mobile-only styles for Psychiatria.razor */

.psych-mobile[b-z62wb5ijtn] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.psych-mobile-header[b-z62wb5ijtn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Compact tab labels */
.psych-mobile-tabs .mud-tab[b-z62wb5ijtn] {
    min-width: 0 !important;
    padding: 0 0.4rem !important;
    font-size: 0.7rem !important;
    text-transform: none;
}

/* Smaller paper padding inside tabs */
.psych-mobile .mud-paper[b-z62wb5ijtn] {
    padding: 0.5rem !important;
}

.psych-mobile .mud-typography-h3[b-z62wb5ijtn] {
    font-size: 1.4rem;
}

.psych-mobile .mud-typography-h5[b-z62wb5ijtn] {
    font-size: 1.05rem;
}

.psych-mobile .mud-typography-h6[b-z62wb5ijtn] {
    font-size: 0.95rem;
}

.psych-mobile .mud-card[b-z62wb5ijtn] {
    padding: 0.25rem !important;
}

.psych-mobile .mud-card-content[b-z62wb5ijtn] {
    padding: 0.5rem !important;
}

.psych-mobile table[b-z62wb5ijtn] {
    display: block;
    overflow-x: auto;
    font-size: 0.75rem;
}

.psych-mobile .mud-table-cell[b-z62wb5ijtn],
.psych-mobile .mud-table-head-cell[b-z62wb5ijtn] {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.75rem !important;
}
/* /Components/Pages/RaportSprawy.razor.rz.scp.css */
/* Mobile-only styles for RaportSprawy.razor */

.raport-mobile[b-7rd41hfjvv] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.report-card-mobile[b-7rd41hfjvv] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.report-card-mobile:active[b-7rd41hfjvv] {
    background-color: var(--mud-palette-action-default-hover);
}

.markdown-mobile[b-7rd41hfjvv] {
    font-size: 0.875rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.markdown-mobile h1[b-7rd41hfjvv] { font-size: 1.25rem; margin-top: 1rem; }
.markdown-mobile h2[b-7rd41hfjvv] { font-size: 1.125rem; margin-top: 0.875rem; }
.markdown-mobile h3[b-7rd41hfjvv] { font-size: 1rem; margin-top: 0.75rem; }
.markdown-mobile h4[b-7rd41hfjvv] { font-size: 0.9375rem; margin-top: 0.625rem; }

.markdown-mobile table[b-7rd41hfjvv] {
    display: block;
    overflow-x: auto;
    max-width: 100%;
}

.markdown-mobile pre[b-7rd41hfjvv] {
    overflow-x: auto;
    font-size: 0.75rem;
}
/* /Components/Pages/Uzasadnienie.razor.rz.scp.css */
/* Mobile-only styles for Uzasadnienie.razor */

.uzasad-mobile[b-h8icbqa2b0] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.uzasad-mobile .stat-mobile[b-h8icbqa2b0] {
    border-radius: 10px !important;
}

.claim-card-mobile[b-h8icbqa2b0] {
    border-radius: 10px !important;
}

.markdown-mobile[b-h8icbqa2b0] {
    font-size: 0.875rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.markdown-mobile h1[b-h8icbqa2b0] { font-size: 1.25rem; margin-top: 1rem; }
.markdown-mobile h2[b-h8icbqa2b0] { font-size: 1.125rem; margin-top: 0.875rem; }
.markdown-mobile h3[b-h8icbqa2b0] { font-size: 1rem; margin-top: 0.75rem; }
.markdown-mobile h4[b-h8icbqa2b0] { font-size: 0.9375rem; margin-top: 0.625rem; }

.markdown-mobile table[b-h8icbqa2b0] {
    display: block;
    overflow-x: auto;
    max-width: 100%;
}

.markdown-mobile pre[b-h8icbqa2b0] {
    overflow-x: auto;
    font-size: 0.75rem;
}
/* /Components/Pages/WarsztatObrony.razor.rz.scp.css */
/* Mobile-only styles for WarsztatObrony.razor */

.warsztat-mobile[b-vr7tiawqx2] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.warsztat-mobile-list[b-vr7tiawqx2] {
    display: flex;
    flex-direction: column;
}

.warsztat-mobile-header[b-vr7tiawqx2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.warsztat-mobile-toolbar[b-vr7tiawqx2] {
    padding: 0.5rem 0.75rem;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.warsztat-mobile-args[b-vr7tiawqx2] {
    padding: 0.5rem 0.75rem;
}

.warsztat-mobile-empty[b-vr7tiawqx2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
}

.warsztat-arg-mobile[b-vr7tiawqx2] {
    border-radius: 10px !important;
    border-left: 3px solid var(--mud-palette-primary) !important;
    cursor: pointer;
}

.warsztat-mobile-detail[b-vr7tiawqx2] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 56px);
}

.warsztat-mobile-detail-header[b-vr7tiawqx2] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.5rem;
    background: var(--mud-palette-primary);
    color: white;
}

.warsztat-mobile-detail-header .mud-icon-button[b-vr7tiawqx2] {
    color: white;
}

.warsztat-mobile-detail-body[b-vr7tiawqx2] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

.warsztat-mobile-tabs .mud-tab[b-vr7tiawqx2] {
    min-width: 0;
    padding: 0 0.5rem;
    font-size: 0.75rem;
}

.warsztat-chat-mobile[b-vr7tiawqx2] {
    display: flex;
    flex-direction: column;
    height: 50dvh;
}

.warsztat-chat-messages[b-vr7tiawqx2] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.warsztat-chat-input[b-vr7tiawqx2] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 0.5rem;
    border-top: 1px solid var(--mud-palette-divider);
}

.warsztat-chat-input .mud-input-control[b-vr7tiawqx2] {
    flex: 1;
}

.warsztat-msg-mobile[b-vr7tiawqx2] {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}

.warsztat-msg-user[b-vr7tiawqx2] {
    align-items: flex-end;
}

.warsztat-msg-ai[b-vr7tiawqx2] {
    align-items: flex-start;
}

.warsztat-msg-bubble[b-vr7tiawqx2] {
    max-width: 90%;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    word-wrap: break-word;
}

.warsztat-msg-user .warsztat-msg-bubble[b-vr7tiawqx2] {
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    border-bottom-right-radius: 2px;
}

.warsztat-msg-ai .warsztat-msg-bubble[b-vr7tiawqx2] {
    background: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    border-bottom-left-radius: 2px;
}

.markdown-mobile[b-vr7tiawqx2] {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.markdown-mobile p[b-vr7tiawqx2] {
    margin: 0.25rem 0;
}

.markdown-mobile table[b-vr7tiawqx2] {
    display: block;
    overflow-x: auto;
    font-size: 0.75rem;
}
/* /Components/Pages/Wnioski.razor.rz.scp.css */
/* Mobile-only styles for Wnioski.razor */

.wnioski-mobile[b-l07rqcp1vh] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.template-card-mobile[b-l07rqcp1vh] {
    border-radius: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.template-card-mobile:active[b-l07rqcp1vh] {
    background-color: var(--mud-palette-action-default-hover);
}
/* /Components/Pages/WywiadObrony.razor.rz.scp.css */
/* Mobile-only styles for WywiadObrony.razor */

.wywiad-mobile[b-z8nduc8fk4] {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.topic-radio-mobile .mud-radio[b-z8nduc8fk4] {
    display: block;
    margin-bottom: 0.625rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: var(--mud-palette-background-grey);
}

.wywiad-chat-container[b-z8nduc8fk4] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 56px);
    position: relative;
}

.wywiad-chat-header[b-z8nduc8fk4] {
    display: flex;
    align-items: center;
    background: var(--mud-palette-primary);
    color: white;
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
}

.wywiad-messages[b-z8nduc8fk4] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

.wywiad-msg-mobile[b-z8nduc8fk4] {
    padding: 0.625rem 0.75rem;
}

.wywiad-msg-mobile .markdown-mobile[b-z8nduc8fk4] {
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.wywiad-msg-mobile .markdown-mobile p[b-z8nduc8fk4] {
    margin: 0.25rem 0;
}

.wywiad-input-bar[b-z8nduc8fk4] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-background);
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
}

.wywiad-args-overlay[b-z8nduc8fk4] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
}

.wywiad-args-sheet[b-z8nduc8fk4] {
    background: var(--mud-palette-background);
    width: 100%;
    max-height: 80dvh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.arg-card-mobile[b-z8nduc8fk4] {
    border-left: 3px solid var(--mud-palette-success);
    border-radius: 8px !important;
}
