/* /CodeBox/Auth/Authentication.razor.rz.scp.css */
/* Base Container */
.auth__wrapper[b-0cf6ay3srs] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Background Animations */
.auth__background[b-0cf6ay3srs] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Grid Lines */
.auth__grid[b-0cf6ay3srs] {
    position: relative;
    width: 100%;
    height: 100%;
}

.auth__grid-line[b-0cf6ay3srs] {
    position: absolute;
    opacity: 0.07;
    background: var(--text-primary);
}

.auth__grid-line--horizontal[b-0cf6ay3srs] {
    height: 1px;
    width: 100%;
    animation: gridHorizontal-b-0cf6ay3srs 10s linear infinite;
}

.auth__grid-line--vertical[b-0cf6ay3srs] {
    width: 1px;
    height: 100%;
    animation: gridVertical-b-0cf6ay3srs 10s linear infinite;
}

@keyframes gridHorizontal-b-0cf6ay3srs {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(50vh);
    }

    100% {
        transform: translateY(100vh);
    }
}

@keyframes gridVertical-b-0cf6ay3srs {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(50vw);
    }

    100% {
        transform: translateX(100vw);
    }
}

/* Floating Circles */
.auth__circles[b-0cf6ay3srs] {
    position: relative;
    width: 100%;
    height: 100%;
}

.auth__circle[b-0cf6ay3srs] {
    position: absolute;
    border: 1px solid #3b82f6;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatCircle-b-0cf6ay3srs 20s ease-in-out infinite;
}

@keyframes floatCircle-b-0cf6ay3srs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.2);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Code Particles */
.auth__code-particles[b-0cf6ay3srs] {
    position: relative;
    width: 100%;
    height: 100%;
}

.auth__code-particle[b-0cf6ay3srs] {
    position: absolute;
    color: var(--text-secondary);
    font-family: 'Consolas', monospace;
    opacity: 0.15;
    animation: particleMotion-b-0cf6ay3srs 8s linear infinite;
}

@keyframes particleMotion-b-0cf6ay3srs {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container */
.auth__container[b-0cf6ay3srs] {
    width: 100%;
    max-width: 440px;
    background: var(--background-dark);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid var(--primary-color);
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.auth__logo[b-0cf6ay3srs] {
    text-align: center;
    margin-bottom: 2rem;
}

.auth__logo-icon[b-0cf6ay3srs] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--background-lighter);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f8fafc;
    animation: logoPulse-b-0cf6ay3srs 3s infinite;
}

@keyframes logoPulse-b-0cf6ay3srs {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.15);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(59, 130, 246, 0.15);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.15);
    }
}

.auth__logo-title[b-0cf6ay3srs] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.auth__logo-subtitle[b-0cf6ay3srs] {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Tabs */
.auth__tabs[b-0cf6ay3srs] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.auth__tab[b-0cf6ay3srs] {
    flex: 1;
    background: none;
    border: none;
    color: #94a3b8;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .auth__tab.active[b-0cf6ay3srs] {
        color: #3b82f6;
    }

        .auth__tab.active[b-0cf6ay3srs]::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #3b82f6;
            animation: tabSlideIn-b-0cf6ay3srs 0.3s ease;
        }

@keyframes tabSlideIn-b-0cf6ay3srs {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Forms */
.auth__forms[b-0cf6ay3srs] {
    position: relative;
}

.auth__form[b-0cf6ay3srs] {
    animation: formFadeIn-b-0cf6ay3srs 0.3s ease;
}

@keyframes formFadeIn-b-0cf6ay3srs {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth__form-field[b-0cf6ay3srs] {
    margin-bottom: 1.5rem;
}

.auth__label[b-0cf6ay3srs] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}


.auth__password-input[b-0cf6ay3srs] {
    position: relative;
}

.auth__toggle-password[b-0cf6ay3srs] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

    .auth__toggle-password:hover[b-0cf6ay3srs] {
        color: #f8fafc;
    }

/* Actions */
.auth__actions[b-0cf6ay3srs] {
    margin-top: 1rem;
}

.auth__submit[b-0cf6ay3srs] {
    width: 100%;
    padding: 0.875rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .auth__submit:not(:disabled):hover[b-0cf6ay3srs] {
        background: #2563eb;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    }

    .auth__submit:disabled[b-0cf6ay3srs] {
        opacity: 0.7;
        cursor: not-allowed;
    }

/* Spinner */
.auth__spinner[b-0cf6ay3srs] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-0cf6ay3srs 0.8s linear infinite;
}

@keyframes spin-b-0cf6ay3srs {
    to {
        transform: rotate(360deg);
    }
}

/* Validation & Error Messages */
.auth__validation[b-0cf6ay3srs] {
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
}

.auth__error[b-0cf6ay3srs] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: errorSlideUp-b-0cf6ay3srs 0.3s ease;
}

@keyframes errorSlideUp-b-0cf6ay3srs {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth__error-close[b-0cf6ay3srs] {
    margin-left: auto;
    background: none;
    border: none;
    color: #ef4444;
    opacity: 0.7;
    cursor: pointer;
    padding: 0.25rem;
    transition: opacity 0.3s ease;
}

    .auth__error-close:hover[b-0cf6ay3srs] {
        opacity: 1;
    }

/* Responsive Design */
@media (max-width: 480px) {
    .auth__container[b-0cf6ay3srs] {
        padding: 1.5rem;
        margin: 1rem;
    }

    .auth__logo-icon[b-0cf6ay3srs] {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .auth__logo-title[b-0cf6ay3srs] {
        font-size: 1.5rem;
    }

    .auth__tab[b-0cf6ay3srs] {
        font-size: 0.875rem;
    }
}

/* Utilities */
[b-0cf6ay3srs]::placeholder {
    color: #64748b;
}

input:-webkit-autofill[b-0cf6ay3srs],
input:-webkit-autofill:hover[b-0cf6ay3srs],
input:-webkit-autofill:focus[b-0cf6ay3srs] {
    -webkit-text-fill-color: #f8fafc;
    -webkit-box-shadow: 0 0 0px 1000px #334155 inset;
    transition: background-color 5000s ease-in-out 0s;
}


/* Divider */
.auth__divider[b-0cf6ay3srs] {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

    .auth__divider[b-0cf6ay3srs]::before,
    .auth__divider[b-0cf6ay3srs]::after {
        content: '';
        position: absolute;
        top: 50%;
        width: calc(50% - 70px);
        height: 1px;
        background: #2d3a4f;
    }

    .auth__divider[b-0cf6ay3srs]::before {
        left: 0;
    }

    .auth__divider[b-0cf6ay3srs]::after {
        right: 0;
    }

.auth__divider-text[b-0cf6ay3srs] {
    background: #1e293b;
    color: #94a3b8;
    padding: 0 1rem;
    font-size: 0.875rem;
}

/* Social Buttons */
.auth__social[b-0cf6ay3srs] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.auth__social-button[b-0cf6ay3srs] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #2d3a4f;
    background: #334155;
    color: #f8fafc;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .auth__social-button:hover[b-0cf6ay3srs] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.auth__social-button--github:hover[b-0cf6ay3srs] {
    background: #24292e;
    border-color: #24292e;
}

.auth__social-button--google:hover[b-0cf6ay3srs] {
    background: #4285f4;
    border-color: #4285f4;
}

.auth__social-button i[b-0cf6ay3srs] {
    font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth__social[b-0cf6ay3srs] {
        flex-direction: column;
    }

    .auth__divider[b-0cf6ay3srs]::before,
    .auth__divider[b-0cf6ay3srs]::after {
        width: calc(50% - 60px);
    }
}
/* /CodeBox/Consoles/Console.razor.rz.scp.css */
.console-terminal[b-bd8g2j8rn0] {
    --console-bg: #1e1e1e;
    --console-text: #cccccc;
    --console-error: #ff6b6b;
    --console-header: #252526;
    --console-border: #444444;
    --console-cursor: #f0f0f0;
    --console-highlight: #294771;
    --console-input-bg: #2d2d2d;
    --console-inactive-bg: #282828;
    --console-button-hover: #3a3a3a;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 250px;
    border-radius: 0;
    border: 1px solid var(--console-border);
    overflow: hidden;
    color: var(--console-text);
    background-color: var(--console-bg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: height 0.3s ease, width 0.3s ease;
}

    .console-terminal.fullscreen[b-bd8g2j8rn0] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
    }

    .console-terminal.inactive[b-bd8g2j8rn0] {
        background-color: var(--console-inactive-bg);
        opacity: 0.9;
    }

.console-header[b-bd8g2j8rn0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 24px;
    background-color: var(--console-header);
    border-bottom: 1px solid var(--console-border);
}

.console-active[b-bd8g2j8rn0] {
    color: var(--primary-color);
}

.console-title[b-bd8g2j8rn0] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .console-title i[b-bd8g2j8rn0] {
        color: var(--text-primary);
    }

.console-actions[b-bd8g2j8rn0] {
    display: flex;
    gap: 8px;
}

.console-action-button[b-bd8g2j8rn0] {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .console-action-button:hover[b-bd8g2j8rn0] {
        color: var(--text-primary);
    }

.console-content[b-bd8g2j8rn0] {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--console-border) var(--console-bg);
}

    .console-content[b-bd8g2j8rn0]::-webkit-scrollbar {
        width: 8px;
    }

    .console-content[b-bd8g2j8rn0]::-webkit-scrollbar-track {
        background: var(--console-bg);
    }

    .console-content[b-bd8g2j8rn0]::-webkit-scrollbar-thumb {
        background-color: var(--console-border);
        border-radius: 4px;
    }

.console-entry[b-bd8g2j8rn0] {
    margin-bottom: 4px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

    .console-entry.error[b-bd8g2j8rn0] {
        color: var(--console-error);
    }

    .console-entry.info[b-bd8g2j8rn0] {
        color: var(--primary-color);
    }

    .console-entry.input[b-bd8g2j8rn0] {
        color: #64d8cb;
    }

    .console-entry pre[b-bd8g2j8rn0] {
        margin: 0;
        font-family: inherit;
        background-color: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        overflow-x: auto;
        font-size: 14px;
    }

.console-input-line[b-bd8g2j8rn0] {
    display: flex;
    align-items: center;
    background-color: var(--console-input-bg);
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

    .console-input-line .prompt[b-bd8g2j8rn0] {
        color: #64d8cb;
        margin-right: 8px;
    }

    .console-input-line input[b-bd8g2j8rn0] {
        flex: 1;
        background: transparent;
        border: none;
        color: var(--console-text);
        font-family: inherit;
        font-size: inherit;
        padding: 0;
        outline: none;
    }

.cursor-blink[b-bd8g2j8rn0] {
    display: inline-block;
    width: 8px;
    height: 18px;
    margin-left: 2px;
    background-color: var(--console-cursor);
    animation: blink-b-bd8g2j8rn0 1s step-end infinite;
}

@keyframes blink-b-bd8g2j8rn0 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.console-search-bar[b-bd8g2j8rn0] {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--console-header);
    border-bottom: 1px solid var(--console-border);
    gap: 8px;
}

    .console-search-bar input[b-bd8g2j8rn0] {
        flex: 1;
        background-color: var(--console-input-bg);
        border: 1px solid var(--console-border);
        border-radius: 4px;
        color: var(--console-text);
        padding: 4px 8px;
        font-family: inherit;
        font-size: inherit;
        outline: none;
    }

.console-search-actions[b-bd8g2j8rn0] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.console-search-count[b-bd8g2j8rn0] {
    font-size: 0.85em;
    color: #888;
    margin-right: 8px;
}

.console-search-actions button[b-bd8g2j8rn0] {
    background: transparent;
    border: none;
    color: var(--console-text);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .console-search-actions button:disabled[b-bd8g2j8rn0] {
        color: #666;
        cursor: not-allowed;
    }

    .console-search-actions button:not(:disabled):hover[b-bd8g2j8rn0] {
        background-color: var(--console-button-hover);
    }

.highlight[b-bd8g2j8rn0] {
    background-color: var(--console-highlight);
    border-radius: 2px;
    padding: 0 2px;
}

/* Animations */
@keyframes fadeIn-b-bd8g2j8rn0 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.console-entry[b-bd8g2j8rn0] {
    animation: fadeIn-b-bd8g2j8rn0 0.2s ease-in-out;
}

.console-terminal *[b-bd8g2j8rn0] {
    box-sizing: border-box;
}

.entry-has-action[b-bd8g2j8rn0] {
    cursor: pointer
}

    .entry-has-action:hover[b-bd8g2j8rn0] {
        text-decoration: underline;
    }
/* /CodeBox/Consoles/StreamingConsole.razor.rz.scp.css */
.console-terminal[b-7b4q6r9br6] {
    --console-bg: #1e1e1e;
    --console-text: #cccccc;
    --console-error: #ff6b6b;
    --console-header: #252526;
    --console-border: #444444;
    --console-cursor: #f0f0f0;
    --console-highlight: #294771;
    --console-input-bg: #2d2d2d;
    --console-inactive-bg: #282828;
    --console-button-hover: #3a3a3a;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 250px;
    border-radius: 0;
    border: 1px solid var(--console-border);
    overflow: hidden;
    color: var(--console-text);
    background-color: var(--console-bg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: height 0.3s ease, width 0.3s ease;
}

    .console-terminal.fullscreen[b-7b4q6r9br6] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
    }

    .console-terminal.inactive[b-7b4q6r9br6] {
        background-color: var(--console-inactive-bg);
        opacity: 0.9;
    }

.console-header[b-7b4q6r9br6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 24px;
    background-color: var(--console-header);
    border-bottom: 1px solid var(--console-border);
}

.console-active[b-7b4q6r9br6] {
    color: var(--primary-color);
}

.console-title[b-7b4q6r9br6] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .console-title i[b-7b4q6r9br6] {
        color: var(--text-primary);
    }

.console-actions[b-7b4q6r9br6] {
    display: flex;
    gap: 8px;
}

.console-action-button[b-7b4q6r9br6] {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .console-action-button:hover[b-7b4q6r9br6] {
        color: var(--text-primary);
    }

.console-content[b-7b4q6r9br6] {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--console-border) var(--console-bg);
}

    .console-content[b-7b4q6r9br6]::-webkit-scrollbar {
        width: 8px;
    }

    .console-content[b-7b4q6r9br6]::-webkit-scrollbar-track {
        background: var(--console-bg);
    }

    .console-content[b-7b4q6r9br6]::-webkit-scrollbar-thumb {
        background-color: var(--console-border);
        border-radius: 4px;
    }

.console-entry[b-7b4q6r9br6] {
    margin-bottom: 4px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

    .console-entry.error[b-7b4q6r9br6] {
        color: var(--console-error);
    }

    .console-entry.info[b-7b4q6r9br6] {
        color: var(--primary-color);
    }

    .console-entry.input[b-7b4q6r9br6] {
        color: #64d8cb;
    }

    .console-entry pre[b-7b4q6r9br6] {
        margin: 0;
        font-family: inherit;
        background-color: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        overflow-x: auto;
        font-size: 14px;
        text-wrap: balance;
        --webkit-text-wrap: balance;
    }

.console-input-line[b-7b4q6r9br6] {
    display: flex;
    align-items: center;
    background-color: var(--console-input-bg);
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

    .console-input-line .prompt[b-7b4q6r9br6] {
        color: #64d8cb;
        margin-right: 8px;
    }

    .console-input-line input[b-7b4q6r9br6] {
        flex: 1;
        background: transparent;
        border: none;
        color: var(--console-text);
        font-family: inherit;
        font-size: inherit;
        padding: 0;
        outline: none;
    }

.cursor-blink[b-7b4q6r9br6] {
    display: inline-block;
    width: 8px;
    height: 18px;
    margin-left: 2px;
    background-color: var(--console-cursor);
    animation: blink-b-7b4q6r9br6 1s step-end infinite;
}

@keyframes blink-b-7b4q6r9br6 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.console-search-bar[b-7b4q6r9br6] {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--console-header);
    border-bottom: 1px solid var(--console-border);
    gap: 8px;
}

    .console-search-bar input[b-7b4q6r9br6] {
        flex: 1;
        background-color: var(--console-input-bg);
        border: 1px solid var(--console-border);
        border-radius: 4px;
        color: var(--console-text);
        padding: 4px 8px;
        font-family: inherit;
        font-size: inherit;
        outline: none;
    }

.console-search-actions[b-7b4q6r9br6] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.console-search-count[b-7b4q6r9br6] {
    font-size: 0.85em;
    color: #888;
    margin-right: 8px;
}

.console-search-actions button[b-7b4q6r9br6] {
    background: transparent;
    border: none;
    color: var(--console-text);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .console-search-actions button:disabled[b-7b4q6r9br6] {
        color: #666;
        cursor: not-allowed;
    }

    .console-search-actions button:not(:disabled):hover[b-7b4q6r9br6] {
        background-color: var(--console-button-hover);
    }

.highlight[b-7b4q6r9br6] {
    background-color: var(--console-highlight);
    border-radius: 2px;
    padding: 0 2px;
}

/* Animations */
@keyframes fadeIn-b-7b4q6r9br6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.console-entry[b-7b4q6r9br6] {
    animation: fadeIn-b-7b4q6r9br6 0.2s ease-in-out;
}

.console-terminal *[b-7b4q6r9br6] {
    box-sizing: border-box;
}

.entry-has-action[b-7b4q6r9br6] {
    cursor: pointer
}

    .entry-has-action:hover[b-7b4q6r9br6] {
        text-decoration: underline;
    }
/* /CodeBox/Embeds/Embed.razor.rz.scp.css */
.embedded-fiddle[b-0ty95ht7su] {
    display: flex;
    flex-direction: column;
    border: 1px solid #3f3f3f;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
}

.embed-header[b-0ty95ht7su] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #252526;
    border-bottom: 1px solid #3f3f3f;
}

.embed-title[b-0ty95ht7su] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0078d4;
    font-weight: 500;
}

.view-original[b-0ty95ht7su] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

    .view-original:hover[b-0ty95ht7su] {
        color: #ffffff;
    }

.embed-content[b-0ty95ht7su] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.embedded-editor[b-0ty95ht7su] {
    flex: 1;
    min-height: 200px;
}

.embed-controls[b-0ty95ht7su] {
    padding: 0.75rem;
    background-color: #252526;
    border-top: 1px solid #3f3f3f;
    display: flex;
    justify-content: flex-end;
}

.embed-run-button[b-0ty95ht7su] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

    .embed-run-button:hover:not(:disabled)[b-0ty95ht7su] {
        background-color: #006cbd;
    }

    .embed-run-button.running[b-0ty95ht7su] {
        background-color: #28a745;
    }

.embed-output[b-0ty95ht7su] {
    height: 100px;
    background-color: #1e1e1e;
    border-top: 1px solid #3f3f3f;
    overflow: auto;
    padding: 1rem;
}

.loading-output[b-0ty95ht7su], .empty-output[b-0ty95ht7su] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #cccccc;
    gap: 0.5rem;
}

.spinner[b-0ty95ht7su], .terminal-spinner[b-0ty95ht7su] {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin-b-0ty95ht7su 1s linear infinite;
}

@keyframes spin-b-0ty95ht7su {
    to {
        transform: rotate(360deg);
    }
}

.output-text[b-0ty95ht7su] {
    margin: 0;
    white-space: pre-wrap;
    font-family: Consolas, 'Courier New', monospace;
}
/* /CodeBox/Embeds/EmbedCodeGenerator.razor.rz.scp.css */
.embed-generator[b-qxk79nauu8] {
    padding: 1.5rem;
    background-color: #252526;
    border-radius: 6px;
}

.option-group[b-qxk79nauu8] {
    margin: 1rem 0;
}

    .option-group label[b-qxk79nauu8] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #cccccc;
    }

    .option-group input[type="number"][b-qxk79nauu8],
    .option-group select[b-qxk79nauu8] {
        padding: 0.5rem;
        background-color: #1e1e1e;
        border: 1px solid #3f3f3f;
        border-radius: 4px;
        color: #ffffff;
    }

.embed-code[b-qxk79nauu8] {
    margin-top: 1.5rem;
}

.code-container[b-qxk79nauu8] {
    position: relative;
    background-color: #1e1e1e;
    border-radius: 4px;
    padding: 1rem;
}

    .code-container pre[b-qxk79nauu8] {
        margin: 0;
        white-space: pre-wrap;
        word-break: break-all;
        color: #cccccc;
        font-family: Consolas, 'Courier New', monospace;
    }

.copy-button[b-qxk79nauu8] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .copy-button:hover[b-qxk79nauu8] {
        background-color: #006cbd;
    }

/* Container */
.generator-container[b-qxk79nauu8] {
    margin: 0;
    background: #2e2e2e;
    padding: 20px;
    border-radius: 0px;
    font-family: Arial, sans-serif;
    color: #f0f0f0;
}

/* Settings Section */
.settings[b-qxk79nauu8] {
    margin-bottom: 20px;
}

.row[b-qxk79nauu8] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.form-group[b-qxk79nauu8] {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
}

    .form-group label[b-qxk79nauu8] {
        margin-bottom: 5px;
        font-size: 0.9rem;
        color: #bbb;
    }

    .form-group input[b-qxk79nauu8],
    .form-group select[b-qxk79nauu8] {
        padding: 6px 8px;
        border: 1px solid #555;
        border-radius: 4px;
        background: #444;
        color: #f0f0f0;
        font-size: 0.9rem;
    }

.checkbox-group[b-qxk79nauu8] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

/* Output Section */
.output[b-qxk79nauu8] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.code-section[b-qxk79nauu8],
.script-section[b-qxk79nauu8] {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 6px;
    position: relative;
}

    .code-section h4[b-qxk79nauu8],
    .script-section h4[b-qxk79nauu8] {
        margin: 0 0 10px;
        font-size: 1rem;
        color: #fff;
    }

/* Embed Code */
.code-container[b-qxk79nauu8] {
    position: relative;
}

    .code-container pre[b-qxk79nauu8] {
        background: #1e1e1e;
        border: 1px solid #333;
        border-radius: 4px;
        padding: 10px;
        margin: 0;
        font-size: 0.85rem;
        overflow-x: auto;
        color: #a6e22e;
    }

/* Script Link as Input Group */
.input-group[b-qxk79nauu8] {
    display: flex;
    align-items: center;
}

.script-input[b-qxk79nauu8] {
    flex: 1;
    padding: 8px;
    border: 1px solid #555;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #444;
    color: #f0f0f0;
    font-size: 0.9rem;
}

/* Copy Button */
.copy-btn[b-qxk79nauu8] {
    background: var(--text-secondary);
    border: none;
    color: var(--background);
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

    .copy-btn:hover[b-qxk79nauu8] {
        background: var(--text-primary);
    }

/* Copy Feedback Message */
.copy-feedback[b-qxk79nauu8] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--text-primary);
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    animation: fadeOut-b-qxk79nauu8 2s forwards;
}

@keyframes fadeOut-b-qxk79nauu8 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* /CodeBox/Library/ScriptLibrary.razor.rz.scp.css */
/* Sidebar Styles */
.library-sidebar[b-zkjr1aoym4] {
    width: 260px;
    background-color: #242424;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #333;
}

.library-sidebar-header[b-zkjr1aoym4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

    .library-sidebar-header h1[b-zkjr1aoym4] {
        font-size: 1.25rem;
        font-weight: 600;
    }

.library-category-nav[b-zkjr1aoym4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.library-category-button[b-zkjr1aoym4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: none;
    background: transparent;
    color: #a0a0a0;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

    .library-category-button:hover[b-zkjr1aoym4] {
        background-color: #333;
        color: #ffffff;
    }

    .library-category-button.active[b-zkjr1aoym4] {
        background-color: #2d2d2d;
        color: #ffffff;
    }

/* Main Content Styles */
.library-main-content[b-zkjr1aoym4] {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.library-search-bar[b-zkjr1aoym4] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.library-search-input-wrapper[b-zkjr1aoym4] {
    flex: 1;
    position: relative;
}

    .library-search-input-wrapper input[b-zkjr1aoym4] {
        width: 90%;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        background-color: #242424;
        border: 1px solid #333;
        border-radius: 6px;
        color: white;
        font-size: 0.95rem;
    }

        .library-search-input-wrapper input:focus[b-zkjr1aoym4] {
            outline: none;
            border-color: #0066cc;
        }

.library-search-icon[b-zkjr1aoym4] {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.library-sort-select[b-zkjr1aoym4] {
    padding: 0.75rem;
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

/* Scripts Grid */
.library-scripts-grid[b-zkjr1aoym4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.library-script-card[b-zkjr1aoym4] {
    background-color: #242424;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.2s, background-color 0.2s;
}

    .library-script-card:hover[b-zkjr1aoym4] {
        background-color: #2a2a2a;
        transform: translateY(-2px);
    }

.library-script-card-header[b-zkjr1aoym4] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

    .library-script-card-header h3[b-zkjr1aoym4] {
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0;
    }

.library-script-actions[b-zkjr1aoym4] {
    display: flex;
    gap: 0.5rem;
}

.library-action-button[b-zkjr1aoym4] {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

    .library-action-button:hover[b-zkjr1aoym4] {
        background-color: #333;
        color: white;
    }

.library-script-description[b-zkjr1aoym4] {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.library-script-tags[b-zkjr1aoym4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag[b-zkjr1aoym4] {
    background-color: #333;
    color: #999;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.library-load-more-button[b-zkjr1aoym4] {
    width: 100%;
    padding: 0.75rem;
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .library-load-more-button:hover[b-zkjr1aoym4] {
        background-color: #2a2a2a;
    }

/* Loader */
.library-loader[b-zkjr1aoym4] {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spin-b-zkjr1aoym4 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin-b-zkjr1aoym4 {
    to {
        transform: rotate(360deg);
    }
}

/* Scrollbar Styles */
[b-zkjr1aoym4]::-webkit-scrollbar {
    width: 8px;
}

[b-zkjr1aoym4]::-webkit-scrollbar-track {
    background: #1a1a1a;
}

[b-zkjr1aoym4]::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

    [b-zkjr1aoym4]::-webkit-scrollbar-thumb:hover {
        background: #444;
    }


/* Base Styles */
.script-library[b-zkjr1aoym4] {
    display: flex;
    height: 100vh;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Modal Styles */
.library-modal-overlay[b-zkjr1aoym4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal[b-zkjr1aoym4] {
    background-color: #242424;
    padding: 1.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
}

.library-modal-actions[b-zkjr1aoym4] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.library-cancel-button[b-zkjr1aoym4] {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #666;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.library-delete-button[b-zkjr1aoym4] {
    padding: 0.5rem 1rem;
    background-color: #dc2626;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

/* Tabs */
.library-tabs[b-zkjr1aoym4] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.library-tab-button[b-zkjr1aoym4] {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

    .library-tab-button.active[b-zkjr1aoym4] {
        color: #fff;
        border-bottom-color: #0066cc;
    }

/* Empty State */
.empty-state[b-zkjr1aoym4] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Loading State */
.library-loading-container[b-zkjr1aoym4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #666;
}

/* Script Metadata */
.library-script-metadata[b-zkjr1aoym4] {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.9rem;
}

.private[b-zkjr1aoym4] {
    color: #dc2626;
}


.truncate[b-zkjr1aoym4] {
    width: 90%; /* Set a fixed width */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.library-container[b-zkjr1aoym4] {
    padding: 2rem;
    background-color: #1a1a1a;
    min-height: 100vh;
}

.header[b-zkjr1aoym4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.title[b-zkjr1aoym4] {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}

.search-container[b-zkjr1aoym4] {
    position: relative;
    width: 300px;
}

.search-input[b-zkjr1aoym4] {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #ffffff;
    transition: all 0.3s ease;
}

    .search-input:focus[b-zkjr1aoym4] {
        outline: none;
        border-color: #5c6bc0;
        box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.2);
    }

.clear-button[b-zkjr1aoym4] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.tabs[b-zkjr1aoym4] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button[b-zkjr1aoym4] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .tab-button:hover[b-zkjr1aoym4] {
        background-color: #333;
        color: #fff;
    }

    .tab-button.active[b-zkjr1aoym4] {
        background-color: #5c6bc0;
        color: #fff;
    }

.scripts-grid[b-zkjr1aoym4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.script-card[b-zkjr1aoym4] {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

    .script-card:hover[b-zkjr1aoym4] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border-color: #5c6bc0;
    }

    .script-card.selected[b-zkjr1aoym4] {
        border-color: #5c6bc0;
        box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.2);
    }

.script-header[b-zkjr1aoym4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.script-title[b-zkjr1aoym4] {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
}

.script-description[b-zkjr1aoym4] {
    color: #999;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.script-meta[b-zkjr1aoym4] {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

    .script-meta span[b-zkjr1aoym4] {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

.tags[b-zkjr1aoym4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag[b-zkjr1aoym4] {
    background-color: #333;
    color: #999;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
}

.loading-container[b-zkjr1aoym4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: #666;
}

.loader[b-zkjr1aoym4] {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top-color: #5c6bc0;
    border-radius: 50%;
    animation: spin-b-zkjr1aoym4 1s linear infinite;
}

.empty-state[b-zkjr1aoym4] {
    text-align: center;
    padding: 4rem;
    color: #666;
}

    .empty-state i[b-zkjr1aoym4] {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

.load-more[b-zkjr1aoym4] {
    text-align: center;
    margin-top: 2rem;
}

.load-more-button[b-zkjr1aoym4] {
    padding: 0.75rem 2rem;
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .load-more-button:hover[b-zkjr1aoym4] {
        background-color: #333;
    }

@keyframes spin-b-zkjr1aoym4 {
    to {
        transform: rotate(360deg);
    }
}
/* /CodeBox/Panels/AIAssitantPanel.razor.rz.scp.css */
/* AI Panel Section */
.ai-panel__section[b-bo94nml6b2] {
    border: 1px solid #2d3a4f;
    border-radius: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Header */
.ai-panel__header[b-bo94nml6b2] {
    cursor: pointer;
    padding: 0.75rem 1rem;
    background-color: #334155;
    border-bottom: 1px solid #2d3a4f;
}

.ai-panel__header-content[b-bo94nml6b2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8fafc;
    font-weight: 600;
}

/* Content */
.ai-panel__content[b-bo94nml6b2] {
    padding: 1rem;
}

/* Quick Actions */
.ai-panel__quick-actions[b-bo94nml6b2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ai-panel__quick-action[b-bo94nml6b2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: #1e293b;
    border: 1px solid #2d3a4f;
    border-radius: 6px;
    color: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .ai-panel__quick-action:hover[b-bo94nml6b2] {
        background-color: #334155;
        border-color: #3b82f6;
        transform: translateY(-1px);
    }

    .ai-panel__quick-action i[b-bo94nml6b2] {
        font-size: 1.25rem;
        color: #3b82f6;
    }

/* Settings */
.ai-panel__settings[b-bo94nml6b2] {
    border-top: 1px solid #2d3a4f;
    padding-top: 1rem;
}

.ai-panel__settings-title[b-bo94nml6b2] {
    color: #f8fafc;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ai-panel__settings-group[b-bo94nml6b2] {
    /* Additional styles if needed */
}

.ai-panel__model-selection[b-bo94nml6b2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.ai-panel__model-select[b-bo94nml6b2] {
    flex: 1;
    padding: 0.4rem;
    background-color: #1e293b;
    border: 1px solid #2d3a4f;
    border-radius: 4px;
    color: #f8fafc;
}



.modal-backdrop[b-bo94nml6b2] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

.modal-container[b-bo94nml6b2] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 48rem;
    height: 600px;
    background-color: var(--background-dark);
    border-radius: 0.5rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .modal-container.expanded[b-bo94nml6b2] {
        width: 95%;
        height: 95vh;
        max-width: none;
    }

.modal-header[b-bo94nml6b2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #1e293b;
}

.header-title[b-bo94nml6b2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8fafc;
    font-weight: 600;
}

.header-actions[b-bo94nml6b2] {
    display: flex;
    gap: 0.5rem;
}

.header-action[b-bo94nml6b2] {
    padding: 0.5rem;
    color: #64748b;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

    .header-action:hover[b-bo94nml6b2] {
        color: #f8fafc;
        background-color: #1e293b;
    }

.messages-container[b-bo94nml6b2] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    /* Scrollbars */
    .messages-container[b-bo94nml6b2]::-webkit-scrollbar {
        width: 8px;
    }

    .messages-container[b-bo94nml6b2]::-webkit-scrollbar-track {
        background: #1a1a1a;
        border-radius: 4px;
    }

    .messages-container[b-bo94nml6b2]::-webkit-scrollbar-thumb {
        background: #404040;
        border-radius: 4px;
    }

        .messages-container[b-bo94nml6b2]::-webkit-scrollbar-thumb:hover {
            background: #505050;
        }

.message-wrapper[b-bo94nml6b2] {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
}

    .message-wrapper.user[b-bo94nml6b2] {
        margin-left: auto;
    }

.message-content[b-bo94nml6b2] {
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background-color: var(--background-lighter);
}

.message-wrapper.user .message-content[b-bo94nml6b2] {
    background-color: var(--text-secondary: #cccccc);
    color: #fff;
}

.message-text[b-bo94nml6b2] {
    white-space: pre-wrap;
}

.message-footer[b-bo94nml6b2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.message-copy[b-bo94nml6b2] {
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

.message-content:hover .message-copy[b-bo94nml6b2] {
    opacity: 1;
}

.message-copy:hover[b-bo94nml6b2] {
    background-color: rgba(255, 255, 255, 0.1);
}

.thinking-indicator[b-bo94nml6b2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 0.5rem;
    animation: pulse-b-bo94nml6b2 2s infinite;
}

.thinking-dots[b-bo94nml6b2] {
    display: flex;
    gap: 0.25rem;
}

.dot[b-bo94nml6b2] {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #60a5fa;
    border-radius: 50%;
    animation: bounce-b-bo94nml6b2 1s infinite;
}

    .dot:nth-child(2)[b-bo94nml6b2] {
        animation-delay: 0.2s;
    }

    .dot:nth-child(3)[b-bo94nml6b2] {
        animation-delay: 0.4s;
    }

.input-container[b-bo94nml6b2] {
    padding: 1rem;
    border-top: 1px solid #1e293b;
    display: flex;
    gap: 0.75rem;
}

.message-input[b-bo94nml6b2] {
    flex: 1;
    padding: 0.75rem;
    background-color: var(--background-dark);
    border: 1px solid #334155;
    border-radius: 0.5rem;
    color: #f8fafc;
    resize: none;
    min-height: 2.5rem;
    max-height: 7.5rem;
    transition: all 0.2s ease;
}

    .message-input:focus[b-bo94nml6b2] {
        outline: none;
        border-color: var(--text-primary);
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    }

.send-button[b-bo94nml6b2] {
    padding: 0.75rem 1rem;
    background-color: var(--text-primary);
    border-radius: 0.5rem;
    color: #fff;
    transition: all 0.2s ease;
}

    .send-button:not(:disabled):hover[b-bo94nml6b2] {
        background-color: #1d4ed8;
        transform: translateY(-1px);
    }

    .send-button:disabled[b-bo94nml6b2] {
        background-color: #1e293b;
        cursor: not-allowed;
        opacity: 0.7;
    }

.copy-alert[b-bo94nml6b2] {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    color: #f8fafc;
    animation: slideIn-b-bo94nml6b2 0.3s ease;
    z-index: 60;
}

@keyframes pulse-b-bo94nml6b2 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce-b-bo94nml6b2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes slideIn-b-bo94nml6b2 {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Code block styling */
.message-text :deep(pre)[b-bo94nml6b2] {
    background-color: #0f172a;
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin: 0.5rem 0;
}

.message-text :deep(code)[b-bo94nml6b2] {
    font-family: ui-monospace, monospace;
    font-size: 0.875rem;
    color: #e2e8f0;
}
/* /CodeBox/Panels/CompilerPanel.razor.rz.scp.css */
/* /CodeBox/Panels/FilesPanel.razor.rz.scp.css */
.file-list[b-0dgyy72v6i] {
    padding: 4px 0;
}

.file-item[b-0dgyy72v6i] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    transition: background-color 0.2s ease;
}

    .file-item:hover[b-0dgyy72v6i] {
        background-color: rgba(255, 255, 255, 0.05);
    }

.file-item__icon[b-0dgyy72v6i] {
    display: flex;
    align-items: center;
    margin-right: 12px;
    color: #6b7280;
}

.file-item__link[b-0dgyy72v6i] {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

    .file-item__link:hover[b-0dgyy72v6i] {
        color: #60a5fa;
    }
/* /CodeBox/Panels/InputFilesPanel.razor.rz.scp.css */
.upload-section[b-zf0lpi36oh] {
    margin-bottom: 16px;
    padding: 12px 16px;
    border: 1px dashed #6b7280;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-details[b-zf0lpi36oh] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-button[b-zf0lpi36oh] {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: #60a5fa;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .upload-button:disabled[b-zf0lpi36oh] {
        background-color: #94a3b8;
        cursor: not-allowed;
    }

.file-list[b-zf0lpi36oh] {
    padding: 4px 0;
}

.file-item[b-zf0lpi36oh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    transition: background-color 0.2s ease;
    position: relative;
}

    .file-item:hover[b-zf0lpi36oh] {
        background-color: rgba(255, 255, 255, 0.05);
    }

.file-item__left[b-zf0lpi36oh] {
    display: flex;
    align-items: center;
}

.file-item__icon[b-zf0lpi36oh] {
    display: flex;
    align-items: center;
    margin-right: 12px;
    color: #6b7280;
}

.file-item__link[b-zf0lpi36oh] {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

    .file-item__link:hover[b-zf0lpi36oh] {
        color: #60a5fa;
    }

/* Copy Path action: hidden by default and displayed on hover */
.copy-path[b-zf0lpi36oh] {
    display: none;
    font-size: 0.75rem;
    color: #9ca3af;
    cursor: pointer;
    margin-left: 10px;
}

.file-item:hover .copy-path[b-zf0lpi36oh] {
    display: inline;
}
/* /CodeBox/Panels/MetaPanel.razor.rz.scp.css */
.meta-form[b-8hr6059gm6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group[b-8hr6059gm6] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .form-group label[b-8hr6059gm6] {
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .form-group input[b-8hr6059gm6],
    .form-group textarea[b-8hr6059gm6] {
        padding: 0.5rem;
        background-color: var(--panel-bg);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        color: var(--text-primary);
        resize: vertical;
    }

    .form-group textarea[b-8hr6059gm6] {
        min-height: 80px;
    }
/* /CodeBox/Panels/NugetPanel.razor.rz.scp.css */
/* Container Layouts */
.packages-container[b-lzniswghuu] {
    width: 100%;
    background-color: #1a1a1a;
}

.nuget-section-content[b-lzniswghuu] {
    background-color: #1a1a1a;
}

.nuget-fullscreen-layout[b-lzniswghuu] {
    display: flex;
    padding: 1rem;
    background-color: #1a1a1a;
    height: 100%;
}

    .nuget-fullscreen-layout .packages-container[b-lzniswghuu] {
        flex: 1;
    }

    .nuget-fullscreen-layout .nuget-packages-list[b-lzniswghuu] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 1rem;
        padding: 1rem;
        max-height: calc(100vh - 200px);
    }

/* Search Bar */
.nuget-search-container[b-lzniswghuu] {
    position: relative;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #333;
}

.search-icon[b-lzniswghuu] {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.nuget-search-input[b-lzniswghuu] {
    width: 90%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    background-color: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 0.9rem;
}

    .nuget-search-input:focus[b-lzniswghuu] {
        outline: none;
        border-color: var(--primary-color);
    }

/* Packages List */
.nuget-packages-list[b-lzniswghuu] {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

/* Package Items - Panel View */
.panel-section .package-item[b-lzniswghuu] {
    background-color: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 4px;
    margin: 0.25rem 0;
    transition: all 0.2s ease;
}

    .panel-section .package-item:hover[b-lzniswghuu] {
        background-color: #363636;
        border-color: #505050;
    }

.panel-section .package-content[b-lzniswghuu] {
    padding: 0.25rem 0.5rem;
}

.panel-section .package-header[b-lzniswghuu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.panel-section .package-info[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}

.panel-section .package-icon[b-lzniswghuu] {
    color: #888;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.panel-section .package-title[b-lzniswghuu] {
    color: #e0e0e0;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.panel-section .package-version[b-lzniswghuu] {
    color: #888;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.panel-section .package-actions[b-lzniswghuu] {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

/* Package Items - Fullscreen View */
.nuget-fullscreen-layout .package-item[b-lzniswghuu] {
    background-color: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 8px;
    margin: 0;
    height: 100%;
    transition: all 0.2s ease;
}

    .nuget-fullscreen-layout .package-item:hover[b-lzniswghuu] {
        background-color: #363636;
        border-color: #505050;
    }

.nuget-fullscreen-layout .package-content[b-lzniswghuu] {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nuget-fullscreen-layout .package-header[b-lzniswghuu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.nuget-fullscreen-layout .package-info[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.nuget-fullscreen-layout .package-title[b-lzniswghuu] {
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nuget-fullscreen-layout .package-actions[b-lzniswghuu] {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

/* Package Metadata */
.nuget-package-metadata[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #404040;
}

.nuget-metadata-item[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
    white-space: nowrap;
}

    .nuget-metadata-item i[b-lzniswghuu] {
        font-size: 0.85rem;
    }

/* Buttons */
.nuget-icon-button[b-lzniswghuu] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: #363636;
    border: 1px solid #404040;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

    .nuget-icon-button:hover[b-lzniswghuu] {
        background-color: #404040;
        border-color: #505050;
        color: #e0e0e0;
    }

    .nuget-icon-button i[b-lzniswghuu] {
        font-size: 0.8rem;
    }

/* Expand Button */
.nuget-expand-button[b-lzniswghuu] {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #e0e0e0;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

    .nuget-expand-button:hover[b-lzniswghuu] {
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Scrollbars */
.nuget-packages-list[b-lzniswghuu]::-webkit-scrollbar {
    width: 5px;
}

.nuget-packages-list[b-lzniswghuu]::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 0px;
}

.nuget-packages-list[b-lzniswghuu]::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 0px;
}

    .nuget-packages-list[b-lzniswghuu]::-webkit-scrollbar-thumb:hover {
        background: #505050;
    }

.nuget-tab-button[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .nuget-tab-button:hover[b-lzniswghuu] {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }

    .nuget-tab-button.active[b-lzniswghuu] {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }
/* Responsive Adjustments */
.nuget-fullscreen-layout .nuget-packages-list[b-lzniswghuu] {
    grid-template-columns: 1fr;
}

.nuget-metadata-item[b-lzniswghuu] {
    font-size: 0.8rem;
}

.nuget-tabs[b-lzniswghuu] {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #333;
    background-color: #1a1a1a;
}

.nuget-tab-button[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .nuget-tab-button:hover[b-lzniswghuu] {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }

    .nuget-tab-button.active[b-lzniswghuu] {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }
/* Search Results Loading */
.nuget-search-nuget-loading[b-lzniswghuu] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: #888;
}

    .nuget-search-nuget-loading i[b-lzniswghuu] {
        font-size: 1.5rem;
    }
/* Package Description */
.nuget-package-description[b-lzniswghuu] {
    margin-top: 0.5rem;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
}

.nuget-primary-button[b-lzniswghuu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color, #007acc);
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .nuget-primary-button:hover[b-lzniswghuu] {
        background-color: var(--primary-color-dark, #005c99);
    }

    .nuget-primary-button i[b-lzniswghuu] {
        font-size: 0.8rem;
    }

.nuget-no-results[b-lzniswghuu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: #888;
    text-align: center;
}

    .nuget-no-results i[b-lzniswghuu] {
        font-size: 2rem;
    }

.nuget-package-metadata[b-lzniswghuu] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #404040;
}

.nuget-package-description[b-lzniswghuu] {
    margin-top: 0.75rem;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 4.5em;
    overflow: hidden;
    position: relative;
}

    .nuget-package-description[b-lzniswghuu]::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70%;
        height: 1.5em;
        background: linear-gradient(to right, transparent, #2d2d2d);
    }

/* VERSION SELECTOR MODAL */
.nuget-version-selector[b-lzniswghuu] {
    padding: 1rem;
    text-align: center;
}

    .nuget-version-selector h3[b-lzniswghuu] {
        margin-bottom: 1rem;
    }

.version-list[b-lzniswghuu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.version-item[b-lzniswghuu] {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

    .version-item:hover[b-lzniswghuu] {
        background-color: #007bff;
        color: #fff;
    }

.nuget-modal-actions[b-lzniswghuu] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nuget-secondary-button[b-lzniswghuu] {
    background-color: #6c757d;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .nuget-secondary-button:hover[b-lzniswghuu] {
        background-color: #5a6268;
    }

/* LOADING INDICATOR */
.nuget-loading[b-lzniswghuu] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
}
/* /Components/ConfirmDialog.razor.rz.scp.css */
.cd-overlay[b-916bvrfhuo] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    animation: cdFadeIn-b-916bvrfhuo 200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cd-dialog[b-916bvrfhuo] {
    position: relative;
    width: 95%;
    max-width: 450px;
    margin: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    transform: scale(0.95) translateY(10px);
    animation: cdDialogIn-b-916bvrfhuo 200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cd-content[b-916bvrfhuo] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.cd-header[b-916bvrfhuo] {
    text-align: center;
    padding-bottom: 0.5rem;
}

.cd-title[b-916bvrfhuo] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.cd-body[b-916bvrfhuo] {
    padding: 0.5rem 0;
}

.cd-message[b-916bvrfhuo] {
    margin: 0;
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.cd-footer[b-916bvrfhuo] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.cd-btn[b-916bvrfhuo] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cd-btn__text[b-916bvrfhuo] {
    position: relative;
    z-index: 1;
}

.cd-btn[b-916bvrfhuo]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 200ms;
}

.cd-btn:hover[b-916bvrfhuo]::before {
    opacity: 1;
}

.cd-btn--primary[b-916bvrfhuo] {
    background-color: #2563eb;
    color: #ffffff;
}

    .cd-btn--primary[b-916bvrfhuo]::before {
        background-color: #1d4ed8;
    }

.cd-btn--secondary[b-916bvrfhuo] {
    background-color: #27272a;
    color: #ffffff;
}

    .cd-btn--secondary[b-916bvrfhuo]::before {
        background-color: #3f3f46;
    }

.cd-btn:focus[b-916bvrfhuo] {
    outline: none;
    box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 4px #2563eb;
}

@keyframes cdFadeIn-b-916bvrfhuo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cdDialogIn-b-916bvrfhuo {
    from {
        transform: scale(0.95) translateY(10px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .cd-dialog[b-916bvrfhuo] {
        width: 100%;
        margin: 1rem;
        max-width: none;
    }

    .cd-btn[b-916bvrfhuo] {
        flex: 1;
    }
}
/* /Components/Modal.razor.rz.scp.css */
.ant-modal-overlay[b-5nk7fssebo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .ant-modal-overlay.ant-modal-visible[b-5nk7fssebo] {
        opacity: 1;
        display: flex;
    }

/* Position styles */
.ant-modal-position-center[b-5nk7fssebo] {
    margin: auto;
}

.ant-modal-position-top[b-5nk7fssebo] {
    margin: 1rem auto auto auto;
}

.ant-modal-wrapper[b-5nk7fssebo] {
    position: relative;
    background-color: var(--background-lighter);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    animation: antModalSlideIn-b-5nk7fssebo 0.3s ease-out;
}

.ant-modal-size-sm[b-5nk7fssebo] {
    max-width: 300px;
}

.ant-modal-size-md[b-5nk7fssebo] {
    max-width: 500px;
}

.ant-modal-size-lg[b-5nk7fssebo] {
    max-width: 800px;
}

.ant-modal-size-full[b-5nk7fssebo] {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
}

.ant-modal-container[b-5nk7fssebo] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--background-lighter);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: inherit;
}

.ant-modal-size-full .ant-modal-container[b-5nk7fssebo] {
    border: none;
}

.ant-modal-header[b-5nk7fssebo] {
    display: flex;
    align-items: center;
    padding: .5em;
    background-color: var(--panel-header);
    border-bottom: 1px solid var(--border-color);
    padding-top: .15em;
    padding-bottom: .15em;
}

.ant-modal-header-icon[b-5nk7fssebo] {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.ant-modal-header-title[b-5nk7fssebo] {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ant-modal-close-btn[b-5nk7fssebo] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
    margin-left: 0.5rem;
}

    .ant-modal-close-btn:hover[b-5nk7fssebo] {
        color: var(--text-primary);
    }

.ant-modal-body[b-5nk7fssebo] {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

.ant-modal-footer[b-5nk7fssebo] {
    display: flex;
    justify-content: flex-end;
    background-color: var(--panel-header);
    border-top: 1px solid var(--border-color);
    gap: 0.5rem;
}

@keyframes antModalSlideIn-b-5nk7fssebo {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .ant-modal-wrapper:not(.ant-modal-size-full)[b-5nk7fssebo] {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }

    .ant-modal-size-sm[b-5nk7fssebo],
    .ant-modal-size-md[b-5nk7fssebo],
    .ant-modal-size-lg[b-5nk7fssebo] {
        max-width: calc(100vw - 1rem);
    }
}
/* /Components/Tags.razor.rz.scp.css */
.tags-component[b-avhvdm27lv] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tags-container[b-avhvdm27lv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag-chip[b-avhvdm27lv] {
    padding: 0.1rem .3rem;
    background-color: var(--text-primary);
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

    .tag-chip:hover[b-avhvdm27lv] {
        background-color: #eaeaea;
    }

    .tag-chip.selected[b-avhvdm27lv] {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
    }

.clear-container[b-avhvdm27lv] {
    text-align: right;
}

.clear-button[b-avhvdm27lv] {
    background: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    padding: 0;
}

    .clear-button:hover[b-avhvdm27lv] {
        color: #0056b3;
    }
/* /Components/Toast.razor.rz.scp.css */
/* Toast Container */
.toast-container[b-i3xpatd8a9] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    pointer-events: none;
}

/* Toast */
.toast[b-i3xpatd8a9] {
    display: flex;
    align-items: flex-start;
    background-color: var(--background-lighter);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: toast-slide-in-b-i3xpatd8a9 0.3s ease;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

    /* Toast Types */
    .toast.success[b-i3xpatd8a9] {
        border-left: 4px solid #28a745;
    }

        .toast.success .toast-icon[b-i3xpatd8a9] {
            color: #28a745;
        }

    .toast.error[b-i3xpatd8a9] {
        border-left: 4px solid #dc3545;
    }

        .toast.error .toast-icon[b-i3xpatd8a9] {
            color: #dc3545;
        }

    .toast.warning[b-i3xpatd8a9] {
        border-left: 4px solid #ffc107;
    }

        .toast.warning .toast-icon[b-i3xpatd8a9] {
            color: #ffc107;
        }

    .toast.info[b-i3xpatd8a9] {
        border-left: 4px solid #17a2b8;
    }

        .toast.info .toast-icon[b-i3xpatd8a9] {
            color: #17a2b8;
        }

/* Toast Icon */
.toast-icon[b-i3xpatd8a9] {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

/* Toast Content */
.toast-content[b-i3xpatd8a9] {
    flex-grow: 1;
    margin-right: 0.75rem;
}

.toast-message[b-i3xpatd8a9] {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toast Close Button */
.toast-close[b-i3xpatd8a9] {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

    .toast-close:hover[b-i3xpatd8a9] {
        color: var(--text-primary);
    }

/* Toast Progress Bar */
.toast-progress[b-i3xpatd8a9] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

    .toast-progress[b-i3xpatd8a9]::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background: currentColor;
        animation: toast-progress-b-i3xpatd8a9 linear forwards;
    }

.toast.success .toast-progress[b-i3xpatd8a9]::after {
    color: #28a745;
}

.toast.error .toast-progress[b-i3xpatd8a9]::after {
    color: #dc3545;
}

.toast.warning .toast-progress[b-i3xpatd8a9]::after {
    color: #ffc107;
}

.toast.info .toast-progress[b-i3xpatd8a9]::after {
    color: #17a2b8;
}

/* Animations */
@keyframes toast-slide-in-b-i3xpatd8a9 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-progress-b-i3xpatd8a9 {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}
