/* /Components/LanguageSelector.razor.rz.scp.css */
/* Language Selector Styles */
.language-selector[b-j0x5ag88w0] {
    position: relative;
    display: inline-block;
}

.language-selector-button[b-j0x5ag88w0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.language-selector-button:hover[b-j0x5ag88w0] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.language-flag[b-j0x5ag88w0] {
    width: 1.25rem;
    height: 1rem;
    border-radius: 0.125rem;
}

.language-chevron[b-j0x5ag88w0] {
    font-size: 0.75rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-chevron.rotated[b-j0x5ag88w0] {
    transform: rotate(180deg);
}

.language-dropdown[b-j0x5ag88w0] {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 0.25rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 50;
    min-width: max-content;
    overflow: hidden;
}

.language-option[b-j0x5ag88w0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-option:hover[b-j0x5ag88w0] {
    background-color: var(--bg-hover);
}

.language-option.selected[b-j0x5ag88w0] {
    background-color: var(--success-50);
    color: var(--success-700);
}

/* Dark mode specific styles */
.dark .language-selector-button[b-j0x5ag88w0] {
    background-color: var(--bg-secondary);
    border-color: var(--border-color-dark);
    color: var(--text-primary-dark);
}

.dark .language-dropdown[b-j0x5ag88w0] {
    background-color: var(--bg-secondary);
    border-color: var(--border-color-dark);
}

.dark .language-option[b-j0x5ag88w0] {
    color: var(--text-primary-dark);
}

.dark .language-option:hover[b-j0x5ag88w0] {
    background-color: var(--bg-hover-dark);
}

.dark .language-option.selected[b-j0x5ag88w0] {
    background-color: var(--success-900);
    color: var(--success-300);
}
/* /Components/ThemeToggle.razor.rz.scp.css */
/* Theme Toggle Styles */
.theme-toggle[b-y44q9vhbr1] {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 40px;
}

    .theme-toggle:hover[b-y44q9vhbr1] {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

.theme-icon[b-y44q9vhbr1] {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .theme-icon.sun[b-y44q9vhbr1] {
        color: var(--warning-500);
    }

    .theme-icon.moon[b-y44q9vhbr1] {
        color: var(--info-400);
    }

/* Dark mode specific styles */
.dark .theme-toggle[b-y44q9vhbr1] {
    background-color: var(--bg-secondary);
    border-color: var(--border-color-dark);
    color: var(--text-primary-dark);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ckpbp25w0k] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ckpbp25w0k] {
    flex: 1;
}

.sidebar[b-ckpbp25w0k] {
    background-color: var(--bg-color);
    border-right: 1px solid var(--border-color);
}

.top-row[b-ckpbp25w0k] {
    background-color: var(--nav-color);
    border-bottom: 1px solid var(--border-color);
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ckpbp25w0k]  a, .top-row[b-ckpbp25w0k]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-ckpbp25w0k]  a:hover, .top-row[b-ckpbp25w0k]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-ckpbp25w0k]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .top-row .breadcrumb[b-ckpbp25w0k] {
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    .top-row .top-nav[b-ckpbp25w0k] {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .top-row .breadcrumb[b-ckpbp25w0k]  a {
        margin-left: 0;
        text-decoration: none !important;
        color: var(--brand-700);
    }

    .top-row .breadcrumb[b-ckpbp25w0k]  a:hover {
        color: var(--brand-700);
        text-decoration: underline !important;
    }

    .top-row .e-avatar[b-ckpbp25w0k] {
        height: 2.2rem;
        width: 2.2rem;
        cursor: pointer;
    }

    .top-row .material-icons-outlined[b-ckpbp25w0k] {
        cursor: pointer;
    }

@media (max-width: 640.98px) {
    .top-row[b-ckpbp25w0k] {
        justify-content: space-between;
    }

        .top-row[b-ckpbp25w0k]  a, .top-row[b-ckpbp25w0k]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-ckpbp25w0k] {
        flex-direction: row;
    }

    .sidebar[b-ckpbp25w0k] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ckpbp25w0k] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-ckpbp25w0k]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-ckpbp25w0k], article[b-ckpbp25w0k] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.top-row[b-09vm7rl3vc] {
    min-height: 3.5rem;
    background-color: var(--nav-color);
    color: var(--nav-text);
}

    .top-row svg[b-09vm7rl3vc] {
        color: var(--nav-text);
    }

.bot-row[b-09vm7rl3vc] {
    min-height: 3.5rem;
    background-color: var(--nav-color);
    color: var(--nav-text);
}

.nav-scrollable[b-09vm7rl3vc] {
    background-color: var(--nav-color);
    color: var(--nav-text);
}

.navbar-brand[b-09vm7rl3vc] {
    font-size: 1.1rem;
}

.material-icons-outlined[b-09vm7rl3vc] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.nav-item[b-09vm7rl3vc] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-09vm7rl3vc] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-09vm7rl3vc] {
        padding-bottom: 1rem;
    }

    .nav-item[b-09vm7rl3vc]  a {
        color: var(--color);
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-09vm7rl3vc]  a.active {
            background-color: var(--brand-700);
            color: white;
        }

        .nav-item[b-09vm7rl3vc]  a:hover {
            background-color: var(--brand-700);
            color: white;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-09vm7rl3vc] {
        display: none;
    }

    .collapse[b-09vm7rl3vc] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-09vm7rl3vc] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Auth/Onboarding.razor.rz.scp.css */
.container[b-hst9a1ay5g] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.landing-header[b-hst9a1ay5g] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bs-border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-menu[b-hst9a1ay5g] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link[b-hst9a1ay5g] {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

    .nav-link:hover[b-hst9a1ay5g],
    .nav-link.active[b-hst9a1ay5g] {
        color: var(--brand-700);
    }

.nav-link.active[b-hst9a1ay5g]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00AB55;
    border-radius: 1px;
}

/* Hero Section */
.hero-section[b-hst9a1ay5g] {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content[b-hst9a1ay5g] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title[b-hst9a1ay5g] {
    margin-bottom: 2rem;
}

    .hero-title:focus-visible[b-hst9a1ay5g] {
        outline: none;
    }

.subtitle[b-hst9a1ay5g] {
    display: block;
    color: var(--nav-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.main-title[b-hst9a1ay5g] {
    display: block;
    color: var(--nav-text);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-name[b-hst9a1ay5g] {
    display: block;
    color: #00AB55;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero-description[b-hst9a1ay5g] {
    font-size: 1.1rem;
    color: #637381;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-rating[b-hst9a1ay5g] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stars[b-hst9a1ay5g] {
    display: flex;
    gap: 4px;
}

.rating-text[b-hst9a1ay5g] {
    color: #637381;
    font-size: 0.9rem;
}

.hero-actions[b-hst9a1ay5g] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cta[b-hst9a1ay5g] {
    background: #00AB55;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover[b-hst9a1ay5g] {
    background: #007B3D;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 171, 85, 0.4);
}

.btn-secondary[b-hst9a1ay5g] {
    color: #637381;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover[b-hst9a1ay5g] {
    background: #F4F6F8;
    color: #1C232E;
}

.hero-visual[b-hst9a1ay5g] {
    position: relative;
}

.hero-image img[b-hst9a1ay5g] {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Background Shapes */
.hero-background[b-hst9a1ay5g] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-shape[b-hst9a1ay5g] {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.shape-1[b-hst9a1ay5g] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00AB55, #00C6FB);
    top: -200px;
    right: -200px;
}

.shape-2[b-hst9a1ay5g] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    bottom: -150px;
    left: -150px;
}

/* Section Styles */
.section-header[b-hst9a1ay5g] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title[b-hst9a1ay5g] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C232E;
    margin-bottom: 1rem;
}

.section-subtitle[b-hst9a1ay5g] {
    font-size: 1.2rem;
    color: #637381;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section[b-hst9a1ay5g] {
    padding: 100px 0;
    background: #F9FAFB;
}

.about-content[b-hst9a1ay5g] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-item[b-hst9a1ay5g] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-icon[b-hst9a1ay5g] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00AB55, #00C6FB);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icon i[b-hst9a1ay5g] {
    font-size: 1.5rem;
    color: white;
}

.about-info h3[b-hst9a1ay5g] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1C232E;
    margin-bottom: 0.5rem;
}

.about-info p[b-hst9a1ay5g] {
    color: #637381;
    line-height: 1.6;
}

.about-stats[b-hst9a1ay5g] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item[b-hst9a1ay5g] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number[b-hst9a1ay5g] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00AB55;
    margin-bottom: 0.5rem;
}

.stat-label[b-hst9a1ay5g] {
    color: #637381;
    font-weight: 600;
}

/* Features Section */
.features-section[b-hst9a1ay5g] {
    padding: 100px 0;
}

.features-grid[b-hst9a1ay5g] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card[b-hst9a1ay5g] {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover[b-hst9a1ay5g] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-hst9a1ay5g] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00AB55, #00C6FB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i[b-hst9a1ay5g] {
    font-size: 2rem;
    color: white;
}

.feature-title[b-hst9a1ay5g] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1C232E;
    margin-bottom: 1rem;
}

.feature-description[b-hst9a1ay5g] {
    color: #637381;
    line-height: 1.6;
}

/* CTA Section */
.cta-section[b-hst9a1ay5g] {
    padding: 100px 0;
    background: linear-gradient(135deg, #00AB55, #00C6FB);
    color: white;
    text-align: center;
}

.cta-title[b-hst9a1ay5g] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description[b-hst9a1ay5g] {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions[b-hst9a1ay5g] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-cta-large[b-hst9a1ay5g] {
    background: white;
    color: #00AB55;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover[b-hst9a1ay5g] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline[b-hst9a1ay5g] {
    color: white;
    border: 2px solid white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover[b-hst9a1ay5g] {
    background: white;
    color: #00AB55;
}

/* Contact Section */
.contact-section[b-hst9a1ay5g] {
    padding: 100px 0;
    background: #F9FAFB;
}

.contact-content[b-hst9a1ay5g] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item[b-hst9a1ay5g] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon[b-hst9a1ay5g] {
    width: 50px;
    height: 50px;
    background: #00AB55;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i[b-hst9a1ay5g] {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4[b-hst9a1ay5g] {
    font-weight: 700;
    color: #1C232E;
    margin-bottom: 0.25rem;
}

.contact-details p[b-hst9a1ay5g] {
    color: #637381;
}

.contact-form[b-hst9a1ay5g] {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group[b-hst9a1ay5g] {
    margin-bottom: 1.5rem;
}

.form-input[b-hst9a1ay5g],
.form-textarea[b-hst9a1ay5g] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus[b-hst9a1ay5g],
.form-textarea:focus[b-hst9a1ay5g] {
    outline: none;
    border-color: #00AB55;
}

.btn-submit[b-hst9a1ay5g] {
    width: 100%;
    background: #00AB55;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover[b-hst9a1ay5g] {
    background: #007B3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 171, 85, 0.3);
}

/* Footer */
.footer[b-hst9a1ay5g] {
    background: #1C232E;
    color: white;
    padding: 60px 0 30px;
}

.footer-content[b-hst9a1ay5g] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand[b-hst9a1ay5g] {
    grid-column: span 1;
}

.footer-logo[b-hst9a1ay5g] {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description[b-hst9a1ay5g] {
    color: #919EAB;
    line-height: 1.6;
}

.footer-column h4[b-hst9a1ay5g] {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul[b-hst9a1ay5g] {
    list-style: none;
}

.footer-column ul li[b-hst9a1ay5g] {
    margin-bottom: 0.5rem;
}

.footer-column ul li a[b-hst9a1ay5g] {
    color: #919EAB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover[b-hst9a1ay5g] {
    color: #00AB55;
}

.footer-bottom[b-hst9a1ay5g] {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #919EAB;
}

.footer-link[b-hst9a1ay5g] {
    color: #00AB55;
    text-decoration: none;
}

.footer-link:hover[b-hst9a1ay5g] {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu[b-hst9a1ay5g] {
        display: none;
    }
    
    .hero-content[b-hst9a1ay5g] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-name[b-hst9a1ay5g] {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-actions[b-hst9a1ay5g] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-content[b-hst9a1ay5g] {
        grid-template-columns: 1fr;
    }
    
    .about-stats[b-hst9a1ay5g] {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .features-grid[b-hst9a1ay5g] {
        grid-template-columns: 1fr;
    }
    
    .contact-content[b-hst9a1ay5g] {
        grid-template-columns: 1fr;
    }
    
    .footer-content[b-hst9a1ay5g] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-actions[b-hst9a1ay5g] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title[b-hst9a1ay5g] {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container[b-hst9a1ay5g] {
        padding: 0 15px;
    }
    
    .hero-section[b-hst9a1ay5g] {
        padding: 100px 0 60px;
    }
    
    .product-name[b-hst9a1ay5g] {
        font-size: 2rem;
    }
    
    .section-title[b-hst9a1ay5g] {
        font-size: 1.75rem;
    }
    
    .feature-card[b-hst9a1ay5g],
    .contact-form[b-hst9a1ay5g] {
        padding: 1.5rem;
    }
}
/* /Pages/Chats/ChatPage.razor.rz.scp.css */
.chat-container[b-aws67jh1f3] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header[b-aws67jh1f3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.connection-status[b-aws67jh1f3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator[b-aws67jh1f3] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-b-aws67jh1f3 2s infinite;
}

.status-connected[b-aws67jh1f3] {
    background-color: #10b981;
}

.status-disconnected[b-aws67jh1f3] {
    background-color: #ef4444;
}

.status-connecting[b-aws67jh1f3] {
    background-color: #f59e0b;
}

.status-reconnecting[b-aws67jh1f3] {
    background-color: #f59e0b;
}

.status-text[b-aws67jh1f3] {
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes pulse-b-aws67jh1f3 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-messages[b-aws67jh1f3] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f9fafb;
}

.empty-state[b-aws67jh1f3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
}

.empty-icon[b-aws67jh1f3] {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.message[b-aws67jh1f3] {
    display: flex;
    max-width: 70%;
    animation: slideIn-b-aws67jh1f3 0.3s ease-out;
}

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

.message-sent[b-aws67jh1f3] {
    align-self: flex-end;
}

.message-received[b-aws67jh1f3] {
    align-self: flex-start;
}

.message-bubble[b-aws67jh1f3] {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-sent .message-bubble[b-aws67jh1f3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-received .message-bubble[b-aws67jh1f3] {
    background: white;
    color: #1f2937;
    border-bottom-left-radius: 4px;
}

.message-header[b-aws67jh1f3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    gap: 1rem;
}

.message-sender[b-aws67jh1f3] {
    font-weight: 600;
    font-size: 0.875rem;
}

.message-time[b-aws67jh1f3] {
    font-size: 0.75rem;
    opacity: 0.7;
}

.message-content[b-aws67jh1f3] {
    word-wrap: break-word;
    line-height: 1.5;
}

.chat-input-container[b-aws67jh1f3] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.input-wrapper[b-aws67jh1f3] {
    display: flex;
    gap: 0.75rem;
}

.message-input[b-aws67jh1f3] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.message-input:focus[b-aws67jh1f3] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.message-input:disabled[b-aws67jh1f3] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.send-button[b-aws67jh1f3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.send-button:hover:not(:disabled)[b-aws67jh1f3] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.send-button:disabled[b-aws67jh1f3] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.send-icon[b-aws67jh1f3] {
    width: 20px;
    height: 20px;
}

/* Debug toggle button */
.debug-toggle[b-aws67jh1f3] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    z-index: 999;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.debug-toggle:hover[b-aws67jh1f3] {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}

.debug-toggle:active[b-aws67jh1f3] {
    transform: scale(0.95);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .chat-container[b-aws67jh1f3] {
        background: #1f2937;
    }

    .chat-messages[b-aws67jh1f3] {
        background: #111827;
    }

    .message-received .message-bubble[b-aws67jh1f3] {
        background: #374151;
        color: #f9fafb;
    }

    .chat-input-container[b-aws67jh1f3] {
        background: #1f2937;
    }

    .message-input[b-aws67jh1f3] {
        background: #374151;
        color: #f9fafb;
        border-color: #4b5563;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .chat-container[b-aws67jh1f3] {
        height: calc(100vh - 80px);
        border-radius: 0;
    }

    .message[b-aws67jh1f3] {
        max-width: 85%;
    }

    .send-button span[b-aws67jh1f3] {
        display: none;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-container[b-ep74g0pt17] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.welcome-section[b-ep74g0pt17] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stats-section[b-ep74g0pt17] {
    margin-bottom: 2rem;
}

.stat-card[b-ep74g0pt17] {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.stat-card:hover[b-ep74g0pt17] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.quick-actions-section[b-ep74g0pt17] {
    margin-bottom: 2rem;
}

.quick-action-btn[b-ep74g0pt17] {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    background: inherit;
}

.quick-action-btn:hover[b-ep74g0pt17] {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.quick-action-btn:active[b-ep74g0pt17] {
    transform: translateY(-1px);
}

.recent-activity-section[b-ep74g0pt17],
.system-status-section[b-ep74g0pt17] {
    margin-bottom: 2rem;
}

.status-item[b-ep74g0pt17] {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.status-item:last-child[b-ep74g0pt17] {
    border-bottom: none;
}

/* Dark mode adjustments */
:global(.dark) .status-item[b-ep74g0pt17] {
    border-bottom-color: #374151;
}

/* Animation for loading cards */
.animate-pulse[b-ep74g0pt17] {
    animation: pulse-b-ep74g0pt17 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-b-ep74g0pt17 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .home-container[b-ep74g0pt17] {
        padding: 10px;
    }
    
    .welcome-section[b-ep74g0pt17] {
        padding: 1.5rem;
    }
    
    .stats-section[b-ep74g0pt17] {
        grid-template-columns: 1fr;
    }
    
    .quick-action-btn[b-ep74g0pt17] {
        padding: 1rem;
    }
}

/* Material icons styling */
.material-icons-outlined[b-ep74g0pt17] {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
/* /Pages/Partners/ProjectMembers/GroupSelection.razor.rz.scp.css */
/* Consolidated styles for group list items and hover actions */

/* Compact circular-ish icon button */
.icon-btn[b-vkwfropd8g] { padding: 2px; border-radius: 4px; display: flex; align-items: center; }
/* /Pages/Partners/Roles/RoleSelection.razor.rz.scp.css */
/* RoleSelection Component Styles */

/* Smooth transitions for hover effects */
.role-item[b-ljfal3dl6l] {
    transition: all 0.2s ease-in-out;
}

.role-item:hover[b-ljfal3dl6l] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Selected role highlight */
.role-item.selected[b-ljfal3dl6l] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.dark .role-item.selected[b-ljfal3dl6l] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
}

/* Icon animations */
.role-icon[b-ljfal3dl6l] {
    transition: transform 0.2s ease-in-out;
}

.role-item:hover .role-icon[b-ljfal3dl6l] {
    transform: scale(1.1);
}

/* Edit button hover effects */
.edit-button[b-ljfal3dl6l] {
    transition: all 0.2s ease-in-out;
}

.edit-button:hover[b-ljfal3dl6l] {
    transform: scale(1.1);
    background-color: rgba(59, 130, 246, 0.1);
}

/* Modal animations */
.modal-overlay[b-ljfal3dl6l] {
    animation: fadeIn-b-ljfal3dl6l 0.2s ease-out;
}

.modal-panel[b-ljfal3dl6l] {
    animation: slideInUp-b-ljfal3dl6l 0.3s ease-out;
}

@keyframes fadeIn-b-ljfal3dl6l {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp-b-ljfal3dl6l {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.role-item:focus-within[b-ljfal3dl6l] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Skeleton loading animations */
.skeleton-pulse[b-ljfal3dl6l] {
    animation: pulse-b-ljfal3dl6l 1.5s ease-in-out infinite;
}

@keyframes pulse-b-ljfal3dl6l {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
