/* /Components/Chat/ChatPanelV2.razor.rz.scp.css */

.typing-dot[b-av3g95e71e] {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typingBounce-b-av3g95e71e 1.4s infinite ease-in-out;
}

    .typing-dot:nth-child(1)[b-av3g95e71e] {
        animation-delay: -0.32s;
    }

    .typing-dot:nth-child(2)[b-av3g95e71e] {
        animation-delay: -0.16s;
    }

@keyframes typingBounce-b-av3g95e71e {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scrollbar styling */
.chat-messages[b-av3g95e71e]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-av3g95e71e]::-webkit-scrollbar-track {
    background: #1e293b;
}

.chat-messages[b-av3g95e71e]::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}

    .chat-messages[b-av3g95e71e]::-webkit-scrollbar-thumb:hover {
        background: #6b7280;
    }

/* Hide scrollbar for textarea and only show when needed */
.chat-input[b-av3g95e71e] {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

    .chat-input[b-av3g95e71e]::-webkit-scrollbar {
        display: none; /* WebKit */
    }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .chat-container[b-av3g95e71e] {
        width: 95%;
        height: 30vh;
        border-radius: 15px;
    }

    .chat-input[b-av3g95e71e] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
/* /Components/Shared/EditableArea.razor.rz.scp.css */
.editable-content[b-n9n6ukijas] {
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(241, 196, 15, 0.4) !important;
    border-radius: 8px;
    padding: 20px;
    min-height: 200px;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
}

    .editable-content:focus[b-n9n6ukijas] {
        border-color: #f1c40f !important;
        box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
        background: rgba(255, 255, 255, 0.12);
    }

    .editable-content:empty[b-n9n6ukijas]::before {
        content: "Click here to start editing...";
        color: rgba(255, 255, 255, 0.5);
        font-style: italic;
        position: absolute;
        top: 20px;
        left: 20px;
        pointer-events: none;
    }
/* /Features/MyProfile.razor.rz.scp.css */
.home[b-sy0ewhe8h0] {
    width: 80%;
    margin-top: 4%;
}

.tenant-grid[b-sy0ewhe8h0] {
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr 80px;
    gap: 8px;
}

.identity-info[b-sy0ewhe8h0] {
    display: flex;
    column-gap: 16px;

}
/* /Features/PromptViewer.razor.rz.scp.css */
.prompt-wrapper[b-nnpcxx58tu] {
    margin-left: 24px;
}

.detail-wrapper[b-nnpcxx58tu] {
    max-width: 80vw;
    width: 80vw;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

details[b-nnpcxx58tu] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    color: black;
    transition: box-shadow 0.2s;
}

    details[open][b-nnpcxx58tu] {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    details summary[b-nnpcxx58tu] {
        cursor: pointer;
        outline: none;
        padding: 4px 0;
    }

    details p[b-nnpcxx58tu] {
        margin: 8px 0 0 0;
        color: #333;
    }

.prompt-info[b-nnpcxx58tu] {
    margin: 8px;
    background-color: #808080;
    padding: 4px;
    border-radius: 4px;
    color: white;
}
/* /Features/TenantProjects.razor.rz.scp.css */
.home[b-y2sbfwu11s] {
    width: 80%;
    margin-top: 4%;
}

.project-grid[b-y2sbfwu11s] {
    display: grid;
    grid-template-columns: 350px 100px 350px 80px 80px 80px ;
    gap: 8px;
}
/* /Features/Tenants.razor.rz.scp.css */
.home[b-itfl5g9mqo] {
    width: 80%;
    margin-top: 4%;
}

.tenant-grid[b-itfl5g9mqo] {
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr 80px;
    gap: 8px;
}
/* /Features/_Main/CentrePanel.razor.rz.scp.css */
.form-centre[b-9arpatq1gp] {
    width: 100%;
}

.artifact-output[b-9arpatq1gp] {
    overflow-y: auto;
    color: white;
    padding: 0 16px 0 16px;
    font-size: 1rem;

    p
    {
        margin-bottom: .65em;
    }
}
/* /Features/_Main/_CentrePanel/CentrePanelOutput.razor.rz.scp.css */
/* Edit Mode Container */


/* Edit Controls */


/* View Mode Styling */
.artifact-output:not(.edit-mode) .center-content[b-zvbfi9wow8] {
    transition: all 0.3s ease;
}

.artifact-output:not(.edit-mode):hover[b-zvbfi9wow8] {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}
/* /Features/_Main/_CentrePanel/_CentrePanelOutput/InksIntroEdit.razor.rz.scp.css */
.inks-intro-edit-container[b-mnw48v1be9] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-header[b-mnw48v1be9] {
    margin-bottom: 30px;
    text-align: center;
}

    .form-header h3[b-mnw48v1be9] {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-header p[b-mnw48v1be9] {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin: 0;
    }

.form-group[b-mnw48v1be9] {
    margin-bottom: 20px;
    
    transform: translateY(10px);
    animation: field-enter 0.5s ease forwards;
    width: 100%;
}

    .form-group:nth-child(1)[b-mnw48v1be9] {
        animation-delay: 0.2s;
    }

    .form-group:nth-child(2)[b-mnw48v1be9] {
        animation-delay: 0.3s;
    }

    .form-group:nth-child(3)[b-mnw48v1be9] {
        animation-delay: 0.4s;
    }

    .form-group:nth-child(4)[b-mnw48v1be9] {
        animation-delay: 0.5s;
    }

@@keyframes field-enter {
    to[b-mnw48v1be9] {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label[b-mnw48v1be9] {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}

.form-input[b-mnw48v1be9] {
    width: 100%;
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

    .form-input[b-mnw48v1be9]::placeholder {
        color: var(--text-tertiary);
        font-weight: 300;
    }

    

.form-textarea[b-mnw48v1be9] {
    resize: vertical;
    min-height: 100px;
    width: 100%;
}

.form-actions[b-mnw48v1be9] {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: flex-end;
}

.btn-primary[b-mnw48v1be9] {
    padding: 15px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #e8f4f0;
    background: var(--btn-gradient);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .btn-primary:hover:not(:disabled)[b-mnw48v1be9] {
        transform: translateY(-1px);
        box-shadow: 0 8px 30px rgba(26, 138, 122, 0.2), 0 0 0 1px rgba(26, 138, 122, 0.25);
    }

    .btn-primary:active:not(:disabled)[b-mnw48v1be9] {
        transform: translateY(0);
    }

    .btn-primary:disabled[b-mnw48v1be9] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.validation-message[b-mnw48v1be9] {
    color: #e94560;
    font-size: 0.75rem;
    margin-top: 4px;
}

.alert[b-mnw48v1be9] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-error[b-mnw48v1be9] {
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: #ff6b8a;
}

.alert-success[b-mnw48v1be9] {
    background: rgba(26, 138, 122, 0.1);
    border: 1px solid rgba(26, 138, 122, 0.3);
    color: #4ade80;
}

.btn-primary i[b-mnw48v1be9], .btn-secondary i[b-mnw48v1be9] {
    margin-right: 6px;
}
/* /Features/_Main/_CentrePanel/_TVSeriesPanel/TVSeriesChatPanel.razor.rz.scp.css */
.artifact-output:not(.edit-mode) .center-content[b-9y4r0g74sg] {
    transition: all 0.3s ease;
}

.artifact-output:not(.edit-mode):hover[b-9y4r0g74sg] {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}
/* /Features/_Main/_LeftColumn/Debug.razor.rz.scp.css */
.debug-container[b-ndxuxciuy4] {
    margin-top: 100px;
    background-color: khaki;
    border-radius: 12px;
    border: solid 1px white;
    color: black;
    padding: 10px;
}
.bold[b-ndxuxciuy4] {
    font-weight: bold;
}
/* /Features/_Main/_RightColumn/_Assistant/AssistantChatPanel.razor.rz.scp.css */


.typing-dots[b-hlo5rg7f18] {
    display: flex;
    gap: 4px;
}

.typing-dot[b-hlo5rg7f18] {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typingBounce-b-hlo5rg7f18 1.4s infinite ease-in-out;
}

    .typing-dot:nth-child(1)[b-hlo5rg7f18] {
        animation-delay: -0.32s;
    }

    .typing-dot:nth-child(2)[b-hlo5rg7f18] {
        animation-delay: -0.16s;
    }

@keyframes typingBounce-b-hlo5rg7f18 {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Features/_Tenants/TenantProjectsGrid.razor.rz.scp.css */
.home[b-7nrpcp3167] {
    width: 80%;
    margin-top: 4%;
}

.project-grid[b-7nrpcp3167] {
    display: grid;
    grid-template-columns: 350px 100px  80px 80px ;
    gap: 8px;
}
/* /Shared/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-avbp3c7rcw] {
    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-avbp3c7rcw] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
