@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/AiChatComponent.razor.rz.scp.css */
.chat-messages[b-08p2qgk7gu] {
    overflow-y: auto;
    background-color: #f8f9fa;
}

.message-bubble[b-08p2qgk7gu] {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

    .message-bubble.user[b-08p2qgk7gu] {
        background-color: #0d6efd;
        color: white;
        border-bottom-right-radius: 4px;
    }

    .message-bubble.agent[b-08p2qgk7gu] {
        background-color: white;
        color: #212529;
        border: 1px solid #dee2e6;
        border-bottom-left-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }

.agent-label[b-08p2qgk7gu] {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0d6efd;
}

.chat-input-area .form-control:focus[b-08p2qgk7gu] {
    box-shadow: none;
}

.chat-messages[b-08p2qgk7gu]::-webkit-scrollbar {
    width: 4px; /* Even thinner for the chat panel */
}

.chat-messages[b-08p2qgk7gu]::-webkit-scrollbar-thumb {
    background: rgba(13, 110, 253, 0.2); /* Uses a hint of your primary blue */
}

    .chat-messages[b-08p2qgk7gu]::-webkit-scrollbar-thumb:hover {
        background: rgba(13, 110, 253, 0.4);
    }

/*.chat-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
    background: #f9f9fb;
    border-radius: 8px;
}

.bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

    .bubble.user {
        align-self: flex-end;
        background-color: #0078d4;*/ /* .NET Blue */
        /*color: white;
        border-bottom-right-radius: 2px;
    }

    .bubble.bot {
        align-self: flex-start;
        background-color: #ffffff;
        color: #333;
        border: 1px solid #e1e1e6;
        border-bottom-left-radius: 2px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }*/

/* Container to handle the alignment of bubbles */
.chat-container[b-08p2qgk7gu] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* User Message Bubble */
.user-bubble[b-08p2qgk7gu] {
    align-self: flex-end;
    background-color: #2563eb; /* Professional Blue */
    color: white;
    padding: 12px 16px;
    border-radius: 18px 18px 2px 18px; /* Rounded with a sharp bottom-right corner */
    max-width: 75%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    position: relative;
}

/* AI Message Bubble (Archie) */
.ai-bubble[b-08p2qgk7gu] {
    align-self: flex-start;
    background-color: #fdf2f8; /* Soft Petal Pink */
    color: #1f2937;
    border: 1px solid #fbcfe8;
    border-left: 4px solid #db2777; /* Deep Pink accent */
    padding: 15px;
    border-radius: 18px 18px 18px 2px; /* Sharp bottom-left corner */
    max-width: 85%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
}

    /* Ensure Markdig rendered lists look correct inside bubbles */
    .ai-bubble ul[b-08p2qgk7gu], .ai-bubble ol[b-08p2qgk7gu] {
        margin-top: 8px;
        margin-bottom: 8px;
        padding-left: 1.5rem;
    }

    .ai-bubble li[b-08p2qgk7gu] {
        margin-bottom: 4px;
    }

    /* Styling for the Bold text (headers) in AI bubbles */
    .ai-bubble strong[b-08p2qgk7gu] {
        color: #9d174d;
        font-weight: 600;
    }

.ai-bubble[b-08p2qgk7gu] {
    background-color: #fdf2f8; /* Light pink/beauty theme */
    border-left: 4px solid #db2777;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    line-height: 1.6;
}

    .ai-bubble ul[b-08p2qgk7gu] {
        margin-left: 20px;
    }

    .ai-bubble strong[b-08p2qgk7gu] {
        color: #9d174d;
    }
/* /Components/AiSidebar.razor.rz.scp.css */
.ai-sidebar-container[b-cwjzw96tud] {
    position: fixed;
    top: 70px; /* Aligns perfectly under the Glassmorphism Navbar */
    right: 0;
    width: 380px; /* Slightly wider for better code readability in chat */
    height: calc(100vh - 70px);
    z-index: 1050; /* Above the main content but below Navbar dropdowns if any */
    background: #ffffff;
    border-left: 1px solid #eef0f2;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); /* Professional "Snap" easing */
}

/* Slide Logic */
.ai-sidebar-container.closed[b-cwjzw96tud] {
    transform: translateX(100%);
    box-shadow: none;
}

.ai-sidebar-container.open[b-cwjzw96tud] {
    transform: translateX(0);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.sidebar-inner[b-cwjzw96tud] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Darkens the rest of the screen slightly when active */
.sidebar-overlay[b-cwjzw96tud] {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.05);
    z-index: 1040;
    backdrop-filter: blur(2px);
}
/* /Components/AiStatusBadge.razor.rz.scp.css */
.status-dot[b-jt9wdv4286] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6c757d; /* Offline Gray */
}

.status-online[b-jt9wdv4286] {
    background-color: #28a745; /* Online Green */
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green-b-jt9wdv4286 2s infinite;
}

.status-warning[b-jt9wdv4286] {
    background-color: #ffc107; /* Connecting Yellow */
}

.status-text[b-jt9wdv4286] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
}

@keyframes pulse-green-b-jt9wdv4286 {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}
/* /Components/AiWorkspacePanel.razor.rz.scp.css */
.workspace-container[b-65kfrsu23l] {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

.workspace-header[b-65kfrsu23l] {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-list[b-65kfrsu23l] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-bubble[b-65kfrsu23l] {
    max-width: 85%;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

    .message-bubble.user[b-65kfrsu23l] {
        align-self: flex-end;
        background-color: #0078d4;
        color: white;
    }

    .message-bubble.ai[b-65kfrsu23l] {
        align-self: flex-start;
        background-color: #f3f2f1;
        color: #323130;
    }

.input-area[b-65kfrsu23l] {
    padding: 1rem;
    border-top: 1px solid #eee;
}

textarea[b-65kfrsu23l] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    resize: none;
}

.status-dot[b-65kfrsu23l] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.online[b-65kfrsu23l] {
    background: #107c10;
}

.offline[b-65kfrsu23l] {
    background: #a4262c;
}

.thinking-indicator[b-65kfrsu23l] {
    align-self: flex-start;
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-style: italic;
    display: flex;
    align-items: center;
    animation: fadeIn-b-65kfrsu23l 0.5s ease-in;
}

@keyframes fadeIn-b-65kfrsu23l {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* Make the sparkle icon glow slightly */
.fa-sparkles[b-65kfrsu23l] {
    filter: drop-shadow(0 0 2px rgba(13, 110, 253, 0.5));
}

.status-indicator[b-65kfrsu23l] {
    width: 8px;
    height: 8px;
    background-color: #0ca678; /* Success Green */
    border-radius: 50%;
    position: relative;
}

    /* Optional: A subtle pulse to show the connection is active */
    .status-indicator[b-65kfrsu23l]::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: 50%;
        animation: status-pulse-b-65kfrsu23l 2s infinite;
        opacity: 0.4;
    }

@keyframes status-pulse-b-65kfrsu23l {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.tracking-wider[b-65kfrsu23l] {
    letter-spacing: 0.1em;
}
/* /Layout/Footer.razor.rz.scp.css */
.site-footer[b-eoyltik84h] {
    width: 100%;
}

.brand-text-sm[b-eoyltik84h] {
    font-size: 0.9rem;
    letter-spacing: -0.2px;
}

.social-links[b-eoyltik84h] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .social-links[b-eoyltik84h] {
        justify-content: flex-end;
    }
}

.social-icon[b-eoyltik84h] {
    color: #6c757d;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .social-icon:hover[b-eoyltik84h] {
        color: #0d6efd;
        transform: translateY(-2px);
    }
/* /Layout/LeftNav.razor.rz.scp.css */
/* 4. LHS Navigation (Added Desktop Width) */
.left-nav[b-jdrp9cydb2] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    border-right: 1px solid rgba(0,0,0,0.1);
    /* Lock the width */
    width: 220px;
    flex-shrink: 0;
}

    /* Width control for toggled state */
    .left-nav.nav-closed[b-jdrp9cydb2] {
        width: 70px;
    }

.context-header[b-jdrp9cydb2] {
    background-color: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
    padding: 1rem 1.25rem;
    /* Prevent the header from expanding the sidebar width */
    overflow: hidden;
}

/* Project Name Truncation */
.project-name-display[b-jdrp9cydb2] {
    font-weight: bold;
    display: block;
    white-space: nowrap; /* Keep text on one line */
    overflow: hidden; /* Hide the overflow */
    text-overflow: ellipsis; /* Add the "..." */
    max-width: 100%; /* Bound by the parent width */
}

.list-group-item[b-jdrp9cydb2] {
    transition: background-color 0.2s;
    padding: 0.75rem 1.25rem;
    white-space: nowrap; /* Prevents text wrapping during transition */
    overflow: hidden;
}

.breadcrumb[b-jdrp9cydb2] {
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.left-nav[b-jdrp9cydb2], .breadcrumb[b-jdrp9cydb2] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Desktop Logic --- */
@media (min-width: 993px) {
    .left-nav[b-jdrp9cydb2] {
        width: 220px;
        display: flex !important;
    }

    /*.left-nav.nav-closed {
        width: 70px;
    }*/
}

/* --- Mobile Logic --- */
/*@media (max-width: 992px) {
    .left-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;*/ /* Drawer width */
        /*z-index: 2000;*/ /* Above everything */
        /*transform: translateX(0);
        transition: transform 0.3s ease-in-out;
    }*/

    /* In mobile, closed = completely off-screen */
    /*.left-nav.nav-closed {
        transform: translateX(-100%);
    }
}*/

/* --- Mobile Logic --- */
@media (max-width: 992px) {
    .left-nav[b-jdrp9cydb2] {
        position: fixed;
        top: 0; /* Adjust to 70px if you want it below the TopNav */
        left: 0;
        bottom: 0;
        width: 280px; 
        z-index: 2000;
        /* Ensure it starts off-screen if closed */
        transform: translateX(-100%); 
        transition: transform 0.3s ease-in-out;
        display: flex !important; /* Must be flex to show items, but transform hides it */
    }

    /* Force the open state */
    .left-nav.nav-open[b-jdrp9cydb2] {
        transform: translateX(0);
    }

    /* Force the closed state */
    .left-nav.nav-closed[b-jdrp9cydb2] {
        transform: translateX(-100%);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* 1. Root Container - The Backbone */
.app-container[b-7awrp217g9] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* Prevents double scrollbars on the page */
}

/* 3. The Workspace */
.workspace-wrapper[b-7awrp217g9] {
    padding-top: 70px; /* Height of the navbar */
    display: flex;
    height: 100vh;
}

/* Ensure the Sidebar/AI Prompt button aligns with the navbar height */
.sidebar-trigger[b-7awrp217g9] {
    margin-top: 10px;
}

.nav-footer[b-7awrp217g9] {
    margin-top: auto;
}

.navbar[b-7awrp217g9], .breadcrumb[b-7awrp217g9] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content[b-7awrp217g9] {
    animation: fadeIn-b-7awrp217g9 0.4s ease-in;
}

@keyframes fadeIn-b-7awrp217g9 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main-content[b-7awrp217g9] {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack Breadcrumbs on top of Content */
    height: 100%;
    overflow: hidden; /* Let the article handle the scroll instead */
    background-color: #ffffff;
}

.content-header[b-7awrp217g9] {
    flex-shrink: 0; /* Don't let the header squish */
    height: 48px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.content-padding[b-7awrp217g9] {
    flex: 1;
    overflow-y: auto; /* Scroll happens here now */
    padding: 2rem; /* Re-establishing your lost padding */
    display: block;
}
/* 5. RHS Sidebar (Corrected for Mobile) */
.sidebar[b-7awrp217g9] {
    width: 320px;
    background-color: #fcfcfc;
    border-left: 1px solid #e0e0e0;
    transition: width 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

    .sidebar.collapsed[b-7awrp217g9] {
        width: 60px;
    }

/* Backdrop */
/* Only show/apply backdrop logic on mobile */
@media (max-width: 992px) {
    .nav-backdrop[b-7awrp217g9] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
        z-index: 2500;
        cursor: pointer;
        /* Optional: Smooth fade in */
        animation: fadeIn-b-7awrp217g9 0.2s ease-in-out;
    }
}

@keyframes fadeIn-b-7awrp217g9 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Ensure LeftNav is higher than the backdrop in your existing styles */
@media (max-width: 992px) {
    .left-nav[b-7awrp217g9] {
        z-index: 3000 !important;
    }
}
/* 6. Mobile Responsiveness (The Fix) */
@media (max-width: 992px) {
    /* RHS Drawer (Added this to fix your "broken" display on mobile) */
    .sidebar[b-7awrp217g9] {
        position: fixed;
        right: 0;
        top: 60px;
        height: calc(100vh - 60px);
        z-index: 1100;
        width: 280px !important; /* Force width on mobile */
    }

        .sidebar.closed[b-7awrp217g9] {
            transform: translateX(100%);
        }

        .sidebar.open[b-7awrp217g9] {
            transform: translateX(0);
        }

    .btn-collapse[b-7awrp217g9] {
        display: none;
    }
    /* Hide desktop toggle on mobile */
}

/* 7. Breadcrumb */
.breadcrumb-item + .breadcrumb-item[b-7awrp217g9]::before {
    content: "\f105"; /* Font Awesome Angle Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 10px;
    color: #adb5bd;
}

.breadcrumb-item[b-7awrp217g9] {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

/* The Specialized "Architect" Button */
.btn-primary-architect[b-7awrp217g9] {
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    color: white;
    border: none;
    border-radius: 50px; /* Pill shape matches Hero buttons */
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-architect:hover[b-7awrp217g9] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    color: white;
}

/* The main container for your app content */
.main-content-wrapper[b-7awrp217g9] {
    transition: margin-right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 0;
}

/* When the state service says it's open, push the content left */
.main-content-wrapper.sidebar-open[b-7awrp217g9] {
    margin-right: 380px; /* Matches the width of our AiSidebar */
}




/* Ensure the main content pushes the footer to the bottom */
.main-content[b-7awrp217g9] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px); /* Height of Navbar */
}
/* /Layout/TopNav.razor.rz.scp.css */
/* 2. Top Navigation Bar */
.top-bar[b-pnap6gb5tb] {
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-shrink: 0; /* Prevents the header from squishing */
    z-index: 1000;
}

.brand[b-pnap6gb5tb] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo[b-pnap6gb5tb] {
    height: 32px;
}

.navbar-custom[b-pnap6gb5tb] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 70px;
    transition: all 0.3s ease;
}

/* Logo Styling */
.logo-icon[b-pnap6gb5tb] {
    background: #0d6efd;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.brand-text[b-pnap6gb5tb] {
    letter-spacing: -0.5px;
    font-size: 1.25rem;
}

/* Container for the button - helps with positioning in the top bar */
.hamburger-wrapper[b-pnap6gb5tb] {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 60px; /* Match your navbar height */
}

.hamburger-menu[b-pnap6gb5tb] {
    background: transparent;
    border: none;
    color: #333;
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

    /* Hover effect for desktop/tablet */
    .hamburger-menu:hover[b-pnap6gb5tb] {
        background-color: rgba(0, 0, 0, 0.05);
        color: #0d6efd;
    }

    /* Active/Focus state to handle accessibility and tap feedback */
    .hamburger-menu:focus[b-pnap6gb5tb] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    }

/* Visibility Logic */
@media (min-width: 993px) {
    /* Optional: Hide the button on desktop if you want a permanent sidebar */
    /* .hamburger-menu { display: none; } */
}

@media (max-width: 992px) {
    .hamburger-menu[b-pnap6gb5tb] {
        display: block;
        /* Ensure it's big enough for a finger tap (min 44x44px) */
        min-width: 44px;
        min-height: 44px;
    }
}
/* /Pages/EarlyAccess.razor.rz.scp.css */
/* Shared Layout Logic */
.login-wrapper[b-1z88czddar] {
    min-height: calc(100vh - 70px); /* Adjust for your Navbar height */
    display: flex;
    /* Remove the negative margin and calc width */
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.login-sidebar[b-1z88czddar], .login-form-area[b-1z88czddar] {
    flex: 1; /* More robust than width: 50% */
}

.login-sidebar[b-1z88czddar] {
    width: 50%;
    background: linear-gradient(160deg, #0d6efd 0%, #084298 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    color: white;
}

.login-form-area[b-1z88czddar] {
    width: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Shared Components */
.form-card[b-1z88czddar] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: none !important;
    border-radius: 1.25rem !important;
    padding: 2.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
}

.form-control[b-1z88czddar] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.form-control:focus[b-1z88czddar] {
    background-color: #fff !important;
    border: 1px solid #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important;
}

.btn-primary[b-1z88czddar] {
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover:not(:disabled)[b-1z88czddar] {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.icon-circle-sm[b-1z88czddar] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Mobile & Tablet Handling --- */
@media (max-width: 991.98px) {
    .login-wrapper[b-1z88czddar] {
        flex-direction: column;
        width: 100%;
    }

    .login-sidebar[b-1z88czddar] {
        display: none !important;
    }

    /* Make the form area take up the full width */
    .login-form-area[b-1z88czddar] {
        width: 100%;
        min-height: 100vh;
        padding: 1.5rem; /* Slightly tighter padding for small screens */
    }

    /* Ensure the card doesn't hit the screen edges */
    .form-card[b-1z88czddar] {
        padding: 2rem;
        max-width: 100%; /* Allow it to be fluid on very small phones */
    }
}

/* Lighten Placeholder Text */
.form-control[b-1z88czddar]::placeholder {
    color: #adb5bd; /* A standard Bootstrap light gray */
    opacity: 1; /* Ensures the color is consistent across browsers */
    font-weight: 400;
}

/* Custom utility for extra-small error text */
.x-small[b-1z88czddar] {
    font-size: 0.75rem !important; /* Smaller than Bootstrap's .small (0.875rem) */
}

/* Specific styling for Blazor validation messages */
.validation-message[b-1z88czddar] {
    font-size: 0.72rem;
    margin-top: 0.25rem;
    display: block;
    color: #dc3545; /* Bootstrap danger red */
}

/* Lighten the placeholder text across all inputs */
.form-control[b-1z88czddar]::placeholder {
    color: #dee2e6 !important; /* Very light gray */
    font-size: 0.85rem;
}

/* For modern browsers to ensure the lighter shade sticks */
[b-1z88czddar]::-webkit-input-placeholder {
    color: #dee2e6;
}

[b-1z88czddar]::-moz-placeholder {
    color: #dee2e6;
}
/* /Pages/Home.razor.rz.scp.css */
.homepage-wrapper[b-bbb6ipzq1s] {
    margin: -2rem; /* Negate the content-padding if applied globally */
    overflow-x: hidden;
}

.hero-section[b-bbb6ipzq1s] {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #f0f7ff 0%, #ffffff 100%);
}

.journey-card[b-bbb6ipzq1s] {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .journey-card:hover[b-bbb6ipzq1s] {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

.icon-circle[b-bbb6ipzq1s] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-soft-primary[b-bbb6ipzq1s] {
    background: #e7f1ff;
    color: #0d6efd;
}

.bg-soft-success[b-bbb6ipzq1s] {
    background: #e6fcf5;
    color: #0ca678;
}

.bg-soft-warning[b-bbb6ipzq1s] {
    background: #fff9db;
    color: #f08c00;
}


.agent-showcase[b-bbb6ipzq1s] {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 120px 0;
}

.mini-feature[b-bbb6ipzq1s] {
    padding: 1rem;
}

    .mini-feature i[b-bbb6ipzq1s] {
        font-size: 1.5rem;
        display: block;
    }

    .mini-feature h6[b-bbb6ipzq1s] {
        font-size: 0.9rem;
        font-weight: 700;
        margin: 0;
    }

/* Mockup Frame Styling */
.mockup-container[b-bbb6ipzq1s] {
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.mockup-frame[b-bbb6ipzq1s] {
    background: #f1f3f5;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    transform: rotateX(5deg); /* Slight tilt for depth */
    transition: transform 0.5s ease;
}

    .mockup-frame:hover[b-bbb6ipzq1s] {
        transform: rotateX(0deg) translateY(-10px);
    }

.mockup-header[b-bbb6ipzq1s] {
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.dot[b-bbb6ipzq1s] {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
}

.red[b-bbb6ipzq1s] {
    background: #ff5f56;
}

.yellow[b-bbb6ipzq1s] {
    background: #ffbd2e;
}

.green[b-bbb6ipzq1s] {
    background: #27c93f;
}

.agent-avatar[b-bbb6ipzq1s] {
    width: 32px;
    height: 32px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.user-msg[b-bbb6ipzq1s] {
    border-top-right-radius: 2px !important;
}

.agent-msg[b-bbb6ipzq1s] {
    border-top-left-radius: 2px !important;
}
/* /Pages/Login.razor.rz.scp.css */
/* Shared Layout Logic */
.login-wrapper[b-g4sw6zd09n] {
    min-height: 100vh;
    width: calc(100vw + 4rem);
    margin: -2rem;
    display: flex;
    overflow-x: hidden; /* Prevents horizontal scroll from the margin offset */
}

.login-sidebar[b-g4sw6zd09n] {
    width: 50%;
    background: linear-gradient(160deg, #0d6efd 0%, #084298 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    color: white;
}

.login-form-area[b-g4sw6zd09n] {
    width: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Shared Components */
.form-card[b-g4sw6zd09n] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}

.icon-circle-sm[b-g4sw6zd09n] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Handling */
@media (max-width: 991.98px) {
    .login-sidebar[b-g4sw6zd09n] {
        display: none !important;
    }

    .login-form-area[b-g4sw6zd09n] {
        width: 100%;
    }

    .login-wrapper[b-g4sw6zd09n] {
        margin: 0;
        width: 100vw;
    }
}

.form-card[b-g4sw6zd09n] {
    width: 100%;
    max-width: 420px; /* Slightly wider for better breathing room */
    border: none !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
    background: #ffffff;
}

.form-control[b-g4sw6zd09n] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

    .form-control:focus[b-g4sw6zd09n] {
        background-color: #fff !important;
        border: 1px solid #0d6efd !important;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important;
    }

.btn-primary[b-g4sw6zd09n] {
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-primary:hover:not(:disabled)[b-g4sw6zd09n] {
        background-color: #0056b3;
        transform: translateY(-1px);
    }

/* Responsive fix */
@media (max-width: 991.98px) {
    .login-sidebar[b-g4sw6zd09n] {
        display: none !important;
    }

    .login-form-area[b-g4sw6zd09n] {
        width: 100%;
    }

    .login-wrapper[b-g4sw6zd09n] {
        margin: 0;
        width: 100vw;
    }
}
/* /Pages/ProjectArchitecture.razor.rz.scp.css */
.accordion-button:not(.collapsed)[b-ewe2s41ozg] {
    background-color: #f0f7ff;
    color: #0d6efd;
}

.feature-block[b-ewe2s41ozg] {
    background-color: #ffffff;
    border-left: 4px solid #dee2e6 !important;
}

    .feature-block:hover[b-ewe2s41ozg] {
        border-left-color: #0d6efd !important;
        background-color: #fafafa;
    }

.bg-danger[b-ewe2s41ozg] {
    background-color: #dc3545 !important;
}

.bg-primary[b-ewe2s41ozg] {
    background-color: #0d6efd !important;
}

/* Custom Scroll for Tasks list */
.col-md-6 ul[b-ewe2s41ozg], .col-md-6 div[b-ewe2s41ozg] {
    max-height: 200px;
    overflow-y: auto;
}
/* Unified Badge Styling */
/* Unified Soft Badge System */
.bg-danger-soft[b-ewe2s41ozg] {
    background-color: #fff5f5;
    color: #fa5252;
}

.bg-primary-soft[b-ewe2s41ozg] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.bg-success-soft[b-ewe2s41ozg] {
    background-color: #e6fcf5;
    color: #0ca678;
}

.bg-warning-soft[b-ewe2s41ozg] {
    background-color: #fff9db;
    color: #f08c00;
}

.bg-secondary-soft[b-ewe2s41ozg] {
    background-color: #f8f9fa;
    color: #495057;
}

.badge[b-ewe2s41ozg] {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    height: auto;
    border: 1px solid rgba(0,0,0,0.03); /* Adds a tiny bit of definition */
}
/* /Pages/ProjectDetails.razor.rz.scp.css */
.accordion-button:not(.collapsed)[b-fyq89bkl5x] {
    background-color: #f0f7ff;
    color: #0d6efd;
}

.feature-block[b-fyq89bkl5x] {
    background-color: #ffffff;
    border-left: 4px solid #dee2e6 !important;
}

    .feature-block:hover[b-fyq89bkl5x] {
        border-left-color: #0d6efd !important;
        background-color: #fafafa;
    }

.bg-danger[b-fyq89bkl5x] {
    background-color: #dc3545 !important;
}

.bg-primary[b-fyq89bkl5x] {
    background-color: #0d6efd !important;
}

/* Custom Scroll for Tasks list */
.col-md-6 ul[b-fyq89bkl5x], .col-md-6 div[b-fyq89bkl5x] {
    max-height: 200px;
    overflow-y: auto;
}
/* Unified Badge Styling */
/* Unified Soft Badge System */
.bg-danger-soft[b-fyq89bkl5x] {
    background-color: #fff5f5;
    color: #fa5252;
}

.bg-primary-soft[b-fyq89bkl5x] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.bg-success-soft[b-fyq89bkl5x] {
    background-color: #e6fcf5;
    color: #0ca678;
}

.bg-warning-soft[b-fyq89bkl5x] {
    background-color: #fff9db;
    color: #f08c00;
}

.bg-secondary-soft[b-fyq89bkl5x] {
    background-color: #f8f9fa;
    color: #495057;
}

.badge[b-fyq89bkl5x] {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    height: auto;
    border: 1px solid rgba(0,0,0,0.03); /* Adds a tiny bit of definition */
}
/* /Pages/Projects.razor.rz.scp.css */
.project-card[b-buv4b2q60e] {
    border: 1px solid #eef0f2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}

    .project-card:hover[b-buv4b2q60e] {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

.text-truncate-2[b-buv4b2q60e] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Soft Badges */
.bg-soft-primary[b-buv4b2q60e] {
    background-color: #e7f1ff;
}

.bg-success-soft[b-buv4b2q60e] {
    background-color: #e6fcf5;
    color: #0ca678;
}

.bg-warning-soft[b-buv4b2q60e] {
    background-color: #fff9db;
    color: #f08c00;
}

.bg-secondary-soft[b-buv4b2q60e] {
    background-color: #f8f9fa;
    color: #495057;
}

.tech-badge[b-buv4b2q60e] {
    display: inline-block;
    background: #f1f3f5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
    margin-right: 8px;
}

.epic-summary[b-buv4b2q60e] {
    font-size: 0.9rem;
}

.hover-primary:hover[b-buv4b2q60e] {
    color: #0d6efd !important;
    text-decoration: underline !important;
}

.project-card[b-buv4b2q60e] {
    cursor: pointer; /* Makes the whole card feel interactive */
}

/* /Pages/Signup.razor.rz.scp.css */
/* Shared Layout Logic */
.login-wrapper[b-4mgyquf1l3] {
    min-height: 100vh;
    width: calc(100vw + 4rem);
    margin: -2rem;
    display: flex;
    overflow-x: hidden; /* Prevents horizontal scroll from the margin offset */
}

.login-sidebar[b-4mgyquf1l3] {
    width: 50%;
    background: linear-gradient(160deg, #0d6efd 0%, #084298 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    color: white;
}

.login-form-area[b-4mgyquf1l3] {
    width: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Shared Components */
.form-card[b-4mgyquf1l3] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}

.icon-circle-sm[b-4mgyquf1l3] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Handling */
@media (max-width: 991.98px) {
    .login-sidebar[b-4mgyquf1l3] {
        display: none !important;
    }

    .login-form-area[b-4mgyquf1l3] {
        width: 100%;
    }

    .login-wrapper[b-4mgyquf1l3] {
        margin: 0;
        width: 100vw;
    }
}

.form-card[b-4mgyquf1l3] {
    width: 100%;
    max-width: 420px; /* Slightly wider for better breathing room */
    border: none !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
    background: #ffffff;
}

.form-control[b-4mgyquf1l3] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

    .form-control:focus[b-4mgyquf1l3] {
        background-color: #fff !important;
        border: 1px solid #0d6efd !important;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important;
    }

.btn-primary[b-4mgyquf1l3] {
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
}

    .btn-primary:hover:not(:disabled)[b-4mgyquf1l3] {
        background-color: #0056b3;
        transform: translateY(-1px);
    }

/* Responsive fix */
@media (max-width: 991.98px) {
    .login-sidebar[b-4mgyquf1l3] {
        display: none !important;
    }

    .login-form-area[b-4mgyquf1l3] {
        width: 100%;
    }

    .login-wrapper[b-4mgyquf1l3] {
        margin: 0;
        width: 100vw;
    }
}
