@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.bundle.scp.css';

/* _content/AIMCTextureGenAPI/Shared/MainLayout.razor.rz.scp.css */
/* Base styles and variables */
:root[b-h4gw502x0p] {
    --primary-color: #6aeb2d;
    --secondary-color: #394d62;
    --background-dark: #1a1e2e;
    --background-light: #f7f7f7;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent-color: #EB900D;
    --danger-color: #ff4136;
    --success-color: #2ecc40;
    --premium-color: #ffd700;
    --credits-color: #00b8d4;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Typography */
@font-face {
    font-family: 'Minercraftory';
    src: url('../fonts/Minercraftory.ttf') format('truetype');
}

@font-face {
    font-family: 'Minecraft';
    src: url('../fonts/Minecraft.otf') format('opentype');
}

body[b-h4gw502x0p] {
    font-family: 'Minecraft', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
}

/* Navbar styles */
.navbar[b-h4gw502x0p] {
    background-color: #43770a;
    padding: 0.5rem 1rem;
    box-shadow: var(--box-shadow);
}

.navbar-brand[b-h4gw502x0p] {
    display: flex;
    align-items: center;
    font-family: 'Minercraftory', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

    .navbar-brand img[b-h4gw502x0p] {
        height: 40px;
        margin-right: 0.5rem;
    }

.navbar-toggler[b-h4gw502x0p] {
    border-color: var(--primary-color);
}

.navbar-toggler-icon[b-h4gw502x0p] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 235, 45, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link[b-h4gw502x0p] {
    color: var(--text-light);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

    .navbar-nav .nav-link:hover[b-h4gw502x0p],
    .navbar-nav .nav-link:focus[b-h4gw502x0p] {
        color: var(--primary-color);
        transform: translateY(-2px);
    }

/* User status styles */
.user-status[b-h4gw502x0p] {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.premium-badge[b-h4gw502x0p],
.credits-display[b-h4gw502x0p] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.premium-badge[b-h4gw502x0p] {
    background-color: var(--premium-color);
    color: var(--text-dark);
}

    .premium-badge i[b-h4gw502x0p] {
        margin-right: 0.25rem;
    }

.credits-display[b-h4gw502x0p] {
    background-color: var(--credits-color);
    color: var(--text-light);
}

    .credits-display i[b-h4gw502x0p] {
        margin-right: 0.25rem;
    }

/* Dropdown styles */
.dropdown-menu[b-h4gw502x0p] {
    background-color: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.dropdown-item[b-h4gw502x0p] {
    color: var(--text-light);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

    .dropdown-item:hover[b-h4gw502x0p],
    .dropdown-item:focus[b-h4gw502x0p] {
        background-color: var(--primary-color);
        color: var(--text-dark);
    }

/* Sidebar styles */
.sidebar[b-h4gw502x0p] {
    background-image: linear-gradient(180deg, var(--secondary-color) 0%, var(--background-dark) 100%);
    padding: 2rem;
    color: var(--text-light);
}

/* Top row styles */
.top-row[b-h4gw502x0p] {
    background-color: var(--background-light);
    border-bottom: 1px solid #d6d5d5;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .top-row a[b-h4gw502x0p],
    .top-row .btn-link[b-h4gw502x0p] {
        color: var(--text-dark);
        text-decoration: none;
        margin-left: 1rem;
        transition: color var(--transition-speed) ease;
    }

        .top-row a:hover[b-h4gw502x0p],
        .top-row .btn-link:hover[b-h4gw502x0p] {
            color: var(--primary-color);
        }

/* Discord popup styles */
.discord-popup[b-h4gw502x0p] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #7289DA;
    color: var(--text-light);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: transform var(--transition-speed) ease;
}

    .discord-popup:hover[b-h4gw502x0p] {
        transform: translateY(-5px);
    }

.discord-link[b-h4gw502x0p] {
    color: var(--text-light);
    text-decoration: none;
}

.close-btn[b-h4gw502x0p] {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

/* Cookie consent styles */
#cookieConsent[b-h4gw502x0p] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 1rem;
    text-align: center;
    z-index: 9999;
}

    #cookieConsent button[b-h4gw502x0p] {
        background-color: var(--primary-color);
        color: var(--text-dark);
        border: none;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: background-color var(--transition-speed) ease;
    }

        #cookieConsent button:hover[b-h4gw502x0p] {
            background-color: var(--accent-color);
        }

/* Responsive styles */
@media (max-width: 991px) {
    .user-status[b-h4gw502x0p] {
        margin-bottom: 1rem;
    }

    .navbar-nav[b-h4gw502x0p] {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .top-row:not(.auth)[b-h4gw502x0p] {
        display: none;
    }

    .top-row.auth[b-h4gw502x0p] {
        justify-content: space-between;
    }

    .top-row a[b-h4gw502x0p], .top-row .btn-link[b-h4gw502x0p] {
        margin-left: 0;
    }

    #cookieConsent[b-h4gw502x0p] {
        padding: 1rem;
    }

        #cookieConsent button[b-h4gw502x0p] {
            width: 100%;
            margin-top: 1rem;
        }
}

@media (min-width: 641px) {
    .page[b-h4gw502x0p] {
        flex-direction: row;
    }

    .sidebar[b-h4gw502x0p] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-h4gw502x0p] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-h4gw502x0p], article[b-h4gw502x0p] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Additional components and utilities */
.btn[b-h4gw502x0p] {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.btn-primary[b-h4gw502x0p] {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

    .btn-primary:hover[b-h4gw502x0p] {
        background-color: var(--accent-color);
    }

.card[b-h4gw502x0p] {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-control[b-h4gw502x0p] {
    border-radius: var(--border-radius);
    border: 1px solid var(--secondary-color);
    padding: 0.5rem;
}

.alert[b-h4gw502x0p] {
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-success[b-h4gw502x0p] {
    background-color: var(--success-color);
    color: var(--text-light);
}

.alert-danger[b-h4gw502x0p] {
    background-color: var(--danger-color);
    color: var(--text-light);
}

/* Animations */
@keyframes fadeIn-b-h4gw502x0p {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in[b-h4gw502x0p] {
    animation: fadeIn-b-h4gw502x0p var(--transition-speed) ease-in;
}

/* Utility classes */
.text-center[b-h4gw502x0p] {
    text-align: center;
}

.mt-1[b-h4gw502x0p] {
    margin-top: 0.5rem;
}

.mt-2[b-h4gw502x0p] {
    margin-top: 1rem;
}

.mt-3[b-h4gw502x0p] {
    margin-top: 1.5rem;
}

.mb-1[b-h4gw502x0p] {
    margin-bottom: 0.5rem;
}

.mb-2[b-h4gw502x0p] {
    margin-bottom: 1rem;
}

.mb-3[b-h4gw502x0p] {
    margin-bottom: 1.5rem;
}


/* User status styles */
.user-status[b-h4gw502x0p] {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.premium-badge[b-h4gw502x0p],
.credits-display[b-h4gw502x0p] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.premium-badge[b-h4gw502x0p] {
    background-color: #dd8500;
    color: #1a1a1a;
    border: 2px solid #e6c200;
}

    .premium-badge:hover[b-h4gw502x0p] {
        background-color: #dd6500;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .premium-badge i[b-h4gw502x0p] {
        margin-right: 0.4rem;
        color: #cc9900;
    }

.credits-display[b-h4gw502x0p] {
    background-color: #4caf50;
    color: #ffffff;
    border: 2px solid #45a049;
}

    .credits-display:hover[b-h4gw502x0p] {
        background-color: #45a049;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .credits-display i[b-h4gw502x0p] {
        margin-right: 0.4rem;
        color: #e6e6e6;
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    .user-status[b-h4gw502x0p] {
        margin-bottom: 1rem;
    }

    .premium-badge[b-h4gw502x0p],
    .credits-display[b-h4gw502x0p] {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .user-status[b-h4gw502x0p] {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-badge[b-h4gw502x0p],
    .credits-display[b-h4gw502x0p] {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

.jdkl-overlay[b-h4gw502x0p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(3px);
}

.jdkl-container[b-h4gw502x0p] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    overflow: hidden;
    animation: jdkl-slide-up-b-h4gw502x0p 0.3s ease-out;
}

.jdkl-content[b-h4gw502x0p] {
    padding: 20px;
}

.jdkl-header[b-h4gw502x0p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

    .jdkl-header h4[b-h4gw502x0p] {
        margin: 0;
        color: #2e7d32;
        font-size: 1.2rem;
        font-weight: 600;
    }

.jdkl-cookie-icon[b-h4gw502x0p] {
    font-size: 1.5rem;
}

.jdkl-body[b-h4gw502x0p] {
    margin-bottom: 20px;
}

    .jdkl-body p[b-h4gw502x0p] {
        margin: 0;
        color: #555;
        font-size: 0.9rem;
        line-height: 1.5;
    }

.jdkl-actions[b-h4gw502x0p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jdkl-btn-group[b-h4gw502x0p] {
    display: flex;
    gap: 10px;
}

.jdkl-btn[b-h4gw502x0p] {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jdkl-btn-primary[b-h4gw502x0p] {
    background-color: #2e7d32;
    color: white;
}

    .jdkl-btn-primary:hover[b-h4gw502x0p] {
        background-color: #1b5e20;
    }

.jdkl-btn-outline[b-h4gw502x0p] {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #555;
}

    .jdkl-btn-outline:hover[b-h4gw502x0p] {
        background-color: #f5f5f5;
    }

.jdkl-btn-text[b-h4gw502x0p] {
    background-color: transparent;
    color: #2e7d32;
    padding: 10px 0;
}

    .jdkl-btn-text:hover[b-h4gw502x0p] {
        text-decoration: underline;
    }

@keyframes jdkl-slide-up-b-h4gw502x0p {
    from {
        transform: translate(-50%, 100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .jdkl-container[b-h4gw502x0p] {
        width: 95%;
        bottom: 10px;
    }

    .jdkl-content[b-h4gw502x0p] {
        padding: 15px;
    }

    .jdkl-actions[b-h4gw502x0p] {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .jdkl-btn-group[b-h4gw502x0p] {
        width: 100%;
    }

    .jdkl-btn[b-h4gw502x0p] {
        flex: 1;
    }
}
/* _content/AIMCTextureGenAPI/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-mhxg7h6zwy] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-mhxg7h6zwy] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-mhxg7h6zwy] {
    font-size: 1.1rem;
}

.oi[b-mhxg7h6zwy] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-mhxg7h6zwy] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-mhxg7h6zwy] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-mhxg7h6zwy] {
        padding-bottom: 1rem;
    }

    .nav-item[b-mhxg7h6zwy]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-mhxg7h6zwy]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-mhxg7h6zwy]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-mhxg7h6zwy] {
        display: none;
    }

    .collapse[b-mhxg7h6zwy] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-mhxg7h6zwy] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Pages/AdminAllImages.razor.rz.scp.css */
.gallery[b-audiuuyfhn] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

    .gallery img[b-audiuuyfhn] {
        margin: 0px;
        width: 200px;
        height: 200px;
        object-fit: cover;
    }

.pagination[b-audiuuyfhn] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-link[b-audiuuyfhn] {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    margin: 0 4px;
    cursor: pointer;
}

    .page-link:hover[b-audiuuyfhn] {
        background-color: #ddd;
    }

    .page-link.active[b-audiuuyfhn] {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
    }



.gallery[b-audiuuyfhn] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    color: white;
}

.texture-item[b-audiuuyfhn] {
    background-color: #3a3a3a;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    color: white;
}

    .texture-item img[b-audiuuyfhn] {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .texture-item p[b-audiuuyfhn] {
        margin-bottom: 5px;
    }

.btn-config[b-audiuuyfhn] {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .btn-config:hover[b-audiuuyfhn] {
        background-color: #45a049;
    }

.modal-content[b-audiuuyfhn] {
    background-color: #3a3a3a;
    color: white;
}

.modal-header[b-audiuuyfhn] {
    border-bottom: 1px solid #4a4a4a;
}

    .modal-header .btn-close[b-audiuuyfhn] {
        color: #e0e0e0;
    }

#jsonViewer[b-audiuuyfhn] {
    background-color: #2a2a2a;
    color: #4CAF50;
    padding: 15px;
    border-radius: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

[b-audiuuyfhn] .jsoneditor {
    border: none !important;
}
[b-audiuuyfhn] .jsoneditor-values {
    margin-bottom: 0px !important;
}
[b-audiuuyfhn] .jsoneditor-menu {
    background-color: #4CAF50 !important;
    border-bottom: 1px solid #45a049 !important;
}

[b-audiuuyfhn] div.jsoneditor-value.jsoneditor-null {
    color: #81b0ff;
}
[b-audiuuyfhn] .jsoneditor-object {
    color: #ff54d9;
}
[b-audiuuyfhn] div.jsoneditor-tree button.jsoneditor-expanded {
    filter: invert(1);
}
[b-audiuuyfhn] .jsoneditor-array {
    color: #5ff4d9;
}
[b-audiuuyfhn] .jsoneditor-tree tbody {
    background-color: #292929 !important;
}
[b-audiuuyfhn] div.jsoneditor-value.jsoneditor-string {
    color: #04c504 !important;
}
[b-audiuuyfhn] .jsoneditor-navigation-bar {
    background-color: #3a3a3a !important;
    color: #e0e0e0 !important;
}
[b-audiuuyfhn] .jsoneditor-field {
    color: white;
    font-size: 12px;
}

[b-audiuuyfhn] .jsoneditor-poweredBy {
    display: none;
}
[b-audiuuyfhn] .jsoneditor {
    border: 1px solid #4a4a4a !important;
}

[b-audiuuyfhn] .jsoneditor-menu {
    background-color: #3a3a3a !important;
    border-bottom: 1px solid #4a4a4a !important;
}

    [b-audiuuyfhn] .jsoneditor-menu > button {
        color: #e0e0e0 !important;
    }

[b-audiuuyfhn] .jsoneditor-navigation-bar {
    background-color: #2a2a2a !important;
    color: #e0e0e0 !important;
}

[b-audiuuyfhn] .jsoneditor-tree {
    background-color: #2a2a2a !important;
    color: #e0e0e0 !important;
}

[b-audiuuyfhn] .jsoneditor-readonly {
    color: #888 !important;
}

[b-audiuuyfhn] .modal-dialog {
    max-width: 90vw !important;
}
/* _content/AIMCTextureGenAPI/Shared/Pages/AdminPanel.razor.rz.scp.css */
.container[b-gkrb0b4iml] {
    background-color: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
}

.name-list[b-gkrb0b4iml] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .name-list li[b-gkrb0b4iml] {
        margin-bottom: 10px;
    }
/* _content/AIMCTextureGenAPI/Shared/Pages/AllModels.razor.rz.scp.css */
.card-container[b-p5oo0pj16s] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card[b-p5oo0pj16s] {
    width: 18rem;
    background-color: #333; /* Example background color for contrast */
}

.card-img[b-p5oo0pj16s] {
    max-height: 128px;
    width: auto;
    object-fit: cover;
    max-width: 100%;
}

.image-container[b-p5oo0pj16s] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.card-body[b-p5oo0pj16s] {
    color: white;
}

.card-img-top[b-p5oo0pj16s] {
    max-height: 128px;
    object-fit: cover;
}

/* Limit to four images, two per row */
.image-container img:nth-child(n+5)[b-p5oo0pj16s] {
    display: none;
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Batch.razor.rz.scp.css */
/* Global Styles */
body[b-vrig5hx835] {
    background-color: #1e1e2e;
    color: #cdd6f4;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
}

.container[b-vrig5hx835] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* User Generated Message */
.user-generated-message[b-vrig5hx835] {
    background-color: #f9b23d;
    color: #1e1e2e;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideIn-b-vrig5hx835 0.5s ease-out;
}

@keyframes slideIn-b-vrig5hx835 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Green Background Message */
.green-background[b-vrig5hx835] {
    background-color: #45a049;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    animation: fadeIn-b-vrig5hx835 0.5s ease-out;
}

@keyframes fadeIn-b-vrig5hx835 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.green-background .title[b-vrig5hx835] {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.green-background .description[b-vrig5hx835] {
    font-size: 14px;
}

.close-button[b-vrig5hx835] {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .close-button:hover[b-vrig5hx835] {
        transform: scale(1.1);
    }

/* Tabs */
.nav-tabs[b-vrig5hx835] {
    border-bottom: 2px solid #45475a;
}

    .nav-tabs .nav-link[b-vrig5hx835] {
        color: #cdd6f4;
        background-color: #313244;
        border: none;
        border-radius: 8px 8px 0 0;
        padding: 10px 20px;
        margin-right: 5px;
        transition: all 0.3s ease;
    }

        .nav-tabs .nav-link:hover[b-vrig5hx835] {
            background-color: #45475a;
        }

        .nav-tabs .nav-link.active[b-vrig5hx835] {
            color: #89b4fa;
            background-color: #1e1e2e;
            border-bottom: 2px solid #89b4fa;
        }

/* Form Elements */
.form-select[b-vrig5hx835], .form-control[b-vrig5hx835] {
    background-color: #313244;
    color: #cdd6f4;
    border: 2px solid #45475a;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

    .form-select:focus[b-vrig5hx835], .form-control:focus[b-vrig5hx835] {
        border-color: #89b4fa;
        box-shadow: 0 0 0 0.2rem rgba(137, 180, 250, 0.25);
    }

/* Model Cards */
.model-container[b-vrig5hx835] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.model-card[b-vrig5hx835] {
    background-color: #313244;
    border: 2px solid #45475a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .model-card:hover[b-vrig5hx835] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .model-card img[b-vrig5hx835] {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .model-card .card-body[b-vrig5hx835] {
        padding: 15px;
    }

    .model-card .card-text[b-vrig5hx835] {
        color: #cdd6f4;
        font-size: 14px;
        text-align: center;
    }

/* Buttons */
.btn[b-vrig5hx835] {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary[b-vrig5hx835] {
    background-color: #89b4fa;
    border-color: #89b4fa;
    color: #1e1e2e;
}

    .btn-primary:hover[b-vrig5hx835] {
        background-color: #74c7ec;
        border-color: #74c7ec;
    }

.btn-secondary[b-vrig5hx835] {
    background-color: #45475a;
    border-color: #45475a;
    color: #cdd6f4;
}

    .btn-secondary:hover[b-vrig5hx835] {
        background-color: #585b70;
        border-color: #585b70;
    }

/* List Group */
.list-group-item[b-vrig5hx835] {
    background-color: #313244;
    color: #cdd6f4;
    border: 1px solid #45475a;
    transition: all 0.3s ease;
}

    .list-group-item:hover[b-vrig5hx835] {
        background-color: #45475a;
    }

    .list-group-item:first-child[b-vrig5hx835] {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .list-group-item:last-child[b-vrig5hx835] {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
.modal-dialog[b-vrig5hx835] {
    max-width: 90%;
    width: 90%;
    margin: 1.75rem auto;
}

.modal-content[b-vrig5hx835] {
    background-color: #1e1e2e;
    color: #cdd6f4;
    border-radius: 8px;
}

.modal-header[b-vrig5hx835] {
    border-bottom: 1px solid #45475a;
}

.modal-footer[b-vrig5hx835] {
    border-top: 1px solid #45475a;
}

.modal-title[b-vrig5hx835] {
    color: #89b4fa;
}

.modal-body[b-vrig5hx835] {
    max-height: 70vh;
    overflow-y: auto;
}

/* Flex Container for Batch Details */
/* Flex Container for Batch Details */
.flex-container[b-vrig5hx835] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    justify-content: center;
}

.flex-item[b-vrig5hx835] {
    background-color: #313244;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    max-height: 300px; /* Set a maximum height */
    overflow-y: auto; /* Allow scrolling if content exceeds max height */
}

    .flex-item:hover[b-vrig5hx835] {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .flex-item img[b-vrig5hx835] {
        max-width: 100%;
        height: auto;
        max-height: 120px; /* Limit image height */
        object-fit: cover; /* Ensure image covers area without distortion */
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .flex-item p[b-vrig5hx835] {
        text-align: center;
        margin: 5px 0;
        word-break: break-word;
        font-size: 0.9em; /* Slightly reduce font size */
    }

    .flex-item button[b-vrig5hx835] {
        margin-top: auto; /* Push button to bottom of flex item */
    }

    /* Scrollbar Styles for flex-item */
    .flex-item[b-vrig5hx835]::-webkit-scrollbar {
        width: 5px;
    }

    .flex-item[b-vrig5hx835]::-webkit-scrollbar-track {
        background: #1e1e2e;
    }

    .flex-item[b-vrig5hx835]::-webkit-scrollbar-thumb {
        background: #45475a;
        border-radius: 5px;
    }

        .flex-item[b-vrig5hx835]::-webkit-scrollbar-thumb:hover {
            background: #585b70;
        }

/* Modal body */
.modal-body[b-vrig5hx835] {
    max-height: 70vh;
    overflow-y: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flex-container[b-vrig5hx835] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .flex-item[b-vrig5hx835] {
        max-height: 250px; /* Reduce max height for mobile */
    }
}
    .flex-item:hover[b-vrig5hx835] {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .flex-item img[b-vrig5hx835] {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .flex-item p[b-vrig5hx835] {
        text-align: center;
        margin: 5px 0;
        word-break: break-word;
    }



/* Image Selection */
img.selected[b-vrig5hx835] {
    border: 4px solid #f9b23d;
    box-shadow: 0 0 10px rgba(249, 178, 61, 0.5);
}

/* Animations */
@keyframes pulse-b-vrig5hx835 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn:hover[b-vrig5hx835] {
    animation: pulse-b-vrig5hx835 1s infinite;
}

/* Scrollbar Styles */
[b-vrig5hx835]::-webkit-scrollbar {
    width: 10px;
}

[b-vrig5hx835]::-webkit-scrollbar-track {
    background: #313244;
}

[b-vrig5hx835]::-webkit-scrollbar-thumb {
    background: #45475a;
    border-radius: 5px;
}

    [b-vrig5hx835]::-webkit-scrollbar-thumb:hover {
        background: #585b70;
    }

/* Premium Message */
.premium-message[b-vrig5hx835] {
    background-color: #f87171;
    color: #1e1e2e;
    border: 3px solid #ef4444;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    animation: shake-b-vrig5hx835 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake-b-vrig5hx835 {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.content[b-vrig5hx835] {
    margin: 20px;
    padding: 20px;
    background-color: #313244;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .content .title[b-vrig5hx835] {
        font-size: 24px;
        font-weight: bold;
        color: #89b4fa;
        margin-bottom: 15px;
    }

    .content .description[b-vrig5hx835] {
        font-size: 18px;
        color: #cdd6f4;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .modal-dialog[b-vrig5hx835] {
        margin: 10px;
        max-width: 95%;
        width: 95%;
    }

    .flex-container[b-vrig5hx835] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .flex-item[b-vrig5hx835] {
        max-width: 100%;
    }

    .modal-dialog[b-vrig5hx835] {
        margin: 10px;
    }
}


.image-reference-batch-container[b-vrig5hx835] {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
}

.custom-select[b-vrig5hx835] {
    background-color: #3a3a3a;
    color: #ffffff;
    border: 1px solid #4a4a4a;
}

.model-container[b-vrig5hx835] {
    background-color: #3a3a3a;
    padding: 10px;
    border-radius: 5px;
}

.model-card[b-vrig5hx835] {
    background-color: #4a4a4a;
    border: 1px solid #5a5a5a;
    transition: all 0.3s ease;
}

    .model-card:hover[b-vrig5hx835], .model-card.selected[b-vrig5hx835] {
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }

    .model-card .card-body[b-vrig5hx835] {
        padding: 10px;
    }

    .model-card .card-text[b-vrig5hx835] {
        color: #ffffff;
        font-size: 14px;
    }

.selected-model[b-vrig5hx835] {
    color: #00ff00;
}
.form-check-input[b-vrig5hx835] {
    opacity: 1 !important;
    width: 20px !important;
    height: 20px !important;
}
.custom-checkbox .form-check-input:checked[b-vrig5hx835] {
    background-color: #00ff00;
    border-color: #00ff00;
}

.custom-range[b-vrig5hx835]::-webkit-slider-thumb {
    background: #00ff00;
}

.custom-range[b-vrig5hx835]::-moz-range-thumb {
    background: #00ff00;
}

.custom-range[b-vrig5hx835]::-ms-thumb {
    background: #00ff00;
}

.drop-zone[b-vrig5hx835] {
    border: 2px dashed #00ff00;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .drop-zone:hover[b-vrig5hx835], .drop-zone.drag-over[b-vrig5hx835] {
        background-color: rgba(0, 255, 0, 0.1);
    }

    .drop-zone input[type="file"][b-vrig5hx835] {
        display: none;
    }

.custom-button[b-vrig5hx835] {
    background-color: #00ff00;
    border: none;
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.drop-zone[b-vrig5hx835] {
    border: 2px dashed #00ff00;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .drop-zone:hover[b-vrig5hx835], .drop-zone.drag-over[b-vrig5hx835] {
        background-color: rgba(0, 255, 0, 0.1);
    }

    .custom-button:hover[b-vrig5hx835] {
        background-color: #00cc00;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
/* _content/AIMCTextureGenAPI/Shared/Pages/Chat.razor.rz.scp.css */
body[b-t0ssm5efps] {
    background-color: #1e1e2e;
    color: #cdd6f4;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
}

.pixel-chat-container[b-t0ssm5efps] {
    display: flex;
    height: calc(100vh - 60px);
    max-width: 1400px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #2a2b3d;
}

.chat-sidebar[b-t0ssm5efps] {
    width: 300px;
    background-color: #313244;
    border-right: 1px solid #45475a;
    padding: 20px;
    overflow-y: auto;
}

.new-chat-button[b-t0ssm5efps] {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #89b4fa;
    color: #1e1e2e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .new-chat-button:hover[b-t0ssm5efps] {
        background-color: #74c7ec;
    }

.chat-list[b-t0ssm5efps] {
    margin-top: 20px;
}

.chat-preview[b-t0ssm5efps] {
    background-color: #313244;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .chat-preview:hover[b-t0ssm5efps] {
        background-color: #45475a;
    }

    .chat-preview p[b-t0ssm5efps] {
        margin: 0;
        color: #a6adc8;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.chat-main[b-t0ssm5efps] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #2a2b3d;
}

.chat-display[b-t0ssm5efps] {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.chat-message[b-t0ssm5efps], .chat-reply[b-t0ssm5efps] {
    margin-bottom: 20px;
    animation: fadeIn-b-t0ssm5efps 0.5s ease-out;
}

@keyframes fadeIn-b-t0ssm5efps {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-label[b-t0ssm5efps] {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #89b4fa;
}

.message-content[b-t0ssm5efps] {
    padding: 15px;
    background-color: #313244;
    border-radius: 8px;
    word-wrap: break-word;
    white-space: pre-wrap;
    color: #cdd6f4;
}

.input-area[b-t0ssm5efps] {
    padding: 20px;
    background-color: #313244;
    display: flex;
    align-items: center;
}

    .input-area textarea[b-t0ssm5efps] {
        flex-grow: 1;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background-color: #313244;
        color: #cdd6f4;
        resize: none;
        font-size: 14px;
    }

    .input-area button[b-t0ssm5efps] {
        padding: 12px 20px;
        margin-left: 10px;
        background-color: #89b4fa;
        color: #1e1e2e;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .input-area button:hover[b-t0ssm5efps] {
            background-color: #74c7ec;
        }

.user-generated-message[b-t0ssm5efps] {
    background-color: #74c7ec;
    color: #1e1e2e;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    animation: slideIn-b-t0ssm5efps 0.5s ease-out;
}

@keyframes slideIn-b-t0ssm5efps {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chat-info[b-t0ssm5efps] {
    background-color: #313244;
    color: #cdd6f4;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

input[type="checkbox"][b-t0ssm5efps] {
    margin-right: 10px;
    accent-color: #89b4fa;
}

label[b-t0ssm5efps] {
    color: #a6adc8;
    font-size: 14px;
}

/* Scrollbar Styles */
[b-t0ssm5efps]::-webkit-scrollbar {
    width: 8px;
}

[b-t0ssm5efps]::-webkit-scrollbar-track {
    background: #313244;
}

[b-t0ssm5efps]::-webkit-scrollbar-thumb {
    background: #45475a;
    border-radius: 4px;
}

    [b-t0ssm5efps]::-webkit-scrollbar-thumb:hover {
        background: #74c7ec;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .pixel-chat-container[b-t0ssm5efps] {
        flex-direction: column;
        height: auto;
    }

    .chat-sidebar[b-t0ssm5efps] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #45475a;
    }

    .chat-main[b-t0ssm5efps] {
        height: calc(100vh - 200px);
    }
}

/* Additional styles for better visibility */
h3[b-t0ssm5efps] {
    color: #89b4fa;
    margin-bottom: 15px;
}

.chat-message[b-t0ssm5efps], .chat-reply[b-t0ssm5efps] {
    background-color: #313244;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

    .chat-message .message-content[b-t0ssm5efps], .chat-reply .message-content[b-t0ssm5efps] {
        background-color: #313244;
        color: #cdd6f4;
    }

/* Style for the white info box */
div[style*="background-color: white"][b-t0ssm5efps] {
    background-color: #313244 !important;
    color: #cdd6f4 !important;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

    div[style*="background-color: white"] p[b-t0ssm5efps] {
        color: #cdd6f4 !important;
        margin: 0;
    }
/* _content/AIMCTextureGenAPI/Shared/Pages/ConfigGenerator.razor.rz.scp.css */
.search-box[b-4li24ee1i8] {
    position: relative;
    margin-top: 40px;
}

    .search-box input[b-4li24ee1i8] {
        padding-right: 40px;
        background-color: #333;
        color: #fff;
        border: none;
        margin-top: 40px;
    }

    .search-box i[b-4li24ee1i8] {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
    }

.rounded-rect[b-4li24ee1i8] {
    border-radius: 10px;
}

.card[b-4li24ee1i8] {
    cursor: pointer;
    transition: transform 0.3s;
}

.card-hover:hover[b-4li24ee1i8] {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.generate-btn[b-4li24ee1i8] {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

    .generate-btn:hover[b-4li24ee1i8] {
        background-color: #45a049;
        border-color: #45a049;
    }

.back-btn[b-4li24ee1i8] {
    background-color: #6c757d;
    border-color: #6c757d;
}

    .back-btn:hover[b-4li24ee1i8] {
        background-color: #5a6268;
        border-color: #5a6268;
    }

.output-card[b-4li24ee1i8] {
    background-color: #222;
}

.output-iframe[b-4li24ee1i8] {
    height: 1600px;
    border: none;
}

.nav-tabs .nav-link[b-4li24ee1i8] {
    color: #fff;
    border: none;
    background-color: transparent;
}

    .nav-tabs .nav-link.active[b-4li24ee1i8] {
        color: #fff;
        background-color: #212529;
        border-bottom: 2px solid #fff;
    }

    .nav-tabs .nav-link.disabled[b-4li24ee1i8] {
        color: #6c757d;
        cursor: not-allowed;
    }

.tab-content[b-4li24ee1i8] {
    padding: 20px;
    border-radius: 0 10px 10px 10px;
}

.paypal-btn[b-4li24ee1i8] {
    background-color: #003087;
    border-color: #003087;
}

    .paypal-btn:hover[b-4li24ee1i8] {
        background-color: #002569;
        border-color: #002569;
    }

.price-label[b-4li24ee1i8] {
    font-size: 18px;
    font-weight: bold;
    color: #ffc107;
}


.custom-button[b-4li24ee1i8] {
    background-color: orange;
    color: white;
    border-radius: 0;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}


.credits-container[b-4li24ee1i8] {
    background-color: #4CAF50; /* Green background */
    border-radius: 8px; /* Rounded corners */
    padding: 2px 3px; /* Padding around the text and icon */
    color: white; /* White text color */
    display: inline-flex; /* Aligns the icon and text inline */
    align-items: center; /* Center alignment of icon and text */
    font-size: 16px; /* Text size */
}

    .credits-container i[b-4li24ee1i8] {
        margin-right: 5px; /* Space between the icon and text */
    }

/* _content/AIMCTextureGenAPI/Shared/Pages/ExploreModels.razor.rz.scp.css */
/* Global Styles */
body[b-ebd5s1yicr] {
    background-color: #0a0c10;
    color: #e0e0e0;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.model-explorer[b-ebd5s1yicr] {
    max-width: 1400px;
    margin: 8px auto;
    border: 5px solid #00bb1e;
    padding: 30px;
    border-radius: 10px;
}

/* Typography */
.page-title[b-ebd5s1yicr] {
    text-align: center;
    color: #6aeb2d;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(106, 235, 45, 0.5);
}

.section-title[b-ebd5s1yicr] {
    color: #6aeb2d;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #6aeb2d;
    padding-bottom: 10px;
}

/* Search Container */
.search-container[b-ebd5s1yicr] {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    border: 2px solid #6aeb2d;
    color: #e0e0e0;
    padding: 12px 15px;
    flex-grow: 1;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .search-input:focus[b-ebd5s1yicr] {
        outline: none;
        box-shadow: 0 0 0 2px rgba(106, 235, 45, 0.5);
    }

.search-button[b-ebd5s1yicr] {
    background-color: #6aeb2d;
    color: #0a0c10;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

    .search-button:hover[b-ebd5s1yicr] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Content Layout */
.content-wrapper[b-ebd5s1yicr] {
    display: flex;
    gap: 30px;
}

.main-content[b-ebd5s1yicr] {
    flex: 1;
    min-width: 0;
}

.sidebar[b-ebd5s1yicr] {
    width: 350px;
}

/* Loading Spinner */
.loading-spinner[b-ebd5s1yicr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.spinner[b-ebd5s1yicr] {
    border: 4px solid rgba(106, 235, 45, 0.3);
    border-top: 4px solid #6aeb2d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-ebd5s1yicr 1s linear infinite;
}

@keyframes spin-b-ebd5s1yicr {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Model Grid */
.model-grid[b-ebd5s1yicr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.model-card[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .model-card:hover[b-ebd5s1yicr] {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(106, 235, 45, 0.2);
    }

.model-image[b-ebd5s1yicr] {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.model-info[b-ebd5s1yicr] {
    padding: 10px;
}

.model-name[b-ebd5s1yicr] {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #6aeb2d;
}

.select-model-btn[b-ebd5s1yicr] {
    background-color: #6aeb2d;
    color: #0a0c10;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
    width: 100%;
    font-size: 0.8rem;
}

    .select-model-btn:hover[b-ebd5s1yicr] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Pagination */
.pagination[b-ebd5s1yicr] {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-btn[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    color: #e0e0e0;
    border: 1px solid #6aeb2d;
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .pagination-btn:hover:not(:disabled)[b-ebd5s1yicr] {
        background-color: #6aeb2d;
        color: #0a0c10;
    }

    .pagination-btn.active[b-ebd5s1yicr] {
        background-color: #6aeb2d;
        color: #0a0c10;
    }

    .pagination-btn:disabled[b-ebd5s1yicr] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Selected Model Container */
.selected-model-container[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-btn[b-ebd5s1yicr] {
    background-color: #6aeb2d;
    color: #0a0c10;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

    .back-btn:hover[b-ebd5s1yicr] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Form Elements */
.form-group[b-ebd5s1yicr] {
    margin-bottom: 20px;
}

    .form-group label[b-ebd5s1yicr] {
        display: block;
        margin-bottom: 5px;
        color: #6aeb2d;
    }

.form-control[b-ebd5s1yicr] {
    width: 100%;
    padding: 12px;
    background-color: #252a3e;
    border: 1px solid #6aeb2d;
    color: #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .form-control:focus[b-ebd5s1yicr] {
        outline: none;
        box-shadow: 0 0 0 2px rgba(106, 235, 45, 0.5);
    }

/* Model Input Styles */
.model-input[b-ebd5s1yicr] {
    background-color: #252a3e;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

    .model-input .form-group[b-ebd5s1yicr] {
        margin-bottom: 20px;
    }

    .model-input label[b-ebd5s1yicr] {
        display: block;
        margin-bottom: 8px;
        color: #6aeb2d;
        font-weight: bold;
    }

    .model-input input[type="text"][b-ebd5s1yicr],
    .model-input input[type="number"][b-ebd5s1yicr],
    .model-input select[b-ebd5s1yicr],
    .model-input textarea[b-ebd5s1yicr] {
        width: 100%;
        padding: 10px;
        background-color: #1a1e2e;
        border: 1px solid #6aeb2d;
        color: #e0e0e0;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

        .model-input input[type="text"]:focus[b-ebd5s1yicr],
        .model-input input[type="number"]:focus[b-ebd5s1yicr],
        .model-input select:focus[b-ebd5s1yicr],
        .model-input textarea:focus[b-ebd5s1yicr] {
            outline: none;
            box-shadow: 0 0 0 2px rgba(106, 235, 45, 0.5);
        }

    .model-input input[type="checkbox"][b-ebd5s1yicr] {
        margin-right: 10px;
    }

    .model-input input[type="range"][b-ebd5s1yicr] {
        width: 100%;
    }

/* Custom Range Input */
input[type="range"][b-ebd5s1yicr] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #1a1e2e;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    margin-top: 10px;
}

    input[type="range"]:hover[b-ebd5s1yicr] {
        opacity: 1;
    }

    input[type="range"][b-ebd5s1yicr]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6aeb2d;
        cursor: pointer;
    }

    input[type="range"][b-ebd5s1yicr]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6aeb2d;
        cursor: pointer;
    }

/* Generate Button */
.generate-btn[b-ebd5s1yicr] {
    background-color: #6aeb2d;
    color: #0a0c10;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .generate-btn:hover[b-ebd5s1yicr] {
        background-color: #5fd624;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(106, 235, 45, 0.3);
    }

/* Generated Image */
.generated-image[b-ebd5s1yicr] {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-actions[b-ebd5s1yicr] {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.action-btn[b-ebd5s1yicr] {
    background-color: #6aeb2d;
    color: #0a0c10;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
}

    .action-btn:hover[b-ebd5s1yicr] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Texture Requests */
.texture-requests[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.texture-request-card[b-ebd5s1yicr] {
    background-color: #252a3e;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

    .texture-request-card:hover[b-ebd5s1yicr] {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(106, 235, 45, 0.2);
    }

.request-model[b-ebd5s1yicr] {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #6aeb2d;
}

.request-input[b-ebd5s1yicr] {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #a0a0a0;
}

.request-progress[b-ebd5s1yicr] {
    height: 6px;
    background-color: #1a1e2e;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar[b-ebd5s1yicr] {
    height: 100%;
    background-color: #6aeb2d;
    transition: width 0.3s ease;
}

.request-status[b-ebd5s1yicr] {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.status-failed[b-ebd5s1yicr] {
    color: #ff4757;
}

.status-in-progress[b-ebd5s1yicr] {
    color: #ffa502;
}

.status-complete[b-ebd5s1yicr] {
    color: #2ed573;
}

.request-actions[b-ebd5s1yicr] {
    display: flex;
    justify-content: space-between;
}

.action-btn.delete[b-ebd5s1yicr] {
    background-color: #ff4757;
}

    .action-btn.delete:hover[b-ebd5s1yicr] {
        background-color: #ff6b81;
    }

/* Recent Textures */
.recent-textures[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recent-texture-grid[b-ebd5s1yicr] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.recent-texture-card[b-ebd5s1yicr] {
    background-color: #252a3e;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .recent-texture-card:hover[b-ebd5s1yicr] {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(106, 235, 45, 0.2);
    }

.recent-texture-image[b-ebd5s1yicr] {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-texture-prompt[b-ebd5s1yicr] {
    font-size: 0.8rem;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper[b-ebd5s1yicr] {
        flex-direction: column;
    }

    .sidebar[b-ebd5s1yicr] {
        width: 100%;
    }

    .model-grid[b-ebd5s1yicr] {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (max-width: 768px) {
    .model-explorer[b-ebd5s1yicr] {
        padding: 10px;
    }

    .page-title[b-ebd5s1yicr] {
        font-size: 2rem;
    }

    .section-title[b-ebd5s1yicr] {
        font-size: 1.5rem;
    }

    .search-container[b-ebd5s1yicr] {
        flex-direction: column;
    }

    .search-input[b-ebd5s1yicr],
    .search-button[b-ebd5s1yicr] {
        width: 100%;
        border-radius: 4px;
    }

    .search-button[b-ebd5s1yicr] {
        margin-top: 10px;
    }

    .model-grid[b-ebd5s1yicr] {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .recent-texture-grid[b-ebd5s1yicr] {
        grid-template-columns: 1fr;
    }
}

/* Dynamic Parameters Section */
.dynamic-parameters[b-ebd5s1yicr] {
    background-color: #252a3e;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.parameter-group[b-ebd5s1yicr] {
    margin-bottom: 20px;
}

.parameter-label[b-ebd5s1yicr] {
    display: block;
    margin-bottom: 8px;
    color: #6aeb2d;
    font-weight: bold;
}

/* Custom styles for different parameter types */
.parameter-input[b-ebd5s1yicr] {
    width: 100%;
    padding: 10px;
    background-color: #1a1e2e;
    border: 1px solid #6aeb2d;
    color: #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .parameter-input:focus[b-ebd5s1yicr] {
        outline: none;
        box-shadow: 0 0 0 2px rgba(106, 235, 45, 0.5);
    }

.parameter-select[b-ebd5s1yicr] {
    width: 100%;
    padding: 10px;
    background-color: #1a1e2e;
    border: 1px solid #6aeb2d;
    color: #e0e0e0;
    border-radius: 4px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%236aeb2d" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
}

.parameter-checkbox[b-ebd5s1yicr] {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

.parameter-range[b-ebd5s1yicr] {
    width: 100%;
}

.parameter-color[b-ebd5s1yicr] {
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    border-radius: 50%;
    overflow: hidden;
}

.parameter-textarea[b-ebd5s1yicr] {
    width: 100%;
    padding: 10px;
    background-color: #1a1e2e;
    border: 1px solid #6aeb2d;
    color: #e0e0e0;
    border-radius: 4px;
    min-height: 100px;
    resize: vertical;
}

/* Additional styles for better visual hierarchy */
.model-options[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.model-options-title[b-ebd5s1yicr] {
    color: #6aeb2d;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #6aeb2d;
    padding-bottom: 10px;
}

/* Tooltip styles */
.tooltip[b-ebd5s1yicr] {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext[b-ebd5s1yicr] {
        visibility: hidden;
        width: 200px;
        background-color: #1a1e2e;
        color: #e0e0e0;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 0.8rem;
        border: 1px solid #6aeb2d;
    }

    .tooltip:hover .tooltiptext[b-ebd5s1yicr] {
        visibility: visible;
        opacity: 1;
    }


[b-ebd5s1yicr] .model-options {
    background-color: #1a1e2e;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

    [b-ebd5s1yicr] .model-options > div {
        background-color: #252a3e;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        [b-ebd5s1yicr] .model-options > div:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(106, 235, 45, 0.1);
        }

    [b-ebd5s1yicr] .model-options label {
        display: block;
        color: #6aeb2d;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Checkbox styles */
    [b-ebd5s1yicr] .model-options .rz-chkbox {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    [b-ebd5s1yicr] .model-options .rz-chkbox-box {
        width: 22px;
        height: 22px;
        border: 2px solid #6aeb2d;
        background-color: #6aab2d;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        [b-ebd5s1yicr] .model-options .rz-chkbox-box:hover {
            background-color: rgba(106, 235, 45, 0.1);
        }

    [b-ebd5s1yicr] .model-options .rz-chkbox-icon {
        color: #1a1e2e;
        font-size: 14px;
        display: none;
    }

    [b-ebd5s1yicr] .model-options .rz-state-active .rz-chkbox-box {
        background-color: #6aeb2d;
    }

    [b-ebd5s1yicr] .model-options .rz-state-active .rz-chkbox-icon {
        display: block;
    }

    /* Slider styles */
    [b-ebd5s1yicr] .model-options .rz-slider {
        width: 100%;
        height: 6px;
        background-color: #1a1e2e;
        border-radius: 3px;
        position: relative;
        margin: 10px 0;
    }

    [b-ebd5s1yicr] .model-options .rz-slider-range {
        height: 100%;
        background-color: #6aeb2d;
        border-radius: 3px;
        position: absolute;
        top: 0;
        left: 0;
    }

    [b-ebd5s1yicr] .model-options .rz-slider-handle {
        width: 18px;
        height: 18px;
        background-color: #6aeb2d;
        border: 2px solid #1a1e2e;
        border-radius: 50%;
        position: absolute;
        top: -6px;
        margin-left: -9px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        [b-ebd5s1yicr] .model-options .rz-slider-handle:hover,
        [b-ebd5s1yicr] .model-options .rz-slider-handle:active {
            transform: scale(1.1);
            box-shadow: 0 0 0 5px rgba(106, 235, 45, 0.2);
        }

    [b-ebd5s1yicr] .model-options > div > span:not(.rz-chkbox-icon) {
        display: block;
        margin-top: 5px;
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 500;
    }

    /* Button styles */
    [b-ebd5s1yicr] .model-options .rz-button {
        background-color: #6aeb2d;
        color: #1a1e2e;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: bold;
        transition: all 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        [b-ebd5s1yicr] .model-options .rz-button:hover {
            background-color: #5fd624;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(106, 235, 45, 0.3);
        }

    [b-ebd5s1yicr] .model-options .rz-button-text {
        color: #1a1e2e;
    }

    /* Accessibility helper */
    [b-ebd5s1yicr] .model-options .rz-helper-hidden-accessible {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

/* Responsive design */
@media (max-width: 768px) {
    [b-ebd5s1yicr] .model-options {
        grid-template-columns: 1fr;
    }
}

[b-ebd5s1yicr] .form-group {
    width: 100% !important;
}

[b-ebd5s1yicr] .recent-texture-card {
    max-width: 140px;
}

[b-ebd5s1yicr] search-input {
    margin: 0px !important;
}

[b-ebd5s1yicr] .search-button {
    margin-bottom: 15px;
}
[b-ebd5s1yicr] .container-fluid {
    background: #2d2c2c;
}

[b-ebd5s1yicr] #main_container {
    background: #2d2c2c;
}
[b-ebd5s1yicr] .model-explorer {
    background: #2d2c2c;
}

.model-explorer[b-ebd5s1yicr] {
    background: #2d2c2c;
}
[b-ebd5s1yicr] body {
    background: #2d2c2c;
}


.last-used-models[b-ebd5s1yicr] {
    background-color: #1a1e2e;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .last-used-models .section-title[b-ebd5s1yicr] {
        color: #6aeb2d;
        font-size: 1.2rem;
        margin-bottom: 15px;
        border-bottom: 1px solid #6aeb2d;
        padding-bottom: 10px;
    }

.last-used-models-list[b-ebd5s1yicr] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.last-used-model-item[b-ebd5s1yicr] {
    max-width: 140px;
    width: calc(33.333% - 10px); /* Adjust based on your layout needs */
    background-color: #252a3e;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .last-used-model-item:hover[b-ebd5s1yicr] {
        transform: translateY(-5px);
        box-shadow: 0 4px 10px rgba(106, 235, 45, 0.2);
    }

    .last-used-model-item .model-image[b-ebd5s1yicr] {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-bottom: 2px solid #6aeb2d;
    }

    .last-used-model-item .model-name[b-ebd5s1yicr] {
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 8px;
        text-align: center;
        word-break: break-word;
    }

@media (max-width: 768px) {
    .last-used-model-item[b-ebd5s1yicr] {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .last-used-model-item[b-ebd5s1yicr] {
        width: 100%;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Home.razor.rz.scp.css */


.container[b-rlpko4ldj4] {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 1004;
    max-width: 350px;
}

.item[b-rlpko4ldj4] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ddd;
    border-radius: 5px;
}

.label[b-rlpko4ldj4] {
    width: 80px;
    font-weight: bold;
    margin-right: 10px;
}

.description[b-rlpko4ldj4] {
    flex: 1;
}

.custom-btn-seldel[b-rlpko4ldj4]  {
    margin-right: 10px;
}


.popup-container[b-rlpko4ldj4] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
    box-sizing: border-box;
    z-index: 9999;
}

.popup-close[b-rlpko4ldj4] {
    float: right;
    color: #888;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover[b-rlpko4ldj4] {
    color: #000;
}

.popup-message[b-rlpko4ldj4] {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    padding: 10px 0;
}

.popup-message em[b-rlpko4ldj4] {
    font-style: normal;
    font-weight: bold;
    color: #f00;
}



.options-container[b-rlpko4ldj4] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.form-check[b-rlpko4ldj4] {
    margin-right: 10px;
}

.process-button[b-rlpko4ldj4] {
    background: none;
    padding: 0;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    image-rendering: pixelated;
}

@media (max-width: 480px) {
    .popup-container[b-rlpko4ldj4] {
        display: none;
    }
}

.flip-animation[b-rlpko4ldj4] {
    animation: flip-b-rlpko4ldj4 1s ease-in-out infinite;
    transform-origin: center;
}

@keyframes flip-b-rlpko4ldj4 {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

#name-user-generated[b-rlpko4ldj4] {
    width: 80vw; /* Adjust the width to your desired size */
    background-color: #ff8f00; /* Pixel color (black in this example) */
    border: 1px solid #333; /* Optional pixel border color (dark gray in this example) */
    display: inline-block;
    position: relative;
    max-width: 450px;
}

#name-user-generated p[b-rlpko4ldj4] {
    margin: 0;
    padding: 5px; /* Adjust the padding for text inside the square */
    font-size: 14px; /* Adjust the font size as needed */
    color: #FFF; /* Text color (white in this example) */
}

@keyframes multicolor-b-rlpko4ldj4 {
    0% {
        background-color: #fad775;
        color: black;
    }
    /* Red background, Cyan text */
    /* Yellow background, Blue text */
    100% {
        background-color: #fa9f75;
        color: black;
    }

    
}

.mega-load-item[b-rlpko4ldj4] {
    animation: multicolor-b-rlpko4ldj4 5s infinite; /* Adjust the duration as needed */
}


@keyframes gradient-b-rlpko4ldj4 {
    0% {
        background: linear-gradient(to right, #FF5733, #32CD32); /* Nicer red (#FF5733) to bright green (#32CD32) */
        background-size: 50% 100%;
    }


    100% {
        background: linear-gradient(to right, #FF5733, #32CD32);
        background-size: 100% 100%;
    }
}

.sup-item[b-rlpko4ldj4] {
    animation: gradient-b-rlpko4ldj4 45s infinite;
}
/* _content/AIMCTextureGenAPI/Shared/Pages/HomeNew.razor.rz.scp.css */
/* Base styles and resets */
*[b-folpwvti66] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-folpwvti66] {
    background-color: #0f1219;
    color: #e0e0e0;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Container styles */
.container[b-folpwvti66] {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 1004;
    max-width: 350px;
}

.image-gallery-container[b-folpwvti66] {
    max-width: 300px;
    background-color: rgba(37, 42, 62, 0.8);
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.item[b-folpwvti66] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #1a1e2e;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .item:hover[b-folpwvti66] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(106, 235, 45, 0.1);
    }

.label[b-folpwvti66] {
    width: 80px;
    font-weight: bold;
    margin-right: 12px;
    color: #6aeb2d;
}

.description[b-folpwvti66] {
    flex: 1;
    font-size: 0.9em;
}

.custom-btn-seldel[b-folpwvti66] {
    margin-right: 10px;
    padding: 6px 12px;
    background-color: #6aeb2d;
    color: #0f1219;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .custom-btn-seldel:hover[b-folpwvti66] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Popup styles */
.popup-container[b-folpwvti66] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1e2e;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    box-sizing: border-box;
    z-index: 9999;
    border-top: 2px solid #6aeb2d;
}

.popup-close[b-folpwvti66] {
    float: right;
    color: #6aeb2d;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .popup-close:hover[b-folpwvti66] {
        color: #5fd624;
    }

.popup-message[b-folpwvti66] {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 10px 0;
}

    .popup-message em[b-folpwvti66] {
        font-style: normal;
        font-weight: bold;
        color: #ff4757;
    }

/* Link and tab styles */
a[b-folpwvti66] {
    border-radius: 0 !important;
}

.nav-tabs[b-folpwvti66] {
    border-radius: 0 !important;
}

/* Options container styles */
.options-container[b-folpwvti66] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    background-color: #252a3e;
    padding: 15px;
    border-radius: 8px;
}

.form-check[b-folpwvti66] {
    margin-right: 15px;
}

/* Process button styles */
.process-button[b-folpwvti66] {
    background: #6aeb2d;
    padding: 8px 12px;
    font-size: 16px;
    color: #0f1219;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .process-button:hover[b-folpwvti66] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Animations */
@keyframes flip-b-folpwvti66 {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.flip-animation[b-folpwvti66] {
    animation: flip-b-folpwvti66 1s ease-in-out infinite;
    transform-origin: center;
}

/* User generated name styles */
#name-user-generated[b-folpwvti66] {
    width: 80vw;
    max-width: 450px;
    background-color: #ffa500;
    border: 2px solid #ff8c00;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

    #name-user-generated p[b-folpwvti66] {
        margin: 0;
        padding: 10px;
        font-size: 14px;
        color: #0f1219;
        font-weight: bold;
    }

/* Color animations */
@keyframes multicolor-b-folpwvti66 {
    0% {
        background-color: #ffbf0f;
        color: #0f1219;
    }

    100% {
        background-color: #c6ed02;
        color: #0f1219;
    }
}

@keyframes waitcolor-b-folpwvti66 {
    0% {
        background-color: #d9a00f;
        color: #0f1219;
    }

    100% {
        background-color: #a3d90f;
        color: #0f1219;
    }
}

.wait-item[b-folpwvti66] {
    animation: waitcolor-b-folpwvti66 5s infinite;
}

.mega-load-item[b-folpwvti66] {
    animation: multicolor-b-folpwvti66 5s infinite;
}

@keyframes gradient-b-folpwvti66 {
    0% {
        background: linear-gradient(to right, #ffbf0f, #c6ed02);
        background-size: 50% 100%;
    }

    100% {
        background: linear-gradient(to right, #ffbf0f, #c6ed02);
        background-size: 100% 100%;
    }
}

.sup-item[b-folpwvti66] {
    animation: gradient-b-folpwvti66 45s infinite;
}

/* Radio button styles */
.radio-container[b-folpwvti66] {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 15px;
    cursor: pointer;
}

    .radio-container input[type="radio"][b-folpwvti66] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .radio-container .radio-button[b-folpwvti66] {
        position: absolute;
        top: 0;
        left: 0;
        width: 25px;
        height: 25px;
        background-color: #3498db;
        border: 2px solid #2980b9;
        border-radius: 4px;
    }

.radio-square[b-folpwvti66] {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #6aeb2d;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .radio-square:checked[b-folpwvti66] {
        background-color: #6aeb2d;
    }

        .radio-square:checked[b-folpwvti66]::after {
            content: '\2714';
            font-size: 14px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #0f1219;
        }

.square-radio[b-folpwvti66] {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/* Multiline input styles */
.multiline-input[b-folpwvti66] {
    width: 300px;
    height: 100px;
    padding: 5px;
    border: 1px solid #6aeb2d;
    outline: none;
    resize: none;
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background-color: #1a1e2e;
    color: #e0e0e0;
}

    .multiline-input:focus[b-folpwvti66] {
        border-color: #5fd624;
    }

/* Tab styles */
.rad-tab-full-custom[b-folpwvti66] {
    border-bottom: 2px solid #6aeb2d;
}

.rad-tab-selected[b-folpwvti66] {
    border-bottom: 2px solid #ff4757;
}

.rz-tabview.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected[b-folpwvti66] {
    border-top-width: 0;
    border-bottom: 2px solid #ffa700 !important;
}

/* Background image styles */
#main_container[b-folpwvti66] {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#img-bg-1[b-folpwvti66], #img-bg-2[b-folpwvti66], #img-bg-3[b-folpwvti66], #img-bg-4[b-folpwvti66], #img-bg-5[b-folpwvti66],
#img-bg-6[b-folpwvti66], #img-bg-7[b-folpwvti66], #img-bg-8[b-folpwvti66], #img-bg-9[b-folpwvti66], #img-bg-10[b-folpwvti66] {
    position: absolute;
    width: 250px;
    height: auto;
    image-rendering: pixelated;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

    #img-bg-1:hover[b-folpwvti66], #img-bg-2:hover[b-folpwvti66], #img-bg-3:hover[b-folpwvti66], #img-bg-4:hover[b-folpwvti66], #img-bg-5:hover[b-folpwvti66],
    #img-bg-6:hover[b-folpwvti66], #img-bg-7:hover[b-folpwvti66], #img-bg-8:hover[b-folpwvti66], #img-bg-9:hover[b-folpwvti66], #img-bg-10:hover[b-folpwvti66] {
        opacity: 0.3;
    }

/* Position and animation for each background image */
#img-bg-1[b-folpwvti66] {
    top: 10%;
    left: 10%;
    animation: float1-b-folpwvti66 10s infinite;
    transform: rotate(10deg);
}

#img-bg-2[b-folpwvti66] {
    top: 60%;
    left: 80%;
    animation: float2-b-folpwvti66 12s infinite;
    transform: rotate(-20deg);
}

#img-bg-3[b-folpwvti66] {
    top: 75%;
    left: 80%;
    animation: float3-b-folpwvti66 14s infinite;
    transform: rotate(15deg);
}

#img-bg-4[b-folpwvti66] {
    top: 20%;
    left: 80%;
    animation: float4-b-folpwvti66 16s infinite;
    transform: rotate(-25deg);
}

#img-bg-5[b-folpwvti66] {
    top: 65%;
    left: 26%;
    animation: float1-b-folpwvti66 18s infinite;
    transform: rotate(30deg);
}

#img-bg-6[b-folpwvti66] {
    top: 90%;
    left: 10%;
    animation: float2-b-folpwvti66 20s infinite;
    transform: rotate(-35deg);
}

#img-bg-7[b-folpwvti66] {
    top: 35%;
    left: 74%;
    animation: float3-b-folpwvti66 22s infinite;
    transform: rotate(40deg);
}

#img-bg-8[b-folpwvti66] {
    top: 50%;
    left: 10%;
    animation: float4-b-folpwvti66 24s infinite;
    transform: rotate(-45deg);
}

#img-bg-9[b-folpwvti66] {
    top: 85%;
    left: 70%;
    animation: float1-b-folpwvti66 26s infinite;
    transform: rotate(50deg);
}

#img-bg-10[b-folpwvti66] {
    top: 70%;
    left: 30%;
    animation: float2-b-folpwvti66 28s infinite;
    transform: rotate(-55deg);
}

/* Floating animations */
@keyframes float1-b-folpwvti66 {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    25% {
        transform: translate(-10px, 5px) rotate(3deg);
    }

    50% {
        transform: translate(5px, -10px) rotate(-3deg);
    }

    75% {
        transform: translate(-5px, 10px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

@keyframes float2-b-folpwvti66 {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    25% {
        transform: translate(10px, -5px) rotate(-4deg);
    }

    50% {
        transform: translate(-5px, 10px) rotate(4deg);
    }

    75% {
        transform: translate(5px, -10px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

@keyframes float3-b-folpwvti66 {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    25% {
        transform: translate(-15px, -10px) rotate(5deg);
    }

    50% {
        transform: translate(10px, 15px) rotate(-5deg);
    }

    75% {
        transform: translate(-10px, -15px) rotate(3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

@keyframes float4-b-folpwvti66 {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    25% {
        transform: translate(15px, 10px) rotate(-6deg);
    }

    50% {
        transform: translate(-10px, -15px) rotate(6deg);
    }

    75% {
        transform: translate(10px, 15px) rotate(-3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

/* Container styles */
.container-all[b-folpwvti66] {
    margin-top: 20px;
    color: #62ff79;
}

    .container-all .row[b-folpwvti66] {
        margin-bottom: 20px;
    }

    .container-all .card[b-folpwvti66] {
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
        background-color: #252a3e;
        border-radius: 8px;
        border: 2px solid #6aeb2d;
        overflow: hidden;
    }

        .container-all .card:hover[b-folpwvti66] {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(106, 235, 45, 0.2);
        }

    .container-all .card-img-top[b-folpwvti66] {
        height: 200px;
        background-size: cover;
        background-position: center;
        border-bottom: 2px solid #6aeb2d;
    }

    .container-all .model-container[b-folpwvti66] {
        border: 3px solid #6aeb2d;
        padding: 20px;
        margin-bottom: 20px;
        background-color: #1a1e2e;
        border-radius: 8px;
    }

    .container-all .model-image[b-folpwvti66] {
        height: 200px;
        background-size: cover;
        background-position: center;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 2px solid #6aeb2d;
    }

.model-textarea-ad[b-folpwvti66] {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border: 2px solid #6aeb2d;
    border-radius: 8px;
    background-color: #252a3e;
    color: #e0e0e0;
    resize: vertical;
    transition: border-color 0.3s ease;
}

    .model-textarea-ad:focus[b-folpwvti66] {
        border-color: #5fd624;
        outline: none;
    }

    .model-textarea-ad[b-folpwvti66]::placeholder {
        color: #62ff79;
        opacity: 0.7;
    }

.container-all .model-tips[b-folpwvti66] {
    background-color: #252a3e;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    border: 2px solid #6aeb2d;
}

.container-all .stars[b-folpwvti66] {
    color: #ffd700;
    font-size: 20px;
    margin-right: 10px;
}

.container-all .generation-time[b-folpwvti66] {
    font-size: 14px;
    color: #e0e0e0;
}

.message-box-al[b-folpwvti66] {
    background-color: #252a3e;
    border: 2px solid #6aeb2d;
    padding: 15px;
    color: #e0e0e0;
    border-radius: 8px;
    margin-top: 15px;
}

.container-all .btn-primary[b-folpwvti66] {
    margin-top: 10px;
    background-color: #6aeb2d;
    color: #0f1219;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .container-all .btn-primary:hover[b-folpwvti66] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

.container-all .image-display[b-folpwvti66] {
    margin-top: 20px;
    text-align: center;
}

    .container-all .image-display img[b-folpwvti66] {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.text-container-nv[b-folpwvti66] {
    position: relative;
    border: 4px solid #ffd700;
    padding: 20px 20px 20px 50px;
    text-align: center;
    font-size: 16px;
    color: #ffd700;
    background-color: #252a3e;
    border-radius: 8px;
    margin-bottom: 20px;
}

    .text-container-nv i[b-folpwvti66] {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        color: #ffd700;
    }

/* Search and filter styles */
.search-filter-container[b-folpwvti66] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #252a3e;
    border-radius: 8px;
}

.search-container input[b-folpwvti66],
.filter-container select[b-folpwvti66] {
    padding: 10px;
    border: 2px solid #6aeb2d;
    border-radius: 8px;
    font-size: 16px;
    background-color: #1a1e2e;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

    .search-container input:focus[b-folpwvti66],
    .filter-container select:focus[b-folpwvti66] {
        border-color: #5fd624;
        outline: none;
    }

/* Pagination styles */
.pagination-container[b-folpwvti66] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

    .pagination-container button[b-folpwvti66] {
        padding: 10px 20px;
        border: 2px solid #6aeb2d;
        border-radius: 8px;
        background-color: #252a3e;
        color: #6aeb2d;
        font-size: 16px;
        margin: 0 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .pagination-container button:hover:not(:disabled)[b-folpwvti66] {
            background-color: #6aeb2d;
            color: #0f1219;
        }

        .pagination-container button:disabled[b-folpwvti66] {
            opacity: 0.5;
            cursor: not-allowed;
        }

    .pagination-container span[b-folpwvti66] {
        font-size: 16px;
        color: #e0e0e0;
    }

/* Settings styles */
.crs-settings-container[b-folpwvti66] {
    margin-top: 20px;
}

.crs-settings-toggle[b-folpwvti66] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px;
    background-color: #6aeb2d;
    color: #0f1219;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .crs-settings-toggle:hover[b-folpwvti66] {
        background-color: #5fd624;
    }

    .crs-settings-toggle i[b-folpwvti66] {
        transition: transform 0.3s ease;
    }

    .crs-settings-toggle .bi-chevron-up[b-folpwvti66] {
        transform: rotate(180deg);
    }

.crs-settings-content[b-folpwvti66] {
    background-color: #252a3e;
    color: #e0e0e0;
    padding: 20px;
    border: 2px solid #6aeb2d;
    margin-top: 10px;
    border-radius: 8px;
}

.crs-input-group[b-folpwvti66] {
    margin-bottom: 20px;
}

    .crs-input-group label[b-folpwvti66] {
        display: block;
        margin-bottom: 8px;
        color: #6aeb2d;
    }

    .crs-input-group input[type="range"][b-folpwvti66] {
        width: 100%;
        -webkit-appearance: none;
        background: #1a1e2e;
        outline: none;
        opacity: 0.7;
        transition: opacity 0.2s;
        border-radius: 8px;
        height: 8px;
    }

        .crs-input-group input[type="range"][b-folpwvti66]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            background: #6aeb2d;
            cursor: pointer;
            border-radius: 50%;
        }

        .crs-input-group input[type="range"][b-folpwvti66]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #6aeb2d;
            cursor: pointer;
            border-radius: 50%;
        }

    .crs-input-group select[b-folpwvti66],
    .crs-input-group input[type="text"][b-folpwvti66] {
        width: 100%;
        padding: 10px;
        background-color: #1a1e2e;
        color: #e0e0e0;
        border: 2px solid #6aeb2d;
        border-radius: 8px;
        font-size: 16px;
    }

/* Image upload styles */
.image-upload-container[b-folpwvti66] {
    margin-bottom: 20px;
    background-color: #252a3e;
    border: 2px dashed #6aeb2d;
    border-radius: 8px;
    padding: 20px;
}

.upload-area[b-folpwvti66] {
    text-align: center;
    cursor: pointer;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

    .upload-area:hover[b-folpwvti66] {
        background-color: rgba(106, 235, 45, 0.1);
    }

.drag-over[b-folpwvti66] {
    background-color: rgba(106, 235, 45, 0.2);
}

.uploaded-images[b-folpwvti66] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.uploaded-image[b-folpwvti66] {
    position: relative;
    max-width: 150px;
}

    .uploaded-image img[b-folpwvti66] {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.remove-image-button[b-folpwvti66] {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff4757;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .remove-image-button:hover[b-folpwvti66] {
        background-color: #ff6b6b;
        transform: scale(1.1);
    }

.image-upload-error[b-folpwvti66] {
    color: #ff4757;
    margin-top: 10px;
    font-size: 14px;
}

/* Additional utility classes */
.img-height-cor[b-folpwvti66] {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.super-label[b-folpwvti66] {
    padding: 8px 12px;
    border: 2px solid #6aeb2d;
    border-radius: 8px;
    background-color: #252a3e;
    color: #6aeb2d;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Editor styles */
#editor[b-folpwvti66] {
    background: rgba(15, 18, 25, 0.9);
}

#canvas[b-folpwvti66] {
    border: 2px solid #6aeb2d;
    border-radius: 8px;
}

#colorPicker[b-folpwvti66] {
    margin-right: 10px;
}

#rangeToRemove[b-folpwvti66] {
    width: 200px;
    margin: 0 10px;
}

/* Progress bar styles */
progress[b-folpwvti66] {
    width: 100%;
    height: 30px;
    border-radius: 0px;
    margin-top: 10px;
    margin-bottom: 5px;
}

    progress[b-folpwvti66]::-webkit-progress-bar {
        background-color: #252a3e;
        border-radius: 0px;
    }

    progress[b-folpwvti66]::-webkit-progress-value {
        background-color: #6aeb2d;
        border-radius: 0px;
    }

    progress[b-folpwvti66]::-moz-progress-bar {
        background-color: #6aeb2d;
        border-radius: 0px;
    }

/* Generate button styles */
#mega-generate-button[b-folpwvti66] {
    margin-top: 20px;
    background-color: #4ba521 !important;
    color: white !important;
    border: #6aeb2d 4px solid;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    #mega-generate-button:hover[b-folpwvti66] {
        background-color: #5fd624 !important;
        transform: translateY(-2px);
    }

/* Premium user section styles */
.bg-dark[b-folpwvti66] {
    background-color: #1a1e2e !important;
}

.text-white[b-folpwvti66] {
    color: #e0e0e0 !important;
}

.display-4[b-folpwvti66] {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.lead[b-folpwvti66] {
    font-size: 1.25rem;
    font-weight: 300;
}

.fas[b-folpwvti66] {
    margin-right: 10px;
}

/* Result container styles */
.result[b-folpwvti66] {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loading-img-run[b-folpwvti66] {
    width: 256px;
    height: 256px;
    image-rendering: pixelated;
}

#gen-img[b-folpwvti66] {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Button styles for image actions */
.process-button[b-folpwvti66] {
    background-color: #6aeb2d;
    color: #0f1219;
    border: none;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .process-button:hover[b-folpwvti66] {
        background-color: #5fd624;
        transform: translateY(-2px);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .container[b-folpwvti66] {
        position: static;
        max-width: 100%;
    }

    .search-filter-container[b-folpwvti66] {
        flex-direction: column;
    }

    .search-container[b-folpwvti66],
    .filter-container[b-folpwvti66] {
        width: 100%;
        margin-bottom: 10px;
    }

    .text-container-nv[b-folpwvti66] {
        padding: 15px 15px 15px 40px;
    }

        .text-container-nv i[b-folpwvti66] {
            top: 15px;
            left: 15px;
        }

    .model-container[b-folpwvti66] {
        padding: 15px;
    }

    .model-image[b-folpwvti66] {
        height: 150px;
    }

    .pagination-container button[b-folpwvti66] {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .popup-container[b-folpwvti66] {
        display: none;
    }

    .container-all .card[b-folpwvti66] {
        margin-bottom: 15px;
    }

    .model-textarea-ad[b-folpwvti66] {
        font-size: 14px;
    }

    .crs-settings-toggle[b-folpwvti66] {
        font-size: 14px;
    }

    .process-button[b-folpwvti66] {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* Additional styles for better overall appearance */
body[b-folpwvti66] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-folpwvti66] {
    flex: 1;
}

.footer[b-folpwvti66] {
    background-color: #1a1e2e;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.navbar[b-folpwvti66] {
    background-color: #1a1e2e;
    border-bottom: 2px solid #6aeb2d;
}

.navbar-brand[b-folpwvti66] {
    color: #6aeb2d !important;
    font-weight: bold;
}

.navbar-nav .nav-link[b-folpwvti66] {
    color: #e0e0e0 !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover[b-folpwvti66] {
        color: #6aeb2d !important;
    }

/* ScrollBar Styles */
[b-folpwvti66]::-webkit-scrollbar {
    width: 10px;
}

[b-folpwvti66]::-webkit-scrollbar-track {
    background: #1a1e2e;
}

[b-folpwvti66]::-webkit-scrollbar-thumb {
    background: #6aeb2d;
    border-radius: 5px;
}

    [b-folpwvti66]::-webkit-scrollbar-thumb:hover {
        background: #5fd624;
    }



.custom-btn-dn[b-folpwvti66] {
    margin: 2px;
    padding: 6px 10px;
    border-radius: 10px !important;
}


@keyframes gradientBG-b-folpwvti66 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.custom-el-style[b-folpwvti66] {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 180px;
    max-height: 80vh;
    overflow-y: auto;
    background: linear-gradient(-45deg, #1a2f0d, #2d4a14, #3c6319, #4a7c1e);
    background-size: 400% 400%;
    animation: gradientBG-b-folpwvti66 15s ease infinite;
    border-radius: 10px;
    padding: 10px;
    z-index: 1030;
    font-size: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .custom-el-style .toggle-btn[b-folpwvti66] {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 5px;
        font-size: 0.8rem;
        background-color: #6aeb2d;
        color: #294708;
        border: none;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .custom-el-style .toggle-btn:hover[b-folpwvti66] {
            background-color: #7dff40;
            transform: scale(1.05);
        }

    .custom-el-style .image-container[b-folpwvti66] {
        margin-bottom: 10px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
    }

        .custom-el-style .image-container:hover[b-folpwvti66] {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .custom-el-style .image-container.new-image[b-folpwvti66]::after {
            content: 'NEW';
            position: absolute;
            top: 5px;
            left: 5px;
            background-color: #ffd700;
            color: #294708;
            padding: 2px 4px;
            border-radius: 3px;
            font-size: 0.6rem;
            font-weight: bold;
        }

    .custom-el-style .generated-image[b-folpwvti66] {
        width: 100%;
        height: 100px;
        object-fit: cover;
        display: block;
        transition: all 0.3s ease;
    }

    .custom-el-style .image-container:hover .generated-image[b-folpwvti66] {
        filter: brightness(1.1);
        height: auto;
    }

    .custom-el-style .options-icon[b-folpwvti66] {
        position: absolute;
        bottom: 5px;
        right: 5px;
        background-color: rgba(41, 71, 8, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.7rem;
        z-index: 2;
    }

        .custom-el-style .options-icon:hover[b-folpwvti66] {
            background-color: rgba(41, 71, 8, 0.9);
            transform: scale(1.1);
        }

    .custom-el-style .button-container[b-folpwvti66] {
        display: none;
        padding: 5px;
        background-color: rgba(41, 71, 8, 0.9);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        transition: all 0.3s ease;
    }

        .custom-el-style .button-container.show[b-folpwvti66] {
            display: block;
        }

    .custom-el-style .custom-btn-dn[b-folpwvti66] {
        width: 100%;
        margin-bottom: 3px;
        padding: 4px;
        background-color: #4a7c14;
        border: none;
        color: white;
        font-size: 0.7rem;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

        .custom-el-style .custom-btn-dn:hover[b-folpwvti66] {
            background-color: #5e9c1a;
            transform: translateY(-1px);
        }

    .custom-el-style p[b-folpwvti66] {
        color: white;
        font-size: 0.7rem;
        margin: 3px 0;
        text-align: center;
    }

@keyframes ripple-b-folpwvti66 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 0 5px rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.ripple[b-folpwvti66] {
    animation: ripple-b-folpwvti66 0.6s linear;
}


/* Modern Radzen Overrides and General Styling */
body[b-folpwvti66] {
    background-color: #0f1219;
    color: #e0e0e0;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Radzen Components Styling */
.rz-tabview[b-folpwvti66] {
    background-color: transparent !important;
    border: none !important;
}

.rz-tabview-nav[b-folpwvti66] {
    background-color: #1a1e2e !important;
    border: none !important;
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden;
}

.rz-tabview-selected[b-folpwvti66] {
    background-color: #6aeb2d !important;
    color: #0f1219 !important;
    border: none !important;
    border-radius: 12px 12px 0 0 !important;
}

.rz-tabview-nav li[b-folpwvti66] {
    margin: 0 !important;
}

.rz-tabview-nav a[b-folpwvti66] {
    padding: 15px 20px !important;
    transition: all 0.3s ease;
}

.rz-tabview-panels[b-folpwvti66] {
    background-color: #1a1e2e !important;
    border: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 20px !important;
}

.rz-button[b-folpwvti66] {
    background-color: #6aeb2d !important;
    color: #0f1219 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

    .rz-button:hover[b-folpwvti66] {
        background-color: #4ba521 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(106, 235, 45, 0.3);
    }

.rz-textbox[b-folpwvti66], .rz-textarea[b-folpwvti66], .rz-dropdown[b-folpwvti66] {
    background-color: #1a1e2e !important;
    color: #e0e0e0 !important;
    border: 2px solid #6aeb2d !important;
    border-radius: 12px !important;
    padding: 12px !important;
    transition: all 0.3s ease;
}

    .rz-textbox:focus[b-folpwvti66], .rz-textarea:focus[b-folpwvti66], .rz-dropdown:focus[b-folpwvti66] {
        border-color: #4ba521 !important;
        box-shadow: 0 0 0 3px rgba(106, 235, 45, 0.3);
    }

.rz-checkbox[b-folpwvti66] {
    border-radius: 12px !important;
}

.rz-checkbox-box[b-folpwvti66] {
    background-color: #1a1e2e !important;
    border: 2px solid #6aeb2d !important;
}

    .rz-checkbox-box.rz-state-active[b-folpwvti66] {
        background-color: #6aeb2d !important;
    }

/* Custom Components Styling */
.container-all[b-folpwvti66] {
    background-color: #234100;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card[b-folpwvti66] {
    background-color: #0f1219 !important;
    border: 2px solid #6aeb2d !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .card:hover[b-folpwvti66] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(106, 235, 45, 0.2);
    }

.card-img-top[b-folpwvti66] {
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #6aeb2d;
}

.model-container[b-folpwvti66] {
    background-color: #1a1e2e;
    border: 3px solid #6aeb2d;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.model-image[b-folpwvti66] {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.text-container-nv[b-folpwvti66] {
    background-color: #1a1e2e;
    border: 3px solid #6aeb2d;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

    .text-container-nv i[b-folpwvti66] {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        color: #6aeb2d;
    }

.search-filter-container[b-folpwvti66] {
    background-color: transparent;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-container input[b-folpwvti66],
.filter-container select[b-folpwvti66] {
    background-color: #0f1219;
    color: #e0e0e0;
    border: 2px solid #6aeb2d;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .search-container input:focus[b-folpwvti66],
    .filter-container select:focus[b-folpwvti66] {
        border-color: #4ba521;
        box-shadow: 0 0 0 3px rgba(106, 235, 45, 0.3);
    }

.pagination-container[b-folpwvti66] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

    .pagination-container button[b-folpwvti66] {
        background-color: #6aeb2d;
        color: #0f1219;
        border: none;
        border-radius: 12px;
        padding: 12px 24px;
        margin: 0 10px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .pagination-container button:hover:not(:disabled)[b-folpwvti66] {
            background-color: #4ba521;
            transform: translateY(-2px);
        }

        .pagination-container button:disabled[b-folpwvti66] {
            opacity: 0.5;
            cursor: not-allowed;
        }

#mega-generate-button[b-folpwvti66] {
    background-color: #6aeb2d !important;
    color: #0f1219 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

    #mega-generate-button:hover[b-folpwvti66] {
        background-color: #4ba521 !important;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(106, 235, 45, 0.3);
    }

.process-button[b-folpwvti66] {
    background-color: #6aeb2d;
    color: #0f1219;
    border: none;
    border-radius: 12px;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .process-button:hover[b-folpwvti66] {
        background-color: #4ba521;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(106, 235, 45, 0.3);
    }
@media (max-width: 1030px) {

    .logo-ch[b-folpwvti66] {
        width: 50vw;
    }
}
    /* Responsive Design */
    @media (max-width: 768px) {
        .search-filter-container[b-folpwvti66] {
            flex-direction: column;
        }

        .logo-ch[b-folpwvti66] {
            width: 50vw;
        }

        .search-container[b-folpwvti66],
        .filter-container[b-folpwvti66] {
            width: 100%;
            margin-bottom: 15px;
        }

        .model-container[b-folpwvti66] {
            padding: 20px;
        }

        .model-image[b-folpwvti66] {
            height: 200px;
        }

        .pagination-container button[b-folpwvti66] {
            padding: 10px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .container-all[b-folpwvti66] {
            padding: 20px;
        }

        .card-img-top[b-folpwvti66] {
            height: 150px;
        }

        .text-container-nv[b-folpwvti66] {
            padding: 20px 20px 20px 50px;
        }

        .process-button[b-folpwvti66] {
            padding: 8px 12px;
            font-size: 14px;
        }
    }

    /* Animations and Effects */
    @keyframes fadeIn-b-folpwvti66 {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .fade-in[b-folpwvti66] {
        animation: fadeIn-b-folpwvti66 0.5s ease-in-out;
    }

    @keyframes pulse-b-folpwvti66 {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .pulse[b-folpwvti66] {
        animation: pulse-b-folpwvti66 2s infinite;
    }

    /* ScrollBar Styling */
    [b-folpwvti66]::-webkit-scrollbar {
        width: 10px;
    }

    [b-folpwvti66]::-webkit-scrollbar-track {
        background: #1a1e2e;
    }

    [b-folpwvti66]::-webkit-scrollbar-thumb {
        background: #6aeb2d;
        border-radius: 5px;
    }

        [b-folpwvti66]::-webkit-scrollbar-thumb:hover {
            background: #4ba521;
        }

    [b-folpwvti66] #BaseTabsAll .rz-tabview-nav {
        background-color: #233d08;
        border-radius: 7px 7px 0px 0px;
    }

    .text-container-nv p[b-folpwvti66] {
        padding-left: 20px;
    }

    .ai-form[b-folpwvti66] {
        max-width: 95%;
        margin: 20px auto;
        padding: 20px;
        background-color: #243d0a;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .ai-input-container[b-folpwvti66] {
        background-color: transparent;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .ai-input-group[b-folpwvti66] {
        margin-bottom: 12px;
    }

    .ai-label[b-folpwvti66] {
        display: block;
        margin-bottom: 5px;
        color: #dffde0;
        font-weight: 600;
        font-size: 1.1em;
    }

    .ai-textarea[b-folpwvti66] {
        width: 100%;
        min-height: 80px;
        padding: 10px;
        border: 1px solid #3a3a3a;
        border-radius: 6px;
        background-color: #333;
        color: #e0e0e0;
        resize: vertical;
        font-size: 0.9em;
    }

    .ai-range[b-folpwvti66] {
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        background: #3a6700;
        outline: none;
        border-radius: 3px;
        margin-top: 10px;
    }

        .ai-range[b-folpwvti66]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            background: #4caf50;
            cursor: pointer;
            border-radius: 50%;
        }

        .ai-range[b-folpwvti66]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            background: #4caf50;
            cursor: pointer;
            border-radius: 50%;
        }

    .ai-range-description[b-folpwvti66] {
        display: block;
        text-align: center;
        margin-top: 5px;
        font-size: 0.8em;
        color: #b0b0b0;
    }

    .ai-progress[b-folpwvti66] {
        width: 100%;
        height: 8px;
        border-radius: 4px;
        overflow: hidden;
        background-color: #3a3a3a;
    }

        .ai-progress[b-folpwvti66]::-webkit-progress-bar {
            background-color: #3a3a3a;
        }

        .ai-progress[b-folpwvti66]::-webkit-progress-value {
            background-color: #4caf50;
        }

    .ai-selected-model[b-folpwvti66] {
        background-color: #4caf50;
        color: #1a1a1a;
        padding: 8px 12px;
        border-radius: 6px;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 600;
        font-size: 0.9em;
    }

    .ai-tabs[b-folpwvti66] {
        background-color: #2a2a2a;
        border-radius: 8px;
        overflow: hidden;
    }

    .ai-tab-item[b-folpwvti66] {
        background-color: #333;
        border: none;
        color: #e0e0e0;
        font-size: 0.9em;
        padding: 10px 15px;
    }

        .ai-tab-item:hover[b-folpwvti66] {
            background-color: #3a3a3a;
        }

    .ai-nested-tabs[b-folpwvti66],
    .ai-nested-tabs-2[b-folpwvti66],
    .ai-nested-tabs-3[b-folpwvti66],
    .ai-nested-tabs-4[b-folpwvti66] {
        margin-top: 8px;
    }

    .ai-panel[b-folpwvti66] {
        background-color: #2a2a2a;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .ai-panel-header[b-folpwvti66] {
        background-color: #333;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ai-panel-title[b-folpwvti66] {
        margin: 0;
        color: #4caf50;
        font-size: 1em;
    }

    .ai-premium-badge[b-folpwvti66] {
        background-color: #ffd700;
        color: #1a1a1a;
        padding: 2px 6px;
        border-radius: 3px;
        font-size: 0.7em;
        margin-left: 8px;
    }

    .ai-select-button[b-folpwvti66] {
        background-color: #4caf50;
        color: #1a1a1a;
        border: none;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s;
        font-size: 0.8em;
    }

        .ai-select-button:hover[b-folpwvti66] {
            background-color: #45a049;
        }

    .ai-model-selected[b-folpwvti66] {
        color: #4caf50;
        margin: 0;
        font-weight: 600;
        font-size: 0.8em;
    }

    .ai-panel-content[b-folpwvti66] {
        padding: 12px;
    }

    .ai-model-description[b-folpwvti66] {
        color: #b0b0b0;
        margin-bottom: 8px;
        font-size: 0.85em;
    }

    .ai-premium-info[b-folpwvti66] {
        background-color: #333;
        color: #ffd700;
        padding: 8px;
        border-radius: 4px;
        margin-bottom: 8px;
        font-size: 0.85em;
    }

    .ai-alert-info[b-folpwvti66] {
        background-color: #f44336;
        color: #e0e0e0;
        padding: 8px;
        border-radius: 4px;
        margin-bottom: 8px;
        font-size: 0.85em;
    }

    .ai-access-denied[b-folpwvti66] {
        background-color: #f44336;
        color: #e0e0e0;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
    }

        .ai-access-denied h1[b-folpwvti66] {
            margin-top: 0;
            font-size: 1.2em;
        }

    .ai-error[b-folpwvti66] {
        color: #f44336;
        text-align: center;
        font-size: 0.9em;
    }

    [b-folpwvti66] .rz-panel {
        background: #393939 !important;
    }

    [b-folpwvti66] .rz-button.rz-success.rz-shade-default {
        margin-left: 10px;
    }

    [b-folpwvti66] .rz-textarea {
        background-color: #3c670f;
        border-color: #0ccb0c;
        color: white;
    }

    [b-folpwvti66] .rz-tabview.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
        border-bottom: 4px solid #137b00 !important;
    }

    [b-folpwvti66] rz-tabview-title {
        color: #79b33d !important;
    }

    [b-folpwvti66] .rz-tabview-nav li a, .rz-tabview-nav li a:not([href]):not([class])[b-folpwvti66] {
        color: #79b33d !important;
    }

    [b-folpwvti66] a[aria-selected="true"]:not([href]):not([class]) {
        background-color: #3b6b09;
    }


    [b-folpwvti66] .rz-tabview.rz-tabview-top > .rz-tabview-panels {
        background-color: #3e611a;
    }

    [b-folpwvti66] #BaseTabs .rz-tabview-panels {
        background-color: transparent;
    }



@media screen and (max-width: 768px) {
    .display-icon-img[b-folpwvti66] {
        display: block !important;
        font-size: 1.4rem;
        color: white;
    }
    .display-icon-img ~ .text[b-folpwvti66] {
        display: none; /* Hides the text that follows the icon */
    }

    .text-bi-card-icon[b-folpwvti66] {
        display: none;
    }

    .breach-result[b-folpwvti66] {
        position: fixed;
        max-width: 70vw;
        top: 16vh;
    }
}

.sudi-not-shown[b-folpwvti66] {
    width: 5em;
}

.custom-el-style[b-folpwvti66] {
    transition: height 0.8s ease, width 0.8s ease; /* Animate height and width */
}


.eiro-toggle-container[b-folpwvti66] {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    width: 200px;
}

.eiro-toggle-btn[b-folpwvti66] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #105508;
    border: 2px solid #4caf50;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .eiro-toggle-btn:hover[b-folpwvti66] {
        background-color: #507508;
        box-shadow: 0 4px 8px rgba(35, 180, 56, 0.6);
    }

.eiro-toggle-btn-active[b-folpwvti66] {
    background-color: #4caf50;
    border-color: #333333;
}

    .eiro-toggle-btn-active:hover[b-folpwvti66] {
        background-color: #45a049;
    }

.eiro-toggle-btn i[b-folpwvti66] {
    margin-right: 8px;
}

.eiro-container[b-folpwvti66] {
    position: fixed;
    top: 150px;
    right: 20px;
    width: 380px;
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    
}

.eiro-container-hidden[b-folpwvti66] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}




.eiro-item[b-folpwvti66] {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #005702b3;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .eiro-item:hover[b-folpwvti66] {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(72, 197, 70, 0.15);
        background-color: rgba(72, 197, 70, 0.6);
    }

.eiro-item-failure[b-folpwvti66] {
    border-left: 4px solid #f44336;
}

.eiro-item-operating[b-folpwvti66] {
    border-left: 4px solid #4bf321;
}

.eiro-item-completed[b-folpwvti66] {
    border-left: 4px solid #4caf50;
}

.eiro-item-waiting[b-folpwvti66] {
    border-left: 4px solid #ff9800;
}

.eiro-item-text[b-folpwvti66] {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.eiro-description[b-folpwvti66] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.eiro-ellipsis[b-folpwvti66] {
    margin-left: 4px;
    opacity: 0.7;
}

.eiro-btn[b-folpwvti66] {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

    .eiro-btn:hover[b-folpwvti66] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .eiro-btn:active[b-folpwvti66] {
        transform: translateY(1px);
    }

    .eiro-btn[b-folpwvti66]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .eiro-btn:focus:not(:active)[b-folpwvti66]::after {
        animation: ripple-b-folpwvti66 1s ease-out;
    }

@keyframes ripple-b-folpwvti66 {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.eiro-btn-expand[b-folpwvti66] {
    background-color: #4caf50;
    margin-left: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

.eiro-btn-update[b-folpwvti66] {
    background-color: #28d545;
}

.eiro-btn-delete[b-folpwvti66] {
    background-color: #f44336;
}

.eiro-progress-container[b-folpwvti66] {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.eiro-progress-bar[b-folpwvti66] {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .eiro-progress-bar[b-folpwvti66]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100% );
        animation: eiro-progress-shine-b-folpwvti66 2s infinite;
    }

@keyframes eiro-progress-shine-b-folpwvti66 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.eiro-progress-text[b-folpwvti66] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.eiro-btn-group[b-folpwvti66] {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .eiro-container[b-folpwvti66] {
        width: calc(100% - 40px);
        max-width: 380px;
        top: 140px;
        right: 10px;
    }

    .eiro-item[b-folpwvti66] {
        padding: 15px;
    }

    .eiro-btn[b-folpwvti66] {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eiro-container[b-folpwvti66] {
        width: calc(100% - 20px);
        max-width: none;
        top: 140px;
        right: 5px;
        padding: 15px;
    }

    .eiro-item[b-folpwvti66] {
        padding: 12px;
    }

    .eiro-description[b-folpwvti66] {
        font-size: 13px;
    }

    .eiro-btn[b-folpwvti66] {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.eiro-item[b-folpwvti66] {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

    .eiro-item[b-folpwvti66]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(72, 197, 70, 0.6), rgba(255,255,255,0.7), rgba(72, 197, 70, 0.6));
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
    }

    .eiro-item.item-updated[b-folpwvti66] {
        background-color: rgba(72, 197, 70, 0.6);
        animation: subtle-pulse-b-folpwvti66 1.5s ease-in-out;
    }

        .eiro-item.item-updated[b-folpwvti66]::before {
            animation: shine-b-folpwvti66 1s ease-out;
        }

@keyframes subtle-pulse-b-folpwvti66 {
    0%, 100% {
        background-color: rgba(72, 187, 120, 0.1);
    }

    50% {
        background-color: rgba(72, 187, 120, 0.2);
    }
}

@keyframes shine-b-folpwvti66 {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.eiro-update-icon[b-folpwvti66] {
    position: absolute;
    top: 14px;
    right: -50px;
    background-color: #e78e09;
    color: white;
    width: 30px;
    height: 30px;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-out;
}

    .eiro-update-icon i[b-folpwvti66] {
        margin-top: 5px;
        margin-right: 1px;
    }

    .eiro-update-icon i[b-folpwvti66] {
        font-size: 18px;
    }

.eiro-item.updated .eiro-update-icon[b-folpwvti66] {
    right: 10px;
    animation: fadeInOut-b-folpwvti66 3s ease-in-out;
}

@keyframes fadeInOut-b-folpwvti66 {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}

.responsive-element[b-folpwvti66] {
    /* Base styles here */
    width: 158px; /* or whatever your default width is */
}

@media screen and (max-width: 557px) {
    .responsive-element[b-folpwvti66] {
        width: 100%;
    }
}



.gradient-text-t[b-folpwvti66] {
    background: linear-gradient(45deg, #22c55e, #15803d, #16a34a, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-t-b-folpwvti66 6s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradient-t-b-folpwvti66 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container-t[b-folpwvti66] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight[b-folpwvti66] {
    color: #22c55e;
    font-weight: bold;
}

.sparkle[b-folpwvti66] {
    position: relative;
    display: inline-block;
}

    .sparkle[b-folpwvti66]::before {
        content: "✨";
        position: absolute;
        animation: sparkleAnim-b-folpwvti66 1.5s ease-in-out infinite;
        font-size: 1.5rem;
    }

@keyframes sparkleAnim-b-folpwvti66 {
    0% {
        transform: translate(-100%, -100%) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(100%, -100%) rotate(180deg);
        opacity: 0;
    }
}

.diiiv[b-folpwvti66] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    margin: 0;
}


.preset-controls[b-folpwvti66] {
    margin-top: 20px;
}

.tag-filter-container[b-folpwvti66] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.preset-tag[b-folpwvti66] {
    display: inline-block;
    padding: 6px 12px;
    background-color: #252a3e;
    border: 2px solid #6aeb2d;
    color: #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .preset-tag:hover[b-folpwvti66] {
        background-color: #3a4161;
    }

.preset-tag-selected[b-folpwvti66] {
    background-color: #6aeb2d;
    color: #0f1219;
}

.preset-card[b-folpwvti66] {
    height: 100%;
    cursor: pointer;
    background-color: #252a3e;
    border: 2px solid #6aeb2d;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .preset-card:hover[b-folpwvti66] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(106, 235, 45, 0.2);
    }

.preset-card-img[b-folpwvti66] {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #6aeb2d;
}

.preset-card-body[b-folpwvti66] {
    padding: 15px;
}

.preset-card-title[b-folpwvti66] {
    color: #6aeb2d;
    margin-bottom: 10px;
    font-size: 18px;
}

.preset-card-description[b-folpwvti66] {
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.preset-card-tags[b-folpwvti66] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.preset-tag-small[b-folpwvti66] {
    padding: 3px 8px;
    background-color: #3a4161;
    color: #e0e0e0;
    border-radius: 15px;
    font-size: 12px;
}

.preset-component-container[b-folpwvti66] {
    background-color: #252a3e;
    border: 3px solid #6aeb2d;
    border-radius: 10px;
    padding: 25px;
}

.preset-description[b-folpwvti66] {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 20px;
}

.preset-tags-display[b-folpwvti66] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.preset-error[b-folpwvti66] {
    padding: 20px;
    background-color: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    border-radius: 8px;
    color: #f44336;
    text-align: center;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .preset-card-img[b-folpwvti66] {
        height: 140px;
    }

    .preset-tag[b-folpwvti66] {
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .preset-card-description[b-folpwvti66] {
        height: auto;
        -webkit-line-clamp: 2;
    }

    .tag-filter-container[b-folpwvti66] {
        gap: 5px;
    }

    .preset-tag[b-folpwvti66] {
        padding: 4px 8px;
        font-size: 11px;
    }
}

.fullscreen-mode[b-folpwvti66] {
    position: fixed;
    top: 100px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--background-color, white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fullscreen-toolbar[b-folpwvti66] {
    background-color: var(--toolbar-bg, #f8f9fa);
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: flex-end;
}

.fullscreen-content[b-folpwvti66] {
    flex: 1;
    overflow: auto;
    padding: 0px;
}

.preset-card-video[b-folpwvti66] {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the magic property */
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Images.razor.rz.scp.css */
/* Base styles */
body[b-lylbnhqxwk] {
    background-color: #22223b;
    color: #f2e9e4;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
}

.images-container[b-lylbnhqxwk] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Alert styles */
.alert[b-lylbnhqxwk] {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeIn-b-lylbnhqxwk 0.5s ease-out;
}

.alert-info[b-lylbnhqxwk] {
    background-color: #4a4e69;
    border: 1px solid #9a8c98;
}

@keyframes fadeIn-b-lylbnhqxwk {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Page title */
.page-title[b-lylbnhqxwk] {
    font-size: 2.5rem;
    color: #c9ada7;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Gallery styles */
.gallery[b-lylbnhqxwk] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item[b-lylbnhqxwk] {
    background-color: #4a4e69;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item:hover[b-lylbnhqxwk] {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.image-wrapper[b-lylbnhqxwk] {
    height: 250px;
    overflow: hidden;
}

.gallery-item img[b-lylbnhqxwk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img[b-lylbnhqxwk] {
    transform: scale(1.05);
}

.image-details[b-lylbnhqxwk] {
    padding: 15px;
}

.image-prompt[b-lylbnhqxwk] {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #f2e9e4;
}

.text-only .text-content[b-lylbnhqxwk] {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #9a8c98;
    color: #22223b;
}

.text-only i[b-lylbnhqxwk] {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Button styles */
.btn[b-lylbnhqxwk] {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-info[b-lylbnhqxwk] {
    background-color: #9a8c98;
    color: #22223b;
    border: none;
}

    .btn-info:hover[b-lylbnhqxwk] {
        background-color: #c9ada7;
        transform: translateY(-2px);
    }

/* Pagination styles */
.pagination[b-lylbnhqxwk] {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-item[b-lylbnhqxwk] {
    margin: 0 5px;
}

.page-link[b-lylbnhqxwk] {
    background-color: #4a4e69;
    color: #f2e9e4;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .page-item.active .page-link[b-lylbnhqxwk],
    .page-link:hover[b-lylbnhqxwk] {
        background-color: #9a8c98;
        color: #22223b;
    }

/* Loading indicator */
.loading-indicator[b-lylbnhqxwk] {
    text-align: center;
    padding: 40px;
}

.spinner-border[b-lylbnhqxwk] {
    width: 3rem;
    height: 3rem;
    color: #c9ada7;
}

/* Modal styles */
.modal-content[b-lylbnhqxwk] {
    background-color: #4a4e69;
    color: #f2e9e4;
}

.modal-header[b-lylbnhqxwk] {
    border-bottom: 1px solid #9a8c98;
}

.modal-title[b-lylbnhqxwk] {
    color: #c9ada7;
}

.close[b-lylbnhqxwk] {
    color: #f2e9e4;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .close:hover[b-lylbnhqxwk] {
        opacity: 1;
    }

.modal-backdrop[b-lylbnhqxwk] {
    background-color: rgba(34, 34, 59, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery[b-lylbnhqxwk] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .page-title[b-lylbnhqxwk] {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery[b-lylbnhqxwk] {
        grid-template-columns: 1fr;
    }

    .page-title[b-lylbnhqxwk] {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes pulse-b-lylbnhqxwk {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn:active[b-lylbnhqxwk] {
    animation: pulse-b-lylbnhqxwk 0.3s ease-in-out;
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Main/ExpertTabContent.razor.rz.scp.css */

/* ScrollBar Styling */
[b-mmn14zo3yw]::-webkit-scrollbar {
    width: 10px;
}

[b-mmn14zo3yw]::-webkit-scrollbar-track {
    background: #1a1e2e;
}

[b-mmn14zo3yw]::-webkit-scrollbar-thumb {
    background: #6aeb2d;
    border-radius: 5px;
}

    [b-mmn14zo3yw]::-webkit-scrollbar-thumb:hover {
        background: #4ba521;
    }

[b-mmn14zo3yw] #BaseTabsAll .rz-tabview-nav {
    background-color: #233d08;
    border-radius: 7px 7px 0px 0px;
}

.text-container-nv p[b-mmn14zo3yw] {
    padding-left: 20px;
}

.ai-form[b-mmn14zo3yw] {
    max-width: 95%;
    margin: 20px auto;
    padding: 20px;
    background-color: #243d0a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ai-input-container[b-mmn14zo3yw] {
    background-color: transparent;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ai-input-group[b-mmn14zo3yw] {
    margin-bottom: 12px;
}

.ai-label[b-mmn14zo3yw] {
    display: block;
    margin-bottom: 5px;
    color: #dffde0;
    font-weight: 600;
    font-size: 1.1em;
}

.ai-textarea[b-mmn14zo3yw] {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    background-color: #333;
    color: #e0e0e0;
    resize: vertical;
    font-size: 0.9em;
}

.ai-range[b-mmn14zo3yw] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #3a6700;
    outline: none;
    border-radius: 3px;
    margin-top: 10px;
}

    .ai-range[b-mmn14zo3yw]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #4caf50;
        cursor: pointer;
        border-radius: 50%;
    }

    .ai-range[b-mmn14zo3yw]::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #4caf50;
        cursor: pointer;
        border-radius: 50%;
    }

.ai-range-description[b-mmn14zo3yw] {
    display: block;
    text-align: center;
    margin-top: 5px;
    font-size: 0.8em;
    color: #b0b0b0;
}

.ai-progress[b-mmn14zo3yw] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #3a3a3a;
}

    .ai-progress[b-mmn14zo3yw]::-webkit-progress-bar {
        background-color: #3a3a3a;
    }

    .ai-progress[b-mmn14zo3yw]::-webkit-progress-value {
        background-color: #4caf50;
    }

.ai-selected-model[b-mmn14zo3yw] {
    background-color: #4caf50;
    color: #1a1a1a;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
}

.ai-tabs[b-mmn14zo3yw] {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.ai-tab-item[b-mmn14zo3yw] {
    background-color: #333;
    border: none;
    color: #e0e0e0;
    font-size: 0.9em;
    padding: 10px 15px;
}

    .ai-tab-item:hover[b-mmn14zo3yw] {
        background-color: #3a3a3a;
    }

.ai-nested-tabs[b-mmn14zo3yw],
.ai-nested-tabs-2[b-mmn14zo3yw],
.ai-nested-tabs-3[b-mmn14zo3yw],
.ai-nested-tabs-4[b-mmn14zo3yw] {
    margin-top: 8px;
}

.ai-panel[b-mmn14zo3yw] {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ai-panel-header[b-mmn14zo3yw] {
    background-color: #333;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-panel-title[b-mmn14zo3yw] {
    margin: 0;
    color: #4caf50;
    font-size: 1em;
}

.ai-premium-badge[b-mmn14zo3yw] {
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7em;
    margin-left: 8px;
}

.ai-select-button[b-mmn14zo3yw] {
    background-color: #4caf50;
    color: #1a1a1a;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.8em;
}

    .ai-select-button:hover[b-mmn14zo3yw] {
        background-color: #45a049;
    }

.ai-model-selected[b-mmn14zo3yw] {
    color: #4caf50;
    margin: 0;
    font-weight: 600;
    font-size: 0.8em;
}

.ai-panel-content[b-mmn14zo3yw] {
    padding: 12px;
}

.ai-model-description[b-mmn14zo3yw] {
    color: #b0b0b0;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.ai-premium-info[b-mmn14zo3yw] {
    background-color: #333;
    color: #ffd700;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.ai-alert-info[b-mmn14zo3yw] {
    background-color: #f44336;
    color: #e0e0e0;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.ai-access-denied[b-mmn14zo3yw] {
    background-color: #f44336;
    color: #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

    .ai-access-denied h1[b-mmn14zo3yw] {
        margin-top: 0;
        font-size: 1.2em;
    }

.ai-error[b-mmn14zo3yw] {
    color: #f44336;
    text-align: center;
    font-size: 0.9em;
}

[b-mmn14zo3yw] .rz-panel {
    background: #393939 !important;
}

[b-mmn14zo3yw] .rz-button.rz-success.rz-shade-default {
    margin-left: 10px;
}

[b-mmn14zo3yw] .rz-textarea {
    background-color: #3c670f;
    border-color: #0ccb0c;
    color: white;
}

[b-mmn14zo3yw] .rz-tabview.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
    border-bottom: 4px solid #137b00 !important;
}

[b-mmn14zo3yw] rz-tabview-title {
    color: #79b33d !important;
}

[b-mmn14zo3yw] .rz-tabview-nav li a, .rz-tabview-nav li a:not([href]):not([class])[b-mmn14zo3yw] {
    color: #79b33d !important;
}

[b-mmn14zo3yw] a[aria-selected="true"]:not([href]):not([class]) {
    background-color: #3b6b09;
}


[b-mmn14zo3yw] .rz-tabview.rz-tabview-top > .rz-tabview-panels {
    background-color: #3e611a;
}

[b-mmn14zo3yw] #BaseTabs .rz-tabview-panels {
    background-color: transparent;
}



@media screen and (max-width: 768px) {
    .display-icon-img[b-mmn14zo3yw] {
        display: block !important;
        font-size: 1.4rem;
        color: white;
    }

        .display-icon-img ~ .text[b-mmn14zo3yw] {
            display: none; /* Hides the text that follows the icon */
        }

    .text-bi-card-icon[b-mmn14zo3yw] {
        display: none;
    }

    .breach-result[b-mmn14zo3yw] {
        position: fixed;
        max-width: 70vw;
        top: 16vh;
    }
}

.sudi-not-shown[b-mmn14zo3yw] {
    width: 5em;
}

.custom-el-style[b-mmn14zo3yw] {
    transition: height 0.8s ease, width 0.8s ease; /* Animate height and width */
}


.eiro-toggle-container[b-mmn14zo3yw] {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    width: 200px;
}

.eiro-toggle-btn[b-mmn14zo3yw] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #105508;
    border: 2px solid #4caf50;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .eiro-toggle-btn:hover[b-mmn14zo3yw] {
        background-color: #507508;
        box-shadow: 0 4px 8px rgba(35, 180, 56, 0.6);
    }

.eiro-toggle-btn-active[b-mmn14zo3yw] {
    background-color: #4caf50;
    border-color: #333333;
}

    .eiro-toggle-btn-active:hover[b-mmn14zo3yw] {
        background-color: #45a049;
    }

.eiro-toggle-btn i[b-mmn14zo3yw] {
    margin-right: 8px;
}

.eiro-container[b-mmn14zo3yw] {
    position: fixed;
    top: 150px;
    right: 20px;
    width: 380px;
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.eiro-container-hidden[b-mmn14zo3yw] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}




.eiro-item[b-mmn14zo3yw] {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #005702b3;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .eiro-item:hover[b-mmn14zo3yw] {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(72, 197, 70, 0.15);
        background-color: rgba(72, 197, 70, 0.6);
    }

.eiro-item-failure[b-mmn14zo3yw] {
    border-left: 4px solid #f44336;
}

.eiro-item-operating[b-mmn14zo3yw] {
    border-left: 4px solid #4bf321;
}

.eiro-item-completed[b-mmn14zo3yw] {
    border-left: 4px solid #4caf50;
}

.eiro-item-waiting[b-mmn14zo3yw] {
    border-left: 4px solid #ff9800;
}

.eiro-item-text[b-mmn14zo3yw] {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.eiro-description[b-mmn14zo3yw] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.eiro-ellipsis[b-mmn14zo3yw] {
    margin-left: 4px;
    opacity: 0.7;
}

.eiro-btn[b-mmn14zo3yw] {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

    .eiro-btn:hover[b-mmn14zo3yw] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .eiro-btn:active[b-mmn14zo3yw] {
        transform: translateY(1px);
    }

    .eiro-btn[b-mmn14zo3yw]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .eiro-btn:focus:not(:active)[b-mmn14zo3yw]::after {
        animation: ripple-b-mmn14zo3yw 1s ease-out;
    }

@keyframes ripple-b-mmn14zo3yw {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.eiro-btn-expand[b-mmn14zo3yw] {
    background-color: #4caf50;
    margin-left: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

.eiro-btn-update[b-mmn14zo3yw] {
    background-color: #28d545;
}

.eiro-btn-delete[b-mmn14zo3yw] {
    background-color: #f44336;
}

.eiro-progress-container[b-mmn14zo3yw] {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.eiro-progress-bar[b-mmn14zo3yw] {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .eiro-progress-bar[b-mmn14zo3yw]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100% );
        animation: eiro-progress-shine-b-mmn14zo3yw 2s infinite;
    }

@keyframes eiro-progress-shine-b-mmn14zo3yw {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.eiro-progress-text[b-mmn14zo3yw] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.eiro-btn-group[b-mmn14zo3yw] {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .eiro-container[b-mmn14zo3yw] {
        width: calc(100% - 40px);
        max-width: 380px;
        top: 140px;
        right: 10px;
    }

    .eiro-item[b-mmn14zo3yw] {
        padding: 15px;
    }

    .eiro-btn[b-mmn14zo3yw] {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eiro-container[b-mmn14zo3yw] {
        width: calc(100% - 20px);
        max-width: none;
        top: 140px;
        right: 5px;
        padding: 15px;
    }

    .eiro-item[b-mmn14zo3yw] {
        padding: 12px;
    }

    .eiro-description[b-mmn14zo3yw] {
        font-size: 13px;
    }

    .eiro-btn[b-mmn14zo3yw] {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.eiro-item[b-mmn14zo3yw] {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

    .eiro-item[b-mmn14zo3yw]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(72, 197, 70, 0.6), rgba(255,255,255,0.7), rgba(72, 197, 70, 0.6));
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
    }

    .eiro-item.item-updated[b-mmn14zo3yw] {
        background-color: rgba(72, 197, 70, 0.6);
        animation: subtle-pulse-b-mmn14zo3yw 1.5s ease-in-out;
    }

        .eiro-item.item-updated[b-mmn14zo3yw]::before {
            animation: shine-b-mmn14zo3yw 1s ease-out;
        }

@keyframes subtle-pulse-b-mmn14zo3yw {
    0%, 100% {
        background-color: rgba(72, 187, 120, 0.1);
    }

    50% {
        background-color: rgba(72, 187, 120, 0.2);
    }
}

@keyframes shine-b-mmn14zo3yw {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.eiro-update-icon[b-mmn14zo3yw] {
    position: absolute;
    top: 14px;
    right: -50px;
    background-color: #e78e09;
    color: white;
    width: 30px;
    height: 30px;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-out;
}

    .eiro-update-icon i[b-mmn14zo3yw] {
        margin-top: 5px;
        margin-right: 1px;
    }

    .eiro-update-icon i[b-mmn14zo3yw] {
        font-size: 18px;
    }

.eiro-item.updated .eiro-update-icon[b-mmn14zo3yw] {
    right: 10px;
    animation: fadeInOut-b-mmn14zo3yw 3s ease-in-out;
}

@keyframes fadeInOut-b-mmn14zo3yw {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}

.responsive-element[b-mmn14zo3yw] {
    /* Base styles here */
    width: 158px; /* or whatever your default width is */
}

@media screen and (max-width: 557px) {
    .responsive-element[b-mmn14zo3yw] {
        width: 100%;
    }
}




.gradient-text[b-mmn14zo3yw] {
    background: linear-gradient(45deg, #22c55e, #15803d, #16a34a, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-b-mmn14zo3yw 6s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradient-b-mmn14zo3yw {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container[b-mmn14zo3yw] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight[b-mmn14zo3yw] {
    color: #22c55e;
    font-weight: bold;
}

.sparkle[b-mmn14zo3yw] {
    position: relative;
    display: inline-block;
}

    .sparkle[b-mmn14zo3yw]::before {
        content: "✨";
        position: absolute;
        animation: sparkleAnim-b-mmn14zo3yw 1.5s ease-in-out infinite;
        font-size: 1.5rem;
    }

@keyframes sparkleAnim-b-mmn14zo3yw {
    0% {
        transform: translate(-100%, -100%) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(100%, -100%) rotate(180deg);
        opacity: 0;
    }
}

.diiiv[b-mmn14zo3yw] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    margin: 0;
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Main/LazyLoadedModelPanel.razor.rz.scp.css */

/* ScrollBar Styling */
[b-ypj6wtpyhe]::-webkit-scrollbar {
    width: 10px;
}

[b-ypj6wtpyhe]::-webkit-scrollbar-track {
    background: #1a1e2e;
}

[b-ypj6wtpyhe]::-webkit-scrollbar-thumb {
    background: #6aeb2d;
    border-radius: 5px;
}

    [b-ypj6wtpyhe]::-webkit-scrollbar-thumb:hover {
        background: #4ba521;
    }

[b-ypj6wtpyhe] #BaseTabsAll .rz-tabview-nav {
    background-color: #233d08;
    border-radius: 7px 7px 0px 0px;
}

.text-container-nv p[b-ypj6wtpyhe] {
    padding-left: 20px;
}

.ai-form[b-ypj6wtpyhe] {
    max-width: 95%;
    margin: 20px auto;
    padding: 20px;
    background-color: #243d0a;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ai-input-container[b-ypj6wtpyhe] {
    background-color: transparent;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ai-input-group[b-ypj6wtpyhe] {
    margin-bottom: 12px;
}

.ai-label[b-ypj6wtpyhe] {
    display: block;
    margin-bottom: 5px;
    color: #dffde0;
    font-weight: 600;
    font-size: 1.1em;
}

.ai-textarea[b-ypj6wtpyhe] {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    background-color: #333;
    color: #e0e0e0;
    resize: vertical;
    font-size: 0.9em;
}

.ai-range[b-ypj6wtpyhe] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #3a6700;
    outline: none;
    border-radius: 3px;
    margin-top: 10px;
}

    .ai-range[b-ypj6wtpyhe]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #4caf50;
        cursor: pointer;
        border-radius: 50%;
    }

    .ai-range[b-ypj6wtpyhe]::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #4caf50;
        cursor: pointer;
        border-radius: 50%;
    }

.ai-range-description[b-ypj6wtpyhe] {
    display: block;
    text-align: center;
    margin-top: 5px;
    font-size: 0.8em;
    color: #b0b0b0;
}

.ai-progress[b-ypj6wtpyhe] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #3a3a3a;
}

    .ai-progress[b-ypj6wtpyhe]::-webkit-progress-bar {
        background-color: #3a3a3a;
    }

    .ai-progress[b-ypj6wtpyhe]::-webkit-progress-value {
        background-color: #4caf50;
    }

.ai-selected-model[b-ypj6wtpyhe] {
    background-color: #4caf50;
    color: #1a1a1a;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
}

.ai-tabs[b-ypj6wtpyhe] {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.ai-tab-item[b-ypj6wtpyhe] {
    background-color: #333;
    border: none;
    color: #e0e0e0;
    font-size: 0.9em;
    padding: 10px 15px;
}

    .ai-tab-item:hover[b-ypj6wtpyhe] {
        background-color: #3a3a3a;
    }

.ai-nested-tabs[b-ypj6wtpyhe],
.ai-nested-tabs-2[b-ypj6wtpyhe],
.ai-nested-tabs-3[b-ypj6wtpyhe],
.ai-nested-tabs-4[b-ypj6wtpyhe] {
    margin-top: 8px;
}

.ai-panel[b-ypj6wtpyhe] {
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ai-panel-header[b-ypj6wtpyhe] {
    background-color: #333;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-panel-title[b-ypj6wtpyhe] {
    margin: 0;
    color: #4caf50;
    font-size: 1em;
}

.ai-premium-badge[b-ypj6wtpyhe] {
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7em;
    margin-left: 8px;
}

.ai-select-button[b-ypj6wtpyhe] {
    background-color: #4caf50;
    color: #1a1a1a;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.8em;
}

    .ai-select-button:hover[b-ypj6wtpyhe] {
        background-color: #45a049;
    }

.ai-model-selected[b-ypj6wtpyhe] {
    color: #4caf50;
    margin: 0;
    font-weight: 600;
    font-size: 0.8em;
}

.ai-panel-content[b-ypj6wtpyhe] {
    padding: 12px;
}

.ai-model-description[b-ypj6wtpyhe] {
    color: #b0b0b0;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.ai-premium-info[b-ypj6wtpyhe] {
    background-color: #333;
    color: #ffd700;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.ai-alert-info[b-ypj6wtpyhe] {
    background-color: #f44336;
    color: #e0e0e0;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.ai-access-denied[b-ypj6wtpyhe] {
    background-color: #f44336;
    color: #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

    .ai-access-denied h1[b-ypj6wtpyhe] {
        margin-top: 0;
        font-size: 1.2em;
    }

.ai-error[b-ypj6wtpyhe] {
    color: #f44336;
    text-align: center;
    font-size: 0.9em;
}

[b-ypj6wtpyhe] .rz-panel {
    background: #393939 !important;
}

[b-ypj6wtpyhe] .rz-button.rz-success.rz-shade-default {
    margin-left: 10px;
}

[b-ypj6wtpyhe] .rz-textarea {
    background-color: #3c670f;
    border-color: #0ccb0c;
    color: white;
}

[b-ypj6wtpyhe] .rz-tabview.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
    border-bottom: 4px solid #137b00 !important;
}

[b-ypj6wtpyhe] rz-tabview-title {
    color: #79b33d !important;
}

[b-ypj6wtpyhe] .rz-tabview-nav li a, .rz-tabview-nav li a:not([href]):not([class])[b-ypj6wtpyhe] {
    color: #79b33d !important;
}

[b-ypj6wtpyhe] a[aria-selected="true"]:not([href]):not([class]) {
    background-color: #3b6b09;
}


[b-ypj6wtpyhe] .rz-tabview.rz-tabview-top > .rz-tabview-panels {
    background-color: #3e611a;
}

[b-ypj6wtpyhe] #BaseTabs .rz-tabview-panels {
    background-color: transparent;
}



@media screen and (max-width: 768px) {
    .display-icon-img[b-ypj6wtpyhe] {
        display: block !important;
        font-size: 1.4rem;
        color: white;
    }

        .display-icon-img ~ .text[b-ypj6wtpyhe] {
            display: none; /* Hides the text that follows the icon */
        }

    .text-bi-card-icon[b-ypj6wtpyhe] {
        display: none;
    }

    .breach-result[b-ypj6wtpyhe] {
        position: fixed;
        max-width: 70vw;
        top: 16vh;
    }
}

.sudi-not-shown[b-ypj6wtpyhe] {
    width: 5em;
}

.custom-el-style[b-ypj6wtpyhe] {
    transition: height 0.8s ease, width 0.8s ease; /* Animate height and width */
}


.eiro-toggle-container[b-ypj6wtpyhe] {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    width: 200px;
}

.eiro-toggle-btn[b-ypj6wtpyhe] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #105508;
    border: 2px solid #4caf50;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .eiro-toggle-btn:hover[b-ypj6wtpyhe] {
        background-color: #507508;
        box-shadow: 0 4px 8px rgba(35, 180, 56, 0.6);
    }

.eiro-toggle-btn-active[b-ypj6wtpyhe] {
    background-color: #4caf50;
    border-color: #333333;
}

    .eiro-toggle-btn-active:hover[b-ypj6wtpyhe] {
        background-color: #45a049;
    }

.eiro-toggle-btn i[b-ypj6wtpyhe] {
    margin-right: 8px;
}

.eiro-container[b-ypj6wtpyhe] {
    position: fixed;
    top: 150px;
    right: 20px;
    width: 380px;
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.eiro-container-hidden[b-ypj6wtpyhe] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}




.eiro-item[b-ypj6wtpyhe] {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #005702b3;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .eiro-item:hover[b-ypj6wtpyhe] {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(72, 197, 70, 0.15);
        background-color: rgba(72, 197, 70, 0.6);
    }

.eiro-item-failure[b-ypj6wtpyhe] {
    border-left: 4px solid #f44336;
}

.eiro-item-operating[b-ypj6wtpyhe] {
    border-left: 4px solid #4bf321;
}

.eiro-item-completed[b-ypj6wtpyhe] {
    border-left: 4px solid #4caf50;
}

.eiro-item-waiting[b-ypj6wtpyhe] {
    border-left: 4px solid #ff9800;
}

.eiro-item-text[b-ypj6wtpyhe] {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.eiro-description[b-ypj6wtpyhe] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.eiro-ellipsis[b-ypj6wtpyhe] {
    margin-left: 4px;
    opacity: 0.7;
}

.eiro-btn[b-ypj6wtpyhe] {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

    .eiro-btn:hover[b-ypj6wtpyhe] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .eiro-btn:active[b-ypj6wtpyhe] {
        transform: translateY(1px);
    }

    .eiro-btn[b-ypj6wtpyhe]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .eiro-btn:focus:not(:active)[b-ypj6wtpyhe]::after {
        animation: ripple-b-ypj6wtpyhe 1s ease-out;
    }

@keyframes ripple-b-ypj6wtpyhe {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.eiro-btn-expand[b-ypj6wtpyhe] {
    background-color: #4caf50;
    margin-left: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

.eiro-btn-update[b-ypj6wtpyhe] {
    background-color: #28d545;
}

.eiro-btn-delete[b-ypj6wtpyhe] {
    background-color: #f44336;
}

.eiro-progress-container[b-ypj6wtpyhe] {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.eiro-progress-bar[b-ypj6wtpyhe] {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .eiro-progress-bar[b-ypj6wtpyhe]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100% );
        animation: eiro-progress-shine-b-ypj6wtpyhe 2s infinite;
    }

@keyframes eiro-progress-shine-b-ypj6wtpyhe {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.eiro-progress-text[b-ypj6wtpyhe] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.eiro-btn-group[b-ypj6wtpyhe] {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .eiro-container[b-ypj6wtpyhe] {
        width: calc(100% - 40px);
        max-width: 380px;
        top: 140px;
        right: 10px;
    }

    .eiro-item[b-ypj6wtpyhe] {
        padding: 15px;
    }

    .eiro-btn[b-ypj6wtpyhe] {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eiro-container[b-ypj6wtpyhe] {
        width: calc(100% - 20px);
        max-width: none;
        top: 140px;
        right: 5px;
        padding: 15px;
    }

    .eiro-item[b-ypj6wtpyhe] {
        padding: 12px;
    }

    .eiro-description[b-ypj6wtpyhe] {
        font-size: 13px;
    }

    .eiro-btn[b-ypj6wtpyhe] {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.eiro-item[b-ypj6wtpyhe] {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

    .eiro-item[b-ypj6wtpyhe]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(72, 197, 70, 0.6), rgba(255,255,255,0.7), rgba(72, 197, 70, 0.6));
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
    }

    .eiro-item.item-updated[b-ypj6wtpyhe] {
        background-color: rgba(72, 197, 70, 0.6);
        animation: subtle-pulse-b-ypj6wtpyhe 1.5s ease-in-out;
    }

        .eiro-item.item-updated[b-ypj6wtpyhe]::before {
            animation: shine-b-ypj6wtpyhe 1s ease-out;
        }

@keyframes subtle-pulse-b-ypj6wtpyhe {
    0%, 100% {
        background-color: rgba(72, 187, 120, 0.1);
    }

    50% {
        background-color: rgba(72, 187, 120, 0.2);
    }
}

@keyframes shine-b-ypj6wtpyhe {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.eiro-update-icon[b-ypj6wtpyhe] {
    position: absolute;
    top: 14px;
    right: -50px;
    background-color: #e78e09;
    color: white;
    width: 30px;
    height: 30px;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-out;
}

    .eiro-update-icon i[b-ypj6wtpyhe] {
        margin-top: 5px;
        margin-right: 1px;
    }

    .eiro-update-icon i[b-ypj6wtpyhe] {
        font-size: 18px;
    }

.eiro-item.updated .eiro-update-icon[b-ypj6wtpyhe] {
    right: 10px;
    animation: fadeInOut-b-ypj6wtpyhe 3s ease-in-out;
}

@keyframes fadeInOut-b-ypj6wtpyhe {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}

.responsive-element[b-ypj6wtpyhe] {
    /* Base styles here */
    width: 158px; /* or whatever your default width is */
}

@media screen and (max-width: 557px) {
    .responsive-element[b-ypj6wtpyhe] {
        width: 100%;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Pages/MyImages.razor.rz.scp.css */
/* Reset and base styles */


body[b-y6bhkei5bq] {
    background-color: #121212;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

a[b-y6bhkei5bq] {
    color: #007bff;
    text-decoration: none;
}

    a:hover[b-y6bhkei5bq] {
        color: #0056b3;
    }

/* Container styles */
.container[b-y6bhkei5bq] {
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Search bar and button */
.search-bar[b-y6bhkei5bq] {
    border: 2px solid #333333;
    border-radius: 4px;
    padding: 8px 12px;
    width: 300px;
    background-color: #000000;
    color: #ffffff;
    margin-right: 10px;
}

button[b-y6bhkei5bq] {
    cursor: pointer;
    border: 2px solid #333333;
    border-radius: 4px;
    background-color: #222222;
    color: #ffffff;
    padding: 4px 6px;
    transition: background-color 0.3s ease;
}

    button:hover[b-y6bhkei5bq] {
        background-color: #333333;
    }

    button:focus[b-y6bhkei5bq] {
        outline: none;
    }


.relative-button-align[b-y6bhkei5bq] {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
}

/* Gallery styles */
.gallery[b-y6bhkei5bq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

    .gallery div[b-y6bhkei5bq] {
        border: 2px solid #333333;
        border-radius: 4px;
        background-color: #000000;
        padding: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;

    }

    .gallery img[b-y6bhkei5bq] {
        width: 100%; /* Adjust based on preference */
        height: auto;
        image-rendering: pixelated; /* For pixel art */
        border-radius: 4px;
    }

    /* Text and model info styles */
    .gallery p[b-y6bhkei5bq] {
        color: #ffffff;
        text-align: center;
        margin-top: 8px;
    }

/* Pagination styles */
.pagination[b-y6bhkei5bq] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.page-link[b-y6bhkei5bq] {
    background-color: #222222;
    color: #ffffff;
    padding: 8px 16px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .page-link:hover[b-y6bhkei5bq] {
        background-color: #333333;
    }

    .page-link.active[b-y6bhkei5bq] {
        background-color: #007bff;
        border-color: #007bff;
    }

/* Tooltip styles */
.tooltip[b-y6bhkei5bq] {
    background-color: #222222;
    color: #ffffff;
    border-radius: 4px;
    padding: 8px 12px;
    position: absolute;
    z-index: 10;
    width: max-content;
    max-width: 200px;
}

    .tooltip[b-y6bhkei5bq]::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #222222 transparent transparent transparent;
    }

/* Adjustments for responsiveness */
@media (max-width: 768px) {
    .container[b-y6bhkei5bq] {
        padding: 10px;
    }

    .gallery[b-y6bhkei5bq] {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}


p[b-y6bhkei5bq] {
    margin-bottom: 2px !important;
}

.delete-button i[b-y6bhkei5bq] {
    color: #ff4d4d; /* Red color for the icon */
    transition: color 0.2s ease-in-out;
}

.delete-button:hover i[b-y6bhkei5bq] {
    color: #ff7878; /* Lighter red on hover */
}

.delete-button:focus[b-y6bhkei5bq] {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.5); /* Optional focus ring */
}

.image-request-message-container[b-y6bhkei5bq] {
    background-color: #252a3e; /* A slightly different dark shade from your theme */
    color: #e0e0e0; /* Light text color */
    border: 1px solid #3d4663; /* Subtle border matching other elements */
    border-radius: 8px; /* Rounded corners */
    padding: 15px 25px; /* Vertical and horizontal padding */
    margin: 25px auto; /* Adds space above/below and centers horizontally */
    max-width: 700px; /* Prevents it from becoming too wide on large screens */
    width: fit-content; /* Adjust width to content, respecting max-width */
    min-width: 300px; /* Ensure it has some minimum width */
    text-align: center; /* Centers the text inside the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); /* Subtle shadow for depth */
    transition: opacity 0.3s ease-in-out; /* Smooth fade if message appears/disappears */
}

    /* Style the paragraph inside */
    .image-request-message-container p[b-y6bhkei5bq] {
        margin: 0; /* Remove default paragraph margin */
        font-size: 1.05em; /* Slightly larger text */
        font-weight: 500; /* Medium weight */
        line-height: 1.5; /* Improve readability */
    }

    /* Optional: Add specific styles for error/success messages if you change the class dynamically */
    .image-request-message-container.error[b-y6bhkei5bq] {
        background-color: rgba(244, 67, 54, 0.15); /* Reddish background */
        border-color: #f44336; /* Red border */
        color: #f8d7da; /* Lighter red text */
    }

    .image-request-message-container.success[b-y6bhkei5bq] {
        background-color: rgba(40, 167, 69, 0.15); /* Greenish background */
        border-color: #28a745; /* Green border */
        color: #d4edda; /* Lighter green text */
    }
/* _content/AIMCTextureGenAPI/Shared/Pages/MyReferenceImages.razor.rz.scp.css */
/* Modern CSS for Reference Images Blazor Page */

.ytru-reference-images-container[b-tpxtaf40lj] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    color: #f8fafc;
}

.ytru-header[b-tpxtaf40lj] {
    margin-bottom: 2.5rem;
    text-align: center;
}

    .ytru-header h2[b-tpxtaf40lj] {
        font-size: 2.25rem;
        font-weight: 700;
        background: linear-gradient(90deg, #818cf8 0%, #6366f1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.75rem;
        letter-spacing: -0.02em;
    }

.ytru-subtitle[b-tpxtaf40lj] {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.ytru-card[b-tpxtaf40lj] {
    background-color: #1e293b;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 2.5rem;
    border: 1px solid #334155;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .ytru-card:hover[b-tpxtaf40lj] {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    }

.ytru-card-header[b-tpxtaf40lj] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(51, 65, 85, 0.4);
}

    .ytru-card-header h3[b-tpxtaf40lj] {
        margin: 0;
        font-size: 1.375rem;
        font-weight: 600;
        color: #f1f5f9;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

.ytru-card-body[b-tpxtaf40lj] {
    padding: 2rem;
}

.ytru-alert[b-tpxtaf40lj] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    animation: ytru-fade-in-b-tpxtaf40lj 0.3s ease;
}

.ytru-alert-info[b-tpxtaf40lj] {
    background-color: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.ytru-alert-icon[b-tpxtaf40lj] {
    font-size: 1.25rem;
}

.ytru-alert p[b-tpxtaf40lj] {
    margin: 0;
    font-size: 0.9375rem;
    color: #e0f2fe;
}

.ytru-upload-container[b-tpxtaf40lj] {
    position: relative;
    min-height: 240px;
    border: 2px dashed #475569;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

    .ytru-upload-container:hover[b-tpxtaf40lj] {
        border-color: #818cf8;
        background-color: rgba(99, 102, 241, 0.05);
    }

.ytru-upload-info[b-tpxtaf40lj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.ytru-upload-icon[b-tpxtaf40lj] {
    color: #64748b;
    margin-bottom: 1.5rem;
    animation: ytru-float-b-tpxtaf40lj 3s ease-in-out infinite;
}

.ytru-upload-text h4[b-tpxtaf40lj] {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
}

.ytru-upload-text p[b-tpxtaf40lj] {
    margin: 0 0 1.25rem;
    color: #94a3b8;
    font-size: 1rem;
}

.ytru-upload-requirements[b-tpxtaf40lj] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

    .ytru-upload-requirements li[b-tpxtaf40lj] {
        background-color: #334155;
        padding: 0.625rem 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
        color: #cbd5e1;
        transition: background-color 0.2s;
        border: 1px solid #475569;
    }

        .ytru-upload-requirements li:hover[b-tpxtaf40lj] {
            background-color: #3e4c67;
        }

.ytru-file-input[b-tpxtaf40lj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.ytru-image-gallery[b-tpxtaf40lj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ytru-image-container[b-tpxtaf40lj] {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.ytru-image-wrapper[b-tpxtaf40lj] {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid #334155;
}

    .ytru-image-wrapper:hover[b-tpxtaf40lj] {
        transform: scale(1.03);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: #818cf8;
    }

.ytru-image-container img[b-tpxtaf40lj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: filter 0.3s;
}

.ytru-image-wrapper:hover img[b-tpxtaf40lj] {
    filter: brightness(1.1);
}

.ytru-image-overlay[b-tpxtaf40lj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.7) 0%, rgba(17, 24, 39, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.25rem;
    border-radius: 10px;
}

.ytru-image-wrapper:hover .ytru-image-overlay[b-tpxtaf40lj] {
    opacity: 1;
}

.ytru-delete-btn[b-tpxtaf40lj] {
    background-color: rgba(239, 68, 68, 0.8);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
}

    .ytru-delete-btn:hover[b-tpxtaf40lj] {
        background-color: #ef4444;
        transform: scale(1.1) rotate(-5deg);
    }

    .ytru-delete-btn svg[b-tpxtaf40lj] {
        width: 20px;
        height: 20px;
        stroke: white;
        stroke-width: 2;
    }

.ytru-empty-state[b-tpxtaf40lj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

    .ytru-empty-state svg[b-tpxtaf40lj] {
        color: #64748b;
        margin-bottom: 1.5rem;
        opacity: 0.7;
    }

    .ytru-empty-state h4[b-tpxtaf40lj] {
        margin: 0 0 0.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        color: #f1f5f9;
    }

    .ytru-empty-state p[b-tpxtaf40lj] {
        margin: 0;
        color: #94a3b8;
        max-width: 300px;
    }

.ytru-pagination[b-tpxtaf40lj] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    gap: 0.5rem;
}

.ytru-page-btn[b-tpxtaf40lj] {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #334155;
    color: #cbd5e1;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

    .ytru-page-btn:hover[b-tpxtaf40lj] {
        background-color: #475569;
        transform: translateY(-2px);
    }

.ytru-page-active[b-tpxtaf40lj] {
    background-color: #6366f1;
    color: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

    .ytru-page-active:hover[b-tpxtaf40lj] {
        background-color: #4f46e5;
    }

.ytru-page-nav[b-tpxtaf40lj] {
    background-color: #1f2937;
    border: 1px solid #334155;
}

@keyframes ytru-fade-in-b-tpxtaf40lj {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ytru-float-b-tpxtaf40lj {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ytru-header h2[b-tpxtaf40lj] {
        font-size: 1.75rem;
    }

    .ytru-subtitle[b-tpxtaf40lj] {
        font-size: 1rem;
    }

    .ytru-card-header[b-tpxtaf40lj] {
        padding: 1.25rem 1.5rem;
    }

    .ytru-card-body[b-tpxtaf40lj] {
        padding: 1.5rem;
    }

    .ytru-image-gallery[b-tpxtaf40lj] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .ytru-upload-requirements[b-tpxtaf40lj] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .ytru-image-gallery[b-tpxtaf40lj] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .ytru-delete-btn[b-tpxtaf40lj] {
        width: 36px;
        height: 36px;
    }

    .ytru-page-btn[b-tpxtaf40lj] {
        min-width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Price.razor.rz.scp.css */
/* PricingPage.css - Vibrant Green Theme - Revamped */

body[b-2fwczzv5dg] {
    background-color: #081c0d; /* Deep Forest Green Background */
    color: #c8e6c9; /* Light, slightly desaturated green text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    margin: 0;
    line-height: 1.6;
}

.pricing-page-container[b-2fwczzv5dg] {
    padding: 3rem 1.5rem;
    min-height: 100vh;
}

.pricing-header[b-2fwczzv5dg] {
    margin-bottom: 4rem;
    text-align: center;
}

    .pricing-header .main-title[b-2fwczzv5dg] {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        /* Green gradient similar to original image's top bar */
        background: linear-gradient(135deg, #6EEB83, #32CD32, #2E8B57);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1.2;
    }

    .pricing-header .subtitle[b-2fwczzv5dg] {
        font-size: 1.2rem;
        color: #a5d6a7; /* Lighter green for subtitle */
        margin-bottom: 0.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-header .text-muted-subtle[b-2fwczzv5dg] {
        color: #81c784 !important; /* Brighter green for this specific text */
        font-style: italic;
        font-weight: 500;
        font-size: 0.9rem;
    }

.pricing-grid[b-2fwczzv5dg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pricing-card[b-2fwczzv5dg] {
    background-color: #103a1b; /* Dark Green Card Background */
    border: 1px solid #2a5f3a; /* Green Border */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .pricing-card:hover[b-2fwczzv5dg] {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(14, 68, 25, 0.4); /* Greenish shadow */
    }

    .pricing-card .card-header[b-2fwczzv5dg],
    .pricing-card .card-body[b-2fwczzv5dg],
    .pricing-card .card-footer[b-2fwczzv5dg] {
        padding: 1.75rem;
    }

    .pricing-card .card-header[b-2fwczzv5dg] {
        text-align: center;
        border-bottom: 1px solid #2a5f3a;
    }

        .pricing-card .card-header h3[b-2fwczzv5dg] {
            color: #e8f5e9; /* Very Light Green/Off-White Heading */
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

.price[b-2fwczzv5dg] {
    margin-top: 0.5rem;
}

    .price .amount[b-2fwczzv5dg] {
        font-size: 2.8rem;
        font-weight: 700;
        color: #6EEB83; /* Vibrant Lime Green for Price */
        line-height: 1;
    }

.pricing-card.ultimate .price .amount[b-2fwczzv5dg] {
    color: #81c784; /* Slightly softer bright green for Ultimate */
}

.price .period[b-2fwczzv5dg] {
    color: #a5d6a7; /* Lighter green for period */
    font-size: 1rem;
    margin-left: 0.25rem;
}

.pricing-card .card-body[b-2fwczzv5dg] {
    flex-grow: 1;
}

.features-section[b-2fwczzv5dg] {
    margin-bottom: 1.5rem;
    padding-left: 5px;
}

    .features-section:last-of-type[b-2fwczzv5dg] {
        margin-bottom: 0;
    }

    .features-section h4[b-2fwczzv5dg] {
        color: #e8f5e9;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 1px solid #2a5f3a;
        padding-bottom: 0.5rem;
    }

        .features-section h4 i[b-2fwczzv5dg] {
            font-size: 1.2em;
        }

    .features-section ul[b-2fwczzv5dg] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features-section li[b-2fwczzv5dg] {
        color: #c8e6c9;
        font-size: 0.9rem;
        padding-top: 2px;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        line-height: 1.5;
    }

        .features-section li i[b-2fwczzv5dg] {
            margin-top: 0.15em;
            font-size: 1.1em;
            flex-shrink: 0;
        }

            /* Icon Colors - Green Theme */
            .icon-success[b-2fwczzv5dg], .features-section li i.bi-check[b-2fwczzv5dg], .features-section li i.bi-check-all[b-2fwczzv5dg] {
                color: #6EEB83;
            }
            /* Vibrant Lime Green */
            .icon-danger[b-2fwczzv5dg], .features-section li i.bi-x[b-2fwczzv5dg] {
                color: #FF7875;
            }
            /* Softer Red for better harmony with green */
            .icon-info[b-2fwczzv5dg], .features-section li i.bi-gear-fill[b-2fwczzv5dg], .features-section li i.bi-plugin[b-2fwczzv5dg], .features-section li i.bi-calendar-day[b-2fwczzv5dg] {
                color: #4DB6AC;
            }
            /* Tealish Green */
            .icon-premium[b-2fwczzv5dg], .features-section li i.bi-star-fill[b-2fwczzv5dg] {
                color: #FFD700;
            }
            /* Gold - standard for premium */
            .icon-premium-alt[b-2fwczzv5dg], .features-section li i.bi-gem[b-2fwczzv5dg] {
                color: #AED581;
            }
            /* Light Olive/Lime Green */
            .icon-primary-alt[b-2fwczzv5dg], .features-section li i.bi-infinity[b-2fwczzv5dg] {
                color: #6EEB83;
            }

/* Specific Feature Highlights */
.feature-highlight-warn[b-2fwczzv5dg] {
    color: #FFCA28;
    font-weight: 500;
}
    /* Amber/Yellow for warning */
    .feature-highlight-warn i[b-2fwczzv5dg] {
        color: #FFCA28 !important;
    }

.feature-highlight-danger[b-2fwczzv5dg] {
    color: #FF7875;
    font-weight: 500;
}

    .feature-highlight-danger i[b-2fwczzv5dg] {
        color: #FF7875 !important;
    }

.feature-highlight-success[b-2fwczzv5dg] {
    color: #6EEB83;
    font-weight: 500;
}

    .feature-highlight-success i[b-2fwczzv5dg] {
        color: #6EEB83 !important;
    }

.feature-super-gold[b-2fwczzv5dg],
.feature-extra-gold[b-2fwczzv5dg] {
    font-weight: 600;
    background: linear-gradient(135deg, #FFDF70, #FFB84D); /* Softer Gold Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-extra-gold[b-2fwczzv5dg] {
    font-weight: 700;
    font-size: 1.03em;
}

    .feature-super-gold i[b-2fwczzv5dg],
    .feature-extra-gold i[b-2fwczzv5dg] {
        background: linear-gradient(135deg, #FFDF70, #FFB84D);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Generation Details Styling - REVISED for better alignment */
.generation-details-item[b-2fwczzv5dg] {
    /* This LI itself is a flex container, adjust its children directly */
    flex-direction: column !important; /* Ensure children stack vertically */
    align-items: stretch !important; /* Make children take full width */
    padding: 0.75rem 0.5rem 0.75rem 1rem; /* Adjusted padding */
    margin: 0.5rem 0; /* Standard vertical margin, no horizontal negative margin */
    background-color: rgba(10, 40, 18, 0.7); /* Darker, slightly transparent green */
    border-left: 3px solid #6EEB83; /* Vibrant green accent border */
    border-radius: 0 8px 8px 0; /* Rounded corners on the right */
}

.generation-allowance[b-2fwczzv5dg] {
    margin-bottom: 0.75rem;
    width: 100%; /* Ensure it takes full width of its parent li */
}

    .generation-allowance:last-child[b-2fwczzv5dg] {
        margin-bottom: 0;
    }

.allowance-title[b-2fwczzv5dg] {
    font-weight: 600;
    color: #e8f5e9; /* Light green title */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

    .allowance-title i[b-2fwczzv5dg] {
        font-size: 1.2em;
    }

.model-list[b-2fwczzv5dg] {
    list-style: none;
    padding-left: 0.25rem; /* Indent model list under title */
    margin: 0;
}

    .model-list li[b-2fwczzv5dg] {
        font-size: 0.85rem;
        color: #a5d6a7; /* Muted green for details */
        padding: 0.15rem 0;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

        .model-list li .model-badge[b-2fwczzv5dg] {
            margin-right: 0.2rem;
        }

.model-badge[b-2fwczzv5dg] {
    display: inline-block;
    padding: 0.15em 0.4em;
    font-size: 0.8em;
    font-weight: 600;
    border-radius: 4px;
    color: #081c0d; /* Dark text for contrast on light green badges */
    line-height: 1.2;
}

    .model-badge.basic[b-2fwczzv5dg] {
        background-color: #81c784;
    }
    /* Muted Green */
    .model-badge.extreme[b-2fwczzv5dg] {
        background-color: #AED581;
    }
    /* Light Olive/Lime */
    .model-badge.top-tier[b-2fwczzv5dg] {
        background-color: #6EEB83;
    }
    /* Vibrant Lime */
    .model-badge.elite[b-2fwczzv5dg] {
        background-color: #4DB6AC;
    }
/* Tealish */

.quality-text[b-2fwczzv5dg] {
    font-style: italic;
    font-size: 0.9em;
}

    .quality-text.high[b-2fwczzv5dg] {
        color: #AED581;
        font-weight: 500;
    }

    .quality-text.top[b-2fwczzv5dg] {
        color: #6EEB83;
        font-weight: 600;
    }

    .quality-text.absurd[b-2fwczzv5dg] {
        color: #4DB6AC;
        font-weight: 600;
    }

.performance-metrics[b-2fwczzv5dg] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a5f3a;
}

.metric[b-2fwczzv5dg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    color: #a5d6a7; /* Muted green */
    font-size: 0.85rem;
}

    .metric span:first-child[b-2fwczzv5dg] {
        color: #c8e6c9; /* Main text color */
    }

.stars[b-2fwczzv5dg] {
    color: #FFD700; /* Gold */
    font-size: 1.1em;
    letter-spacing: 0.05em;
}

    .stars .half-star[b-2fwczzv5dg] {
        color: #FFD700;
    }

/* Badges */
.badge-popular[b-2fwczzv5dg], .badge-best-value[b-2fwczzv5dg], .badge-special[b-2fwczzv5dg] {
    position: absolute;
    top: 20px;
    right: -38px;
    transform: rotate(45deg);
    padding: 0.3rem 3.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #081c0d; /* Dark text on badges */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 1;
}

.badge-popular[b-2fwczzv5dg] {
    background-color: #6EEB83;
}
/* Vibrant Lime */
.badge-best-value[b-2fwczzv5dg] {
    background-color: #81c784;
}
/* Softer Bright Green */
.badge-special[b-2fwczzv5dg] {
    background-color: #FFCA28;
}
/* Amber/Yellow */

.pricing-card.featured[b-2fwczzv5dg] {
    border: 2px solid #6EEB83;
}

.pricing-card.ultimate[b-2fwczzv5dg] {
    border: 2px solid #81c784;
}

.pricing-card.special-option[b-2fwczzv5dg] {
    border: 2px solid #FFCA28;
}


.pricing-card .card-footer[b-2fwczzv5dg] {
    border-top: 1px solid #2a5f3a;
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-select-plan[b-2fwczzv5dg] {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    background-color: #2E8B57; /* Default Sea Green Button */
    color: #e8f5e9; /* Light text */
}

    .btn-select-plan:hover[b-2fwczzv5dg] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(14, 68, 25, 0.3); /* Greenish shadow */
    }

.pricing-card:not(.featured):not(.ultimate):not(.special-option) .btn-select-plan:hover[b-2fwczzv5dg] {
    background-color: #3CB371; /* Medium Sea Green for default hover */
}

.btn-select-plan.btn-featured[b-2fwczzv5dg],
.pricing-card.featured .btn-select-plan[b-2fwczzv5dg] {
    background-color: #6EEB83; /* Vibrant Lime */
    color: #081c0d; /* Dark text for contrast */
}

    .btn-select-plan.btn-featured:hover[b-2fwczzv5dg],
    .pricing-card.featured .btn-select-plan:hover[b-2fwczzv5dg] {
        background-color: #89f09f; /* Lighter Lime */
    }

.btn-select-plan.btn-ultimate[b-2fwczzv5dg],
.pricing-card.ultimate .btn-select-plan[b-2fwczzv5dg] {
    background-color: #81c784; /* Softer Bright Green */
    color: #081c0d; /* Dark text */
}

    .btn-select-plan.btn-ultimate:hover[b-2fwczzv5dg],
    .pricing-card.ultimate .btn-select-plan:hover[b-2fwczzv5dg] {
        background-color: #98d89b; /* Lighter version */
    }

.btn-select-plan.btn-special[b-2fwczzv5dg],
.pricing-card.special-option .btn-select-plan[b-2fwczzv5dg] {
    background-color: #FFCA28; /* Amber/Yellow */
    color: #1A202C;
}

    .btn-select-plan.btn-special:hover[b-2fwczzv5dg],
    .pricing-card.special-option .btn-select-plan:hover[b-2fwczzv5dg] {
        background-color: #ffd75e;
    }

.notice-section[b-2fwczzv5dg] {
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 202, 40, 0.15); /* Warning color with more alpha */
    border-left: 3px solid #FFCA28; /* Amber/Yellow */
    border-radius: 6px;
}

    .notice-section .text-warning[b-2fwczzv5dg] {
        color: #FFCA28 !important;
        font-weight: 500;
        font-size: 0.9rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .notice-section .text-warning i[b-2fwczzv5dg] {
            font-size: 1.2em;
            color: #FFCA28 !important;
        }

/* Modal Styling */
.modal-content[b-2fwczzv5dg] {
    background-color: #103a1b; /* Card Background */
    border: 1px solid #2a5f3a;
    border-radius: 10px;
    color: #c8e6c9;
}

.modal-header[b-2fwczzv5dg] {
    border-bottom: 1px solid #2a5f3a;
    padding: 1.25rem 1.5rem;
}

    .modal-header .modal-title[b-2fwczzv5dg] {
        color: #e8f5e9;
        font-size: 1.2rem;
    }

.btn-close-white[b-2fwczzv5dg] { /* For Bootstrap's default white close button */
    filter: brightness(0) invert(1) opacity(0.8); /* Make it visible on dark green */
}

.modal-body[b-2fwczzv5dg] {
    padding: 1.5rem;
}

.payment-amount-modal[b-2fwczzv5dg] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6EEB83; /* Vibrant Lime Green */
    margin-bottom: 1.5rem;
    text-align: center;
}

#paypal-button-container[b-2fwczzv5dg] {
    min-height: 45px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid[b-2fwczzv5dg] {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-page-container[b-2fwczzv5dg] {
        padding: 2rem 1rem;
    }

    .pricing-header .main-title[b-2fwczzv5dg] {
        font-size: 2.4rem;
    }

    .pricing-header .subtitle[b-2fwczzv5dg] {
        font-size: 1.1rem;
    }

    .badge-popular[b-2fwczzv5dg], .badge-best-value[b-2fwczzv5dg], .badge-special[b-2fwczzv5dg] {
        right: -42px;
        padding: 0.25rem 3rem;
        font-size: 0.7rem;
    }

    .price .amount[b-2fwczzv5dg] {
        font-size: 2.4rem;
    }

    .features-section li[b-2fwczzv5dg] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid[b-2fwczzv5dg] {
        grid-template-columns: 1fr;
    }

    .pricing-card .card-header h3[b-2fwczzv5dg] {
        font-size: 1.4rem;
    }

    .price .amount[b-2fwczzv5dg] {
        font-size: 2.2rem;
    }

    .btn-select-plan[b-2fwczzv5dg] {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
}

/* Custom Scrollbar - Green Theme */
[b-2fwczzv5dg]::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

[b-2fwczzv5dg]::-webkit-scrollbar-track {
    background: #081c0d; /* Page background */
}

[b-2fwczzv5dg]::-webkit-scrollbar-thumb {
    background: #2a5f3a; /* Card border color */
    border-radius: 5px;
    border: 2px solid #081c0d;
}

    [b-2fwczzv5dg]::-webkit-scrollbar-thumb:hover {
        background: #6EEB83; /* Vibrant accent on hover */
    }


.icon-primary-alt[b-2fwczzv5dg] {
    color: #6EEB83; /* Example: Vibrant Lime Green */
}

.icon-alt-info[b-2fwczzv5dg] {
    color: #AED581; /* Example: Light Olive/Lime Green - adjust as needed */
}
/* _content/AIMCTextureGenAPI/Shared/Pages/Status.razor.rz.scp.css */
.gallery[b-cr5r0kmb19] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

    .gallery img[b-cr5r0kmb19] {
        margin: 10px;
        width: 200px;
        height: 200px;
        object-fit: cover;
    }

.pagination[b-cr5r0kmb19] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-link[b-cr5r0kmb19] {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    margin: 0 4px;
    cursor: pointer;
}

    .page-link:hover[b-cr5r0kmb19] {
        background-color: #ddd;
    }

    .page-link.active[b-cr5r0kmb19] {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
    }
/* _content/AIMCTextureGenAPI/Shared/Preset/AnimationGeneratorPreset.razor.rz.scp.css */
.animation-preset-container[b-v19mig1p45] {
    background-color: #1e293b; /* Dark blue-gray background */
    border-radius: 16px;
    padding: 24px;
    color: #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #3d4663;
}

.preset-header[b-v19mig1p45] {
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #3d4663;
    padding-bottom: 16px;
}

    .preset-header h2[b-v19mig1p45] {
        color: #6aeb2d; /* Vibrant Green */
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

.preset-description[b-v19mig1p45] {
    color: #b0b0c0;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.preset-content[b-v19mig1p45] {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 24px;
}

/* Panels */
.settings-panel[b-v19mig1p45], .output-panel[b-v19mig1p45] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #3d4663;
    display: flex;
    flex-direction: column;
}

.setting-group[b-v19mig1p45] {
    margin-bottom: 20px;
}

    .setting-group label[b-v19mig1p45] {
        display: block;
        color: #6aeb2d;
        margin-bottom: 8px;
        font-weight: 600;
    }

/* Upload Area */
.upload-hint[b-v19mig1p45] {
    font-size: 0.8rem;
    color: #b0b0c0;
    margin-bottom: 10px;
}

.file-input[b-v19mig1p45] {
    display: none; /* CRITICAL FIX: Hides the default input */
}

.upload-btn[b-v19mig1p45] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: #333745;
    border: 2px dashed #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .upload-btn:hover[b-v19mig1p45] {
        border-color: #6aeb2d;
        background-color: rgba(106, 235, 45, 0.1);
    }

.uploaded-image-preview[b-v19mig1p45] {
    margin-top: 15px;
    text-align: center;
    background-color: #1a2030;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #3d4663;
}

    .uploaded-image-preview img[b-v19mig1p45] {
        max-width: 128px;
        max-height: 128px;
        border-radius: 4px;
        image-rendering: pixelated;
    }

    .uploaded-image-preview span[b-v19mig1p45] {
        display: block;
        font-size: 0.8rem;
        color: #b0b0c0;
        margin-top: 5px;
    }

/* Form Controls */
.prompt-textarea[b-v19mig1p45] {
    width: 100%;
    padding: 12px;
    background-color: #333745;
    border: 1px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
}

.generate-btn[b-v19mig1p45] {
    width: 100%;
    padding: 15px;
    background-color: #6aeb2d;
    border: none;
    color: #1a2030;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto; /* Pushes button to the bottom */
}

    .generate-btn:hover:not(:disabled)[b-v19mig1p45] {
        background-color: #7dff44;
        transform: translateY(-2px);
    }

    .generate-btn:disabled[b-v19mig1p45] {
        background-color: #444a5c;
        color: #b0b0c0;
        cursor: not-allowed;
    }

/* History & Preview */
.history-section h3[b-v19mig1p45], .preview-section h3[b-v19mig1p45] {
    color: #6aeb2d;
    margin-bottom: 15px;
}

.history-list[b-v19mig1p45] {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.history-item[b-v19mig1p45] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .history-item:hover[b-v19mig1p45] {
        background-color: #333745;
    }

    .history-item.active[b-v19mig1p45] {
        background-color: #6aeb2d;
        color: #1a2030;
    }

        .history-item.active p[b-v19mig1p45], .history-item.active small[b-v19mig1p45] {
            color: #1a2030;
        }

    .history-item img[b-v19mig1p45] {
        width: 64px;
        height: 64px;
        object-fit: contain;
        border-radius: 4px;
        image-rendering: pixelated;
        background-color: #1a2030;
    }

    .history-item p[b-v19mig1p45] {
        margin: 0;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .history-item small[b-v19mig1p45] {
        color: #b0b0c0;
        font-size: 0.8rem;
    }

.no-history[b-v19mig1p45] {
    text-align: center;
    color: #b0b0c0;
    padding: 20px;
}

.preview-canvas-container[b-v19mig1p45] {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #1a2030;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#animation-preview-canvas[b-v19mig1p45] {
    max-width: 100%;
    max-height: 100%;
    image-rendering: pixelated;
}

.preview-controls[b-v19mig1p45] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edit-btn[b-v19mig1p45] {
    padding: 10px 15px;
    background-color: #89b4fa;
    color: #1a2030;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* Frame Editor Modal */
.frame-editor-modal-overlay[b-v19mig1p45] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.frame-editor-modal[b-v19mig1p45] {
    width: 90vw;
    height: 90vh;
    background-color: #1a2030;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.frame-editor-header[b-v19mig1p45] {
    padding: 15px 20px;
    border-bottom: 1px solid #3d4663;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frame-editor-content[b-v19mig1p45] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.editor-main-area[b-v19mig1p45] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    overflow: auto;
}

#frame-editor-canvas[b-v19mig1p45] {
    image-rendering: pixelated;
    cursor: crosshair;
}

.editor-sidebar[b-v19mig1p45] {
    width: 280px;
    background-color: #252a3e;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.editor-toolbar[b-v19mig1p45] {
    margin-bottom: 15px;
}

.tool-group[b-v19mig1p45] {
    margin-bottom: 15px;
}

.history-buttons[b-v19mig1p45] {
    display: flex;
    gap: 10px;
}

    .history-buttons button[b-v19mig1p45] {
        flex: 1;
    }




.frame-editor-footer[b-v19mig1p45] {
    padding: 15px 20px;
    border-top: 1px solid #3d4663;
    text-align: right;
}

.export-btn[b-v19mig1p45] {
    padding: 10px 20px;
    background-color: #6aeb2d;
    color: #1a2030;
    border: none;
    border-radius: 6px;
    font-weight: 600;
}

/* Radzen Overrides */
[b-v19mig1p45] .rz-dropdown {
    background-color: #333745 !important;
    border: 1px solid #444a5c !important;
}

[b-v19mig1p45] .rz-dropdown-label {
    color: #e0e0e0 !important;
}

[b-v19mig1p45] .rz-slider {
    height: 8px !important;
}

[b-v19mig1p45] .rz-slider-range {
    background-color: #6aeb2d !important;
}

[b-v19mig1p45] .rz-slider-handle {
    background-color: #6aeb2d !important;
    border: 2px solid #1a2030 !important;
}

[b-v19mig1p45] .rz-textarea {
    background-color: #333745 !important;
    border: 1px solid #444a5c !important;
    color: #e0e0e0 !important;
}

[b-v19mig1p45] .rz-checkbox-box {
    background-color: #333745 !important;
    border: 1px solid #444a5c !important;
}

[b-v19mig1p45] .rz-state-active .rz-checkbox-box {
    background-color: #6aeb2d !important;
}
[b-v19mig1p45] .rz-fileupload-files {
    display: none !important;
}

[b-v19mig1p45] .rz-file upload-files {
    display: none !important;
}

[b-v19mig1p45] #animation-file-input {
    display: none !important;
}

.upload-area[b-v19mig1p45] {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .upload-area.drag-over[b-v19mig1p45] {
        border-color: #007bff;
        background-color: #f8f9fa;
    }

.upload-btn[b-v19mig1p45] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #007bff;
}


.tool-buttons[b-v19mig1p45] {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tool-btn[b-v19mig1p45] {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background: #f8f9fa;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

    .tool-btn.active[b-v19mig1p45] {
        background: #007bff;
        color: white;
        border-color: #0056b3;
    }

    .tool-btn:hover:not(.active)[b-v19mig1p45] {
        background: #e9ecef;
    }

.frame-thumbnails[b-v19mig1p45] {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Keep 2 columns */
    gap: 8px;
    overflow-y: auto;
    padding: 5px;
    box-sizing: border-box; /* Ensure padding is included in width */
}

[b-v19mig1p45] .frame-thumbnail {
    width: 100%;
    min-width: 0; /* Allow shrinking below content size */
    aspect-ratio: 1 / 1;
    border: 2px solid #444a5c;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

    [b-v19mig1p45] .frame-thumbnail.active {
        border-color: #6aeb2d;
    }

    [b-v19mig1p45] .frame-thumbnail canvas {
        width: calc(100% - 4px) !important; /* Account for border */
        height: auto !important;
        max-height: calc(100% - 20px);
        image-rendering: pixelated;
        object-fit: contain;
    }

    [b-v19mig1p45] .frame-thumbnail div {
        font-size: 10px !important;
        color: #b0b0c0;
        text-align: center;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

.custom-slider[b-v19mig1p45] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #444a5c;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    cursor: pointer;
}

    .custom-slider:hover[b-v19mig1p45] {
        opacity: 1;
    }

    .custom-slider[b-v19mig1p45]::-webkit-slider-thumb {
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6aeb2d;
        cursor: pointer;
        border: 2px solid #1a2030;
    }

    .custom-slider[b-v19mig1p45]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6aeb2d;
        cursor: pointer;
        border: 2px solid #1a2030;
    }

.slider-value[b-v19mig1p45] {
    display: inline-block;
    margin-top: 5px;
    color: #b0b0c0;
    font-size: 0.9rem;
}
/* _content/AIMCTextureGenAPI/Shared/Preset/Dialog/AlertDialog.razor.rz.scp.css */
.alert-dialog[b-lr5t1ucn53] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.alert-content[b-lr5t1ucn53] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 24px;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #3d4663;
}

.alert-header[b-lr5t1ucn53] {
    margin-bottom: 15px;
    border-bottom: 1px solid #3d4663;
    padding-bottom: 10px;
}

    .alert-header h3[b-lr5t1ucn53] {
        color: #6aeb2d;
        margin: 0;
        font-size: 20px;
        text-align: center;
    }

.alert-body[b-lr5t1ucn53] {
    margin-bottom: 20px;
}

    .alert-body p[b-lr5t1ucn53] {
        color: #e0e0e0;
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
    }

.alert-actions[b-lr5t1ucn53] {
    display: flex;
    justify-content: center;
}

.alert-button[b-lr5t1ucn53] {
    padding: 10px 30px;
    background-color: #6aeb2d;
    color: #1a2030;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .alert-button:hover[b-lr5t1ucn53] {
        background-color: #7dff44;
        transform: translateY(-2px);
    }

    .alert-button:active[b-lr5t1ucn53] {
        transform: translateY(0);
    }

    .alert-button:focus[b-lr5t1ucn53] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(106, 235, 45, 0.3);
    }

@media (max-width: 576px) {
    .alert-content[b-lr5t1ucn53] {
        width: 90%;
        min-width: auto;
        padding: 20px;
    }

    .alert-button[b-lr5t1ucn53] {
        padding: 8px 20px;
        font-size: 14px;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Preset/Dialog/ConfirmDialog.razor.rz.scp.css */
.confirm-dialog[b-rjr9uhqyi6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.confirm-content[b-rjr9uhqyi6] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 24px;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #3d4663;
}

.confirm-header[b-rjr9uhqyi6] {
    margin-bottom: 15px;
    border-bottom: 1px solid #3d4663;
    padding-bottom: 10px;
}

    .confirm-header h3[b-rjr9uhqyi6] {
        color: #6aeb2d;
        margin: 0;
        font-size: 20px;
        text-align: center;
    }

.confirm-body[b-rjr9uhqyi6] {
    margin-bottom: 20px;
}

    .confirm-body p[b-rjr9uhqyi6] {
        color: #e0e0e0;
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
    }

.confirm-actions[b-rjr9uhqyi6] {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.confirm-button[b-rjr9uhqyi6], .cancel-button[b-rjr9uhqyi6] {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.confirm-button[b-rjr9uhqyi6] {
    background-color: #6aeb2d;
    color: #1a2030;
}

.cancel-button[b-rjr9uhqyi6] {
    background-color: #444a5c;
    color: #e0e0e0;
}

.confirm-button:hover[b-rjr9uhqyi6] {
    background-color: #7dff44;
    transform: translateY(-2px);
}

.cancel-button:hover[b-rjr9uhqyi6] {
    background-color: #515873;
    transform: translateY(-2px);
}

.confirm-button:active[b-rjr9uhqyi6], .cancel-button:active[b-rjr9uhqyi6] {
    transform: translateY(0);
}

.confirm-button:focus[b-rjr9uhqyi6], .cancel-button:focus[b-rjr9uhqyi6] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 235, 45, 0.3);
}

@media (max-width: 576px) {
    .confirm-content[b-rjr9uhqyi6] {
        width: 90%;
        min-width: auto;
        padding: 20px;
    }

    .confirm-button[b-rjr9uhqyi6], .cancel-button[b-rjr9uhqyi6] {
        padding: 8px 16px;
        font-size: 14px;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Preset/Dialog/LoadingDialog.razor.rz.scp.css */
.loading-dialog[b-bctbpgcl72] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.loading-content[b-bctbpgcl72] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 30px;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #3d4663;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .loading-content h3[b-bctbpgcl72] {
        color: #6aeb2d;
        margin: 15px 0 0 0;
        font-size: 20px;
        text-align: center;
    }

.loading-message[b-bctbpgcl72] {
    color: #b0b0c0;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.loading-spinner[b-bctbpgcl72] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(106, 235, 45, 0.3);
    border-radius: 50%;
    border-top-color: #6aeb2d;
    animation: spin-b-bctbpgcl72 1s linear infinite, pulse-b-bctbpgcl72 2s infinite;
}

@keyframes spin-b-bctbpgcl72 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-bctbpgcl72 {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 235, 45, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(106, 235, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 235, 45, 0);
    }
}

@media (max-width: 576px) {
    .loading-content[b-bctbpgcl72] {
        width: 80%;
        min-width: auto;
        padding: 20px;
    }

    .loading-spinner[b-bctbpgcl72] {
        width: 30px;
        height: 30px;
    }

    .loading-content h3[b-bctbpgcl72] {
        font-size: 18px;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Preset/Dialog/TextureDialog.razor.rz.scp.css */
/* Dialog overlay */
.dialog-overlay[b-bwp9huqu4v] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Texture Dialog Component */
.texture-dialog[b-bwp9huqu4v] {
    background-color: #272727;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    color: #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: dialog-fade-in-b-bwp9huqu4v 0.3s ease-out;
    overflow: hidden;
}

.texture-dialog-header[b-bwp9huqu4v] {
    padding: 15px 20px;
    border-bottom: 1px solid #444444;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333333;
}

    .texture-dialog-header h3[b-bwp9huqu4v] {
        margin: 0;
        color: #55b44c;
        font-size: 20px;
        font-weight: 600;
    }

.texture-dialog-close[b-bwp9huqu4v] {
    background: none;
    border: none;
    color: #888888;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

    .texture-dialog-close:hover[b-bwp9huqu4v] {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

.texture-dialog-content[b-bwp9huqu4v] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.texture-dialog-image-container[b-bwp9huqu4v] {
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #444444;
    display: flex;
    justify-content: center;
    width: 100%;
}

.texture-dialog-image[b-bwp9huqu4v] {
    max-width: 100%;
    max-height: 400px;
    image-rendering: pixelated;
    object-fit: contain;
}

.texture-dialog-actions[b-bwp9huqu4v] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #444444;
}

.texture-dialog-button[b-bwp9huqu4v] {
    padding: 10px 15px;
    background-color: #55b44c;
    border: none;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .texture-dialog-button:hover[b-bwp9huqu4v] {
        background-color: #68c05e;
        transform: translateY(-2px);
    }

    .texture-dialog-button:active[b-bwp9huqu4v] {
        transform: translateY(0);
    }

    .texture-dialog-button.secondary[b-bwp9huqu4v] {
        background-color: #444444;
    }

        .texture-dialog-button.secondary:hover[b-bwp9huqu4v] {
            background-color: #555555;
        }

/* Dialog animation */
@keyframes dialog-fade-in-b-bwp9huqu4v {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dialog information */
.texture-dialog-info[b-bwp9huqu4v] {
    width: 100%;
    background-color: #333333;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
}

    .texture-dialog-info h4[b-bwp9huqu4v] {
        margin-top: 0;
        margin-bottom: 10px;
        color: #55b44c;
    }

.texture-dialog-info-row[b-bwp9huqu4v] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.texture-dialog-info-label[b-bwp9huqu4v] {
    font-weight: 600;
    color: #b0b0b0;
}

.texture-dialog-info-value[b-bwp9huqu4v] {
    color: #e0e0e0;
}

/* Dialog responsiveness */
@media (max-width: 600px) {
    .texture-dialog[b-bwp9huqu4v] {
        width: 95%;
        max-height: 90vh;
    }

    .texture-dialog-header[b-bwp9huqu4v] {
        padding: 12px 15px;
    }

    .texture-dialog-content[b-bwp9huqu4v] {
        padding: 15px;
    }

    .texture-dialog-actions[b-bwp9huqu4v] {
        flex-direction: column;
    }

    .texture-dialog-button[b-bwp9huqu4v] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Preset/GuiEditorPreset.razor.rz.scp.css */
:host[b-90j469inq8], div[b-90j469inq8], span[b-90j469inq8], p[b-90j469inq8], a[b-90j469inq8], button[b-90j469inq8], input[b-90j469inq8], textarea[b-90j469inq8], label[b-90j469inq8], form[b-90j469inq8],
section[b-90j469inq8], article[b-90j469inq8], header[b-90j469inq8], footer[b-90j469inq8], nav[b-90j469inq8], aside[b-90j469inq8], main[b-90j469inq8], figure[b-90j469inq8], figcaption[b-90j469inq8],
address[b-90j469inq8], blockquote[b-90j469inq8], pre[b-90j469inq8], code[b-90j469inq8], ol[b-90j469inq8], ul[b-90j469inq8], li[b-90j469inq8], dl[b-90j469inq8], dt[b-90j469inq8], dd[b-90j469inq8], table[b-90j469inq8], tr[b-90j469inq8], td[b-90j469inq8], th[b-90j469inq8],
thead[b-90j469inq8], tbody[b-90j469inq8], tfoot[b-90j469inq8], fieldset[b-90j469inq8], legend[b-90j469inq8] {
    all: revert;
}

/* Heading elements */
h1[b-90j469inq8], h2[b-90j469inq8], h3[b-90j469inq8], h4[b-90j469inq8], h5[b-90j469inq8], h6[b-90j469inq8] {
    all: revert !important;
}

/* Buttons */

/* Form controls */


/* Checkboxes and radio buttons */
[type="checkbox"][b-90j469inq8],
[type="radio"][b-90j469inq8] {
    all: revert !important;
}

/* Dropdown/select */


/* Lists */
ul[b-90j469inq8], ol[b-90j469inq8] {
    all: revert !important;
}

li[b-90j469inq8] {
    all: revert !important;
}

/* Tables */
table[b-90j469inq8], th[b-90j469inq8], td[b-90j469inq8] {
    all: revert !important;
}

/* Links */
a[b-90j469inq8], a:visited[b-90j469inq8], a:hover[b-90j469inq8], a:active[b-90j469inq8] {
    all: revert !important;
}

/* Images */
img[b-90j469inq8] {
    all: revert !important;
}

/* Cards and panels */
.card[b-90j469inq8],
.panel[b-90j469inq8],
.box[b-90j469inq8] {
    all: revert !important;
}

/* Modal/dialog */
.modal[b-90j469inq8],
.dialog[b-90j469inq8],
.popup[b-90j469inq8] {
    all: revert !important;
}

/* Tabs */
.tab[b-90j469inq8],
.tabs-header[b-90j469inq8],
.tab-content[b-90j469inq8] {
    all: revert !important;
}

/* Accordion */
.accordion[b-90j469inq8],
.accordion-header[b-90j469inq8],
.accordion-body[b-90j469inq8] {
    all: revert !important;
}

/* Typography */
.text-primary[b-90j469inq8], .text-secondary[b-90j469inq8], .text-success[b-90j469inq8], .text-danger[b-90j469inq8],
.text-warning[b-90j469inq8], .text-info[b-90j469inq8], .text-light[b-90j469inq8], .text-dark[b-90j469inq8] {
    all: revert !important;
}

/* Badges */
.badge[b-90j469inq8] {
    all: revert !important;
}

/* Alerts/notices */
.alert[b-90j469inq8],
.notice[b-90j469inq8],
.message[b-90j469inq8] {
    all: revert !important;
}

/* Progress bar */
progress[b-90j469inq8],
.progress[b-90j469inq8] {
    all: revert !important;
}

/* Navigation */
nav[b-90j469inq8],
.nav[b-90j469inq8],
.navbar[b-90j469inq8] {
    all: revert !important;
}

/* Tooltips */
[data-tooltip][b-90j469inq8],
.tooltip[b-90j469inq8] {
    all: revert !important;
}

/* Icons */
.icon[b-90j469inq8],
i[class*="icon-"][b-90j469inq8],
i[class*="fa-"][b-90j469inq8] {
    all: revert !important;
}

/* Grid system */
.container[b-90j469inq8],
.row[b-90j469inq8],
.col[b-90j469inq8],
[class*="col-"][b-90j469inq8] {
    all: revert !important;
}


.mc-gui-edit-editor-container *[b-90j469inq8] {
    --primary-color: #7170E6;
    --dark-primary: #5D5CDE;
    --light-bg: #252525;
    --dark-bg: #121212;
    --light-text: #E0E0E0;
    --dark-text: #F5F5F5;
    --light-panel: #333333;
    --dark-panel: #1E1E1E;
    --light-border: #555555;
    --dark-border: #777777;
    --toolbar-width: 48px;
    --icon-size: 32px;
}

.mc-gui-edit-apply-image-btn[b-90j469inq8] {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    display: none;
}

    .mc-gui-edit-apply-image-btn button[b-90j469inq8] {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

        .mc-gui-edit-apply-image-btn button:hover[b-90j469inq8] {
            background-color: var(--dark-primary);
        }

/* Template browser styles */
.mc-gui-edit-template-browser[b-90j469inq8] {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 10px;
}

body.dark .mc-gui-edit-template-browser[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-template-search[b-90j469inq8] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .mc-gui-edit-template-search input[b-90j469inq8] {
        flex: 1;
        padding: 8px;
        border-radius: 4px;
        border: 1px solid var(--light-border);
        font-size: 14px;
    }

body.dark .mc-gui-edit-template-search input[b-90j469inq8] {
    background-color: #2a2a2a;
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.mc-gui-edit-template-grid[b-90j469inq8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.mc-gui-edit-template-item[b-90j469inq8] {
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.dark .mc-gui-edit-template-item[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-template-item:hover[b-90j469inq8] {
    border-color: var(--primary-color);
    background-color: rgba(93, 92, 222, 0.1);
}

.mc-gui-edit-template-preview[b-90j469inq8] {
    width: 100px;
    height: 80px;
    margin-bottom: 5px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

body.dark .mc-gui-edit-template-preview[b-90j469inq8] {
    background-color: #2a2a2a;
    border-color: #444;
}

.mc-gui-edit-template-preview canvas[b-90j469inq8] {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.mc-gui-edit-template-name[b-90j469inq8] {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.mc-gui-edit-template-description[b-90j469inq8] {
    font-size: 10px;
    text-align: center;
    color: #666;
    margin-top: 2px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.dark .mc-gui-edit-template-description[b-90j469inq8] {
    color: #aaa;
}

.mc-gui-edit-template-pagination[b-90j469inq8] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.mc-gui-edit-page-btn[b-90j469inq8] {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--light-panel);
    border: 1px solid var(--light-border);
    cursor: pointer;
}

body.dark .mc-gui-edit-page-btn[b-90j469inq8] {
    background: var(--dark-panel);
    border-color: var(--dark-border);
}

.mc-gui-edit-page-btn:hover:not(.active)[b-90j469inq8] {
    background-color: rgba(93, 92, 222, 0.1);
}

.mc-gui-edit-page-btn.active[b-90j469inq8] {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--dark-primary);
}

.mc-gui-edit-page-btn:disabled[b-90j469inq8] {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--light-panel);
}

body.dark .mc-gui-edit-page-btn:disabled[b-90j469inq8] {
    background: var(--dark-panel);
}

.mc-gui-edit-template-category[b-90j469inq8] {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.mc-gui-edit-category-btn[b-90j469inq8] {
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--light-panel);
    border: 1px solid var(--light-border);
    white-space: nowrap;
    font-size: 12px;
    cursor: pointer;
}

body.dark .mc-gui-edit-category-btn[b-90j469inq8] {
    background: var(--dark-panel);
    border-color: var(--dark-border);
}

.mc-gui-edit-category-btn.active[b-90j469inq8] {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--dark-primary);
}

.mc-gui-edit-category-btn:hover:not(.active)[b-90j469inq8] {
    background-color: rgba(93, 92, 222, 0.1);
}

*[b-90j469inq8] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body[b-90j469inq8] {
    background-color: var(--light-bg);
    color: var(--light-text);
    overflow: hidden;
    height: 100vh;
}

    body.dark[b-90j469inq8] {
        background-color: var(--dark-bg);
        color: var(--dark-text);
    }

    body.large-icons[b-90j469inq8] {
        --toolbar-width: 60px;
        --icon-size: 40px;
    }

.mc-gui-edit-editor-container[b-90j469inq8] {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.mc-gui-edit-toolbar[b-90j469inq8] {
    width: var(--toolbar-width);
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

.mc-gui-edit-tool-btn[b-90j469inq8] {
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 4px;
    border: none;
    background-color: #444;
    color: white;
    margin-bottom: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

    .mc-gui-edit-tool-btn.active[b-90j469inq8] {
        background-color: var(--primary-color);
    }

    .mc-gui-edit-tool-btn:hover[b-90j469inq8] {
        background-color: #555;
    }

    .mc-gui-edit-tool-btn.active:hover[b-90j469inq8] {
        background-color: var(--dark-primary);
    }

.mc-gui-edit-tool-group[b-90j469inq8] {
    border-bottom: 1px solid #555;
    padding-bottom: 6px;
    margin-bottom: 6px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mc-gui-edit-settings-panel[b-90j469inq8] {
    width: 400px;
    background-color: var(--light-panel);
    border-right: 1px solid var(--light-border);
    padding: 15px;
    overflow-y: auto;
    display: none;
}

body.dark .mc-gui-edit-settings-panel[b-90j469inq8] {
    background-color: var(--dark-panel);
    border-color: var(--dark-border);
}

.mc-gui-edit-settings-panel.active[b-90j469inq8] {
    display: block;
}

.mc-gui-edit-canvas-wrapper[b-90j469inq8] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mc-gui-edit-canvas-container[b-90j469inq8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    background-image: linear-gradient(45deg, #2b2b2b 25%, transparent 25%), linear-gradient(-45deg, #2b2b2b 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #2b2b2b 75%), linear-gradient(-45deg, transparent 75%, #2b2b2b 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

#mc-gui-editor-canvas[b-90j469inq8] {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#grid-overlay[b-90j469inq8] {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.mc-gui-edit-right-panel[b-90j469inq8] {
    width: 400px;
    background-color: var(--light-panel);
    border-left: 1px solid var(--light-border);
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

body.dark .mc-gui-edit-right-panel[b-90j469inq8] {
    background-color: var(--dark-panel);
    border-color: var(--dark-border);
}

.mc-gui-edit-preview-container[b-90j469inq8] {
    margin-top: 10px;
    border: 1px solid var(--light-border);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 256px;
}

body.dark .mc-gui-edit-preview-container[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-mc-gui-preview-canvas[b-90j469inq8] {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

h2[b-90j469inq8] {
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
}

.mc-gui-edit-section[b-90j469inq8] {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 15px;
}

body.dark .mc-gui-edit-section[b-90j469inq8] {
    border-color: var(--dark-border);
}

button[b-90j469inq8] {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid var(--light-border);
    background-color: #f5f5f5;
    cursor: pointer;
    margin: 5px 0;
    color: var(--light-text);
}

body.dark button[b-90j469inq8] {
    background-color: #3a3a3a;
    border-color: var(--dark-border);
    color: var(--dark-text);
}

button:hover[b-90j469inq8] {
    background-color: #e8e8e8;
}

body.dark button:hover[b-90j469inq8] {
    background-color: #444;
}

button:disabled[b-90j469inq8] {
    opacity: 0.5;
    cursor: not-allowed;
}

.mc-gui-edit-layer-button[b-90j469inq8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 4px;
    background-color: #545454;
    border: 1px solid var(--light-border);
    cursor: pointer;
}

body.dark .mc-gui-edit-layer-button[b-90j469inq8] {
    background-color: #3a3a3a;
    border-color: var(--dark-border);
}

.mc-gui-edit-layer-button:hover[b-90j469inq8] {
    background-color: #e8e8e8;
}

body.dark .mc-gui-edit-layer-button:hover[b-90j469inq8] {
    background-color: #444;
}

.mc-gui-edit-layer-button.active[b-90j469inq8] {
    background-color: var(--primary-color);
    color: white;
}

    .mc-gui-edit-layer-button.active:hover[b-90j469inq8] {
        background-color: var(--dark-primary);
    }

.mc-gui-edit-layer-visibility[b-90j469inq8] {
    cursor: pointer;
}

.mc-gui-edit-input-group[b-90j469inq8] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .mc-gui-edit-input-group label[b-90j469inq8] {
        flex: 1;
        margin-right: 10px;
    }

    .mc-gui-edit-input-group input[b-90j469inq8],
    .mc-gui-edit-input-group select[b-90j469inq8] {
        flex: 2;
        padding: 6px;
        border-radius: 4px;
        border: 1px solid var(--light-border);
    }

body.dark .mc-gui-edit-input-group input[b-90j469inq8],
body.dark .mc-gui-edit-input-group select[b-90j469inq8] {
    background-color: #2a2a2a;
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.mc-gui-edit-color-group[b-90j469inq8] {
    margin-bottom: 10px;
}

.mc-gui-edit-color-group-header[b-90j469inq8] {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.mc-gui-edit-color-preview[b-90j469inq8] {
    width: 20px;
    height: 20px;
    border: 1px solid var(--light-border);
    margin-right: 10px;
    border-radius: 3px;
}

body.dark .mc-gui-edit-color-preview[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-color-controls[b-90j469inq8] {
    display: flex;
    align-items: center;
}

    .mc-gui-edit-color-controls input[type="color"][b-90j469inq8] {
        width: 30px;
        height: 30px;
        padding: 0;
        border: none;
        margin-right: 10px;
    }

    .mc-gui-edit-color-controls input[type="range"][b-90j469inq8] {
        flex: 1;
    }

.mc-gui-edit-notification[b-90j469inq8] {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}

.mc-gui-edit-zoom-controls[b-90j469inq8] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    z-index: 100;
}

    .mc-gui-edit-zoom-controls button[b-90j469inq8] {
        width: 32px;
        height: 32px;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #555;
        border-radius: 4px;
        border: 1px solid #ccc;
        cursor: pointer;
        padding: 0;
    }

body.dark .mc-gui-edit-zoom-controls button[b-90j469inq8] {
    background-color: #333;
    color: white;
    border-color: #555;
}

.mc-gui-edit-zoom-display[b-90j469inq8] {
    padding: 0 10px;
    display: flex;
    align-items: center;
    background-color: #555;
    border-radius: 4px;
    border: 1px solid #ccc;
}

body.dark .mc-gui-edit-zoom-display[b-90j469inq8] {
    background-color: #333;
    color: white;
    border-color: #555;
}

.mc-gui-edit-color-palette[b-90j469inq8] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}

.mc-gui-edit-palette-color[b-90j469inq8] {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--light-border);
    cursor: pointer;
}

body.dark .mc-gui-edit-palette-color[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-add-palette-color[b-90j469inq8] {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px dashed var(--light-border);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    background-color: transparent;
}

body.dark .mc-gui-edit-add-palette-color[b-90j469inq8] {
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.mc-gui-edit-slot-options[b-90j469inq8] {
    display: none;
}

.mc-gui-edit-modal[b-90j469inq8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.mc-gui-edit-modal-content[b-90j469inq8] {
    background-color: var(--light-panel);
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

body.dark .mc-gui-edit-modal-content[b-90j469inq8] {
    background-color: var(--dark-panel);
    color: var(--dark-text);
}

.mc-gui-edit-generation-options[b-90j469inq8] {
    display: none;
}

.mc-gui-edit-dialog-notification[b-90j469inq8] {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 6px;
    z-index: 2000;
    display: none;
}

.mc-gui-edit-loading-indicator[b-90j469inq8] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-90j469inq8 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin-b-90j469inq8 {
    to {
        transform: rotate(360deg);
    }
}

.mc-gui-edit-checkbox-group[b-90j469inq8] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .mc-gui-edit-checkbox-group label[b-90j469inq8] {
        flex: 1;
        margin-right: 10px;
    }

.mc-gui-edit-generation-zone[b-90j469inq8] {
    position: relative;
}

    .mc-gui-edit-generation-zone.locked[b-90j469inq8]::after {
        content: "🔒";
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 2px;
        font-size: 10px;
    }

.mc-gui-edit-zone-list[b-90j469inq8] {
    max-height: 150px;
    overflow-y: auto;
    margin-top: 10px;
    border: 1px solid var(--light-border);
    border-radius: 4px;
}

body.dark .mc-gui-edit-zone-list[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-zone-item[b-90j469inq8] {
    padding: 5px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-border);
}

body.dark .mc-gui-edit-zone-item[b-90j469inq8] {
    border-color: var(--dark-border);
}

.mc-gui-edit-zone-item:last-child[b-90j469inq8] {
    border-bottom: none;
}

.mc-gui-edit-zone-item.locked[b-90j469inq8] {
    background-color: rgba(93, 92, 222, 0.1);
}

.mc-gui-edit-zone-item-delete[b-90j469inq8] {
    cursor: pointer;
    color: #ff3333;
}

    .mc-gui-edit-zone-item-delete:hover[b-90j469inq8] {
        color: #ff0000;
    }

.mc-gui-edit-primary-button[b-90j469inq8] {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 15px;
}

    .mc-gui-edit-primary-button:hover[b-90j469inq8] {
        background-color: var(--dark-primary);
    }

.mc-gui-edit-radio-group[b-90j469inq8] {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.mc-gui-edit-radio-option[b-90j469inq8] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mc-gui-edit-textarea-group[b-90j469inq8] {
    flex-direction: column;
    align-items: flex-start;
}

    .mc-gui-edit-textarea-group label[b-90j469inq8] {
        margin-bottom: 5px;
    }

    .mc-gui-edit-textarea-group textarea[b-90j469inq8] {
        width: 100%;
        min-height: 80px;
        resize: vertical;
        padding: 8px;
        border-radius: 4px;
        border: 1px solid var(--light-border);
        font-size: 14px;
    }

body.dark .mc-gui-edit-textarea-group textarea[b-90j469inq8] {
    background-color: #2a2a2a;
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.mc-gui-edit-range-container[b-90j469inq8] {
    display: flex;
    align-items: center;
    flex: 2;
}

    .mc-gui-edit-range-container input[type="range"][b-90j469inq8] {
        flex: 1;
        margin-right: 10px;
    }

    .mc-gui-edit-range-container span[b-90j469inq8] {
        width: 20px;
        text-align: center;
    }

input[type="range"][b-90j469inq8] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    outline: none;
}

body.dark input[type="range"][b-90j469inq8] {
    background: #444;
}

input[type="range"][b-90j469inq8]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"][b-90j469inq8]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}


css

Copier
/* Base dark theme variables */
:root[b-90j469inq8] {
    --primary-color: #7170E6;
    --dark-primary: #5D5CDE;
    --light-bg: #252525;
    --dark-bg: #121212;
    --light-text: #E0E0E0;
    --dark-text: #F5F5F5;
    --light-panel: #333333;
    --dark-panel: #1E1E1E;
    --light-border: #555555;
    --dark-border: #777777;
    --toolbar-width: 48px;
    --icon-size: 32px;
}

/* Base styling */
body[b-90j469inq8] {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: sans-serif;
}

/* Dropdown styling */
select[b-90j469inq8], .dropdown[b-90j469inq8] {
    background-color: var(--dark-panel);
    color: var(--light-text);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 8px;
}

/* Button styling */
button[b-90j469inq8], .btn[b-90j469inq8], input[type="button"][b-90j469inq8] {
    background-color: var(--dark-panel);
    color: var(--light-text);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    button:hover[b-90j469inq8], .btn:hover[b-90j469inq8], input[type="button"]:hover[b-90j469inq8] {
        background-color: var(--dark-primary);
    }

/* Special action buttons */
.btn-primary[b-90j469inq8], .action-btn[b-90j469inq8] {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

    .btn-primary:hover[b-90j469inq8], .action-btn:hover[b-90j469inq8] {
        background-color: var(--dark-primary);
    }

/* Text input styling */
input[type="text"][b-90j469inq8], input[type="number"][b-90j469inq8], textarea[b-90j469inq8], .text-input[b-90j469inq8] {
    background-color: var(--dark-panel);
    color: var(--light-text);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 8px;
}

    input[type="text"][b-90j469inq8]::placeholder,
    input[type="number"][b-90j469inq8]::placeholder,
    textarea[b-90j469inq8]::placeholder {
        color: #888888;
    }

/* Sidebar/toolbar */
.toolbar[b-90j469inq8], .sidebar[b-90j469inq8] {
    background-color: var(--dark-bg);
    border-right: 1px solid var(--light-border);
}

/* Panel styling */
.panel[b-90j469inq8], .card[b-90j469inq8] {
    background-color: var(--dark-panel);
    border: 1px solid var(--light-border);
    border-radius: 6px;
}

/* Layers panel */
.layer-item[b-90j469inq8] {
    background-color: var(--light-bg);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 4px;
}

    .layer-item.active[b-90j469inq8] {
        background-color: var(--primary-color);
        color: white;
    }

/* Sliders */
input[type="range"][b-90j469inq8] {
    accent-color: var(--primary-color);
}

/* Checkboxes */
input[type="checkbox"][b-90j469inq8] {
    accent-color: var(--primary-color);
}

/* Preview area */
.preview-area[b-90j469inq8] {
    background-color: var(--dark-panel);
    border: 1px solid var(--light-border);
}

/* Section headings */
h1[b-90j469inq8], h2[b-90j469inq8], h3[b-90j469inq8], h4[b-90j469inq8], .section-title[b-90j469inq8] {
    color: var(--light-text);
}

/* Generation zones highlight */
.active-zone[b-90j469inq8] {
    border: 2px solid var(--primary-color);
}


.mc-gui-edit-selection-options[b-90j469inq8] {
    margin-top: 15px;
}

.mc-gui-edit-button-group[b-90j469inq8] {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

    .mc-gui-edit-button-group button[b-90j469inq8] {
        flex: 1;
        padding: 5px;
    }

.mc-gui-edit-danger-button[b-90j469inq8] {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

    .mc-gui-edit-danger-button:hover[b-90j469inq8] {
        background-color: #c0392b;
    }


/* Project management buttons */
.mc-gui-edit-settings-group h4[b-90j469inq8] {
    margin-top: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
    color: #00ff9d;
}

.mc-gui-edit-button-group[b-90j469inq8] {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

    .mc-gui-edit-button-group button[b-90j469inq8] {
        flex: 1;
        padding: 8px 12px;
        border-radius: 4px;
        background-color: #333;
        color: white;
        border: 1px solid #00ff9d;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

        .mc-gui-edit-button-group button:hover[b-90j469inq8] {
            background-color: #444;
        }

        .mc-gui-edit-button-group button i[b-90j469inq8] {
            font-size: 1.1em;
        }

#mc-gui-save-btn[b-90j469inq8] {
    background-color: #276749;
}

#mc-gui-load-btn[b-90j469inq8] {
    background-color: #2b6cb0;
}
/* _content/AIMCTextureGenAPI/Shared/Preset/ImageTransformPreset.razor.rz.scp.css */
/* Main container */
.image-transform-preset[b-619kbha73e] {
    background-color: #1a2030;
    border-radius: 12px;
    padding: 24px;
    color: #e0e0e0;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.preset-header[b-619kbha73e] {
    margin-bottom: 20px;
    text-align: center;
}

    .preset-header h2[b-619kbha73e] {
        color: #6aeb2d;
        font-size: 28px;
        margin-bottom: 10px;
    }

.preset-description[b-619kbha73e] {
    color: #b0b0c0;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.preset-content[b-619kbha73e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Left Panel */
.left-panel[b-619kbha73e] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #3d4663;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upload-section h3[b-619kbha73e] {
    color: #6aeb2d;
    margin-bottom: 10px;
}

.upload-hint[b-619kbha73e] {
    color: #b0b0c0;
    margin-bottom: 15px;
    font-size: 14px;
}

.upload-area[b-619kbha73e] {
    border: 2px dashed #444a5c;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.2s ease;
    background-color: #333745;
    cursor: pointer;
}

    .upload-area.drag-over[b-619kbha73e] {
        border-color: #6aeb2d;
        background-color: rgba(106, 235, 45, 0.1);
    }

.upload-btn[b-619kbha73e] {
    background-color: #444a5c;
    color: #e0e0e0;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 15px;
    transition: all 0.2s ease;
}

    .upload-btn:hover[b-619kbha73e] {
        background-color: #515873;
    }

    .upload-btn i[b-619kbha73e] {
        font-size: 20px;
    }

.image-preview-section[b-619kbha73e] {
    flex: 1;
    min-height: 200px;
}

.image-preview-container[b-619kbha73e] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.image-preview-item[b-619kbha73e] {
    position: relative;
}

.image-preview[b-619kbha73e] {
    border-radius: 8px;
    overflow: hidden;
    background-color: #333745;
    border: 2px solid #444a5c;
    position: relative;
}

    .image-preview img[b-619kbha73e] {
        width: 100%;
        height: 150px;
        object-fit: contain;
        display: block;
        image-rendering: pixelated;
    }

.image-info[b-619kbha73e] {
    padding: 8px;
    background-color: rgba(26, 32, 48, 0.8);
    font-size: 12px;
    text-align: center;
}

.remove-image-btn[b-619kbha73e] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .remove-image-btn:hover[b-619kbha73e] {
        background-color: rgba(255, 0, 0, 0.8);
    }

.no-image-placeholder[b-619kbha73e] {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #333745;
    border-radius: 8px;
    border: 2px dashed #444a5c;
}

    .no-image-placeholder i[b-619kbha73e] {
        font-size: 48px;
        color: #444a5c;
        margin-bottom: 10px;
    }

    .no-image-placeholder p[b-619kbha73e] {
        color: #b0b0c0;
    }

.error-message[b-619kbha73e] {
    padding: 12px;
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #f44336;
    color: #f44336;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Right Panel */
.right-panel[b-619kbha73e] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #3d4663;
}

.transformation-controls h3[b-619kbha73e] {
    color: #6aeb2d;
    margin-bottom: 20px;
}

.control-group[b-619kbha73e] {
    margin-bottom: 20px;
}

    .control-group label[b-619kbha73e] {
        display: block;
        color: #6aeb2d;
        margin-bottom: 8px;
        font-weight: 600;
    }

.resolution-dropdown[b-619kbha73e] {
    width: 100%;
    padding: 12px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.prompt-textarea[b-619kbha73e] {
    width: 100%;
    padding: 12px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.transformation-type-selector[b-619kbha73e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.transform-type-btn[b-619kbha73e] {
    padding: 12px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .transform-type-btn i[b-619kbha73e] {
        font-size: 24px;
    }

    .transform-type-btn:hover[b-619kbha73e] {
        background-color: #3d4259;
    }

    .transform-type-btn.active[b-619kbha73e] {
        background-color: #6aeb2d;
        border-color: #6aeb2d;
        color: #1a2030;
    }

.strength-selector[b-619kbha73e] {
    display: flex;
    gap: 10px;
}

.strength-btn[b-619kbha73e] {
    flex: 1;
    padding: 10px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .strength-btn:hover[b-619kbha73e] {
        background-color: #3d4259;
    }

    .strength-btn.active[b-619kbha73e] {
        background-color: #6aeb2d;
        border-color: #6aeb2d;
        color: #1a2030;
    }

.strength-info[b-619kbha73e] {
    margin-top: 10px;
    padding: 10px;
    background-color: #333745;
    border-radius: 6px;
    font-size: 14px;
}

.info-text[b-619kbha73e] {
    color: #b0b0c0;
    font-size: 14px;
    margin-top: 10px;
}

.color-palette-container[b-619kbha73e] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.color-chip[b-619kbha73e] {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    position: relative;
}

.color-name[b-619kbha73e] {
    margin-right: 20px;
    font-size: 14px;
}

.remove-color-btn[b-619kbha73e] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-color[b-619kbha73e] {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .add-color input[type="color"][b-619kbha73e] {
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

.add-color-btn[b-619kbha73e] {
    padding: 8px 12px;
    background-color: #444a5c;
    border: none;
    color: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .add-color-btn:hover[b-619kbha73e] {
        background-color: #515873;
    }

.generate-btn[b-619kbha73e] {
    width: 100%;
    padding: 15px;
    background-color: #6aeb2d;
    border: none;
    color: #1a2030;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

    .generate-btn:hover[b-619kbha73e] {
        background-color: #7dff44;
        transform: translateY(-2px);
    }

    .generate-btn:active[b-619kbha73e] {
        transform: translateY(0);
    }

    .generate-btn:disabled[b-619kbha73e] {
        background-color: #444a5c;
        color: #b0b0c0;
        cursor: not-allowed;
        transform: none;
    }

/* Processing Overlay */
.processing-overlay[b-619kbha73e] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 32, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 12px;
}

.processing-content[b-619kbha73e] {
    text-align: center;
    padding: 30px;
    background-color: #252a3e;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.spinner[b-619kbha73e] {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(106, 235, 45, 0.3);
    border-radius: 50%;
    border-top-color: #6aeb2d;
    animation: spin-b-619kbha73e 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-619kbha73e {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.processing-content h3[b-619kbha73e] {
    color: #6aeb2d;
    margin-bottom: 10px;
}

.processing-content p[b-619kbha73e] {
    color: #e0e0e0;
}

/* Responsive styling */
@media (max-width: 992px) {
    .preset-content[b-619kbha73e] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .transformation-type-selector[b-619kbha73e] {
        grid-template-columns: 1fr;
    }

    .strength-selector[b-619kbha73e] {
        flex-direction: column;
    }
}
/* _content/AIMCTextureGenAPI/Shared/Preset/StyleMatchPreset.razor.rz.scp.css */
/* StyleMatchPreset styles */
.style-match-preset[b-nfcq24bx6i] {
    background-color: #1a2030;
    border-radius: 12px;
    padding: 24px;
    color: #e0e0e0;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.preset-header[b-nfcq24bx6i] {
    margin-bottom: 20px;
    text-align: center;
}

    .preset-header h2[b-nfcq24bx6i] {
        color: #6aeb2d;
        font-size: 28px;
        margin-bottom: 10px;
    }

.preset-description[b-nfcq24bx6i] {
    color: #b0b0c0;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.preset-content[b-nfcq24bx6i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Settings Panel */
.settings-panel[b-nfcq24bx6i] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #3d4663;
}

.setting-group[b-nfcq24bx6i] {
    margin-bottom: 20px;
}

    .setting-group label[b-nfcq24bx6i] {
        display: block;
        color: #6aeb2d;
        margin-bottom: 8px;
        font-weight: 600;
    }

.resolution-selector[b-nfcq24bx6i] {
    display: flex;
    gap: 10px;
}

.resolution-btn[b-nfcq24bx6i] {
    flex: 1;
    padding: 10px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

    .resolution-btn:hover[b-nfcq24bx6i] {
        background-color: #3d4259;
    }

    .resolution-btn.active[b-nfcq24bx6i] {
        background-color: #6aeb2d;
        border-color: #6aeb2d;
        color: #1a2030;
    }

.model-select[b-nfcq24bx6i], .prompt-textarea[b-nfcq24bx6i] {
    width: 100%;
    padding: 12px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.prompt-textarea[b-nfcq24bx6i] {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

    .model-select:focus[b-nfcq24bx6i], .prompt-textarea:focus[b-nfcq24bx6i] {
        border-color: #6aeb2d;
        outline: none;
    }

.slider-group[b-nfcq24bx6i] {
    margin-bottom: 16px;
}

.strength-slider[b-nfcq24bx6i] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #333745;
    border-radius: 3px;
    outline: none;
}

    .strength-slider[b-nfcq24bx6i]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6aeb2d;
        cursor: pointer;
    }

    .strength-slider[b-nfcq24bx6i]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6aeb2d;
        cursor: pointer;
    }

.seed-container[b-nfcq24bx6i] {
    display: flex;
    gap: 10px;
}

.seed-input[b-nfcq24bx6i] {
    flex: 1;
    padding: 12px;
    background-color: #333745;
    border: 2px solid #444a5c;
    color: #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.random-seed-btn[b-nfcq24bx6i] {
    padding: 0 15px;
    background-color: #444a5c;
    border: none;
    color: #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .random-seed-btn:hover[b-nfcq24bx6i] {
        background-color: #515873;
    }

.generate-btn[b-nfcq24bx6i] {
    width: 100%;
    padding: 15px;
    background-color: #6aeb2d;
    border: none;
    color: #1a2030;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .generate-btn:hover[b-nfcq24bx6i] {
        background-color: #7dff44;
        transform: translateY(-2px);
    }

    .generate-btn:active[b-nfcq24bx6i] {
        transform: translateY(0);
    }

/* Reference Panel */
.reference-panel[b-nfcq24bx6i] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #3d4663;
}

    .reference-panel h3[b-nfcq24bx6i] {
        color: #6aeb2d;
        margin-bottom: 10px;
    }

.reference-hint[b-nfcq24bx6i] {
    color: #b0b0c0;
    margin-bottom: 20px;
    font-size: 14px;
}

.reference-images[b-nfcq24bx6i] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.reference-slot[b-nfcq24bx6i] {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #333745;
    border: 2px dashed #444a5c;
}

    .reference-slot.filled[b-nfcq24bx6i] {
        border: 2px solid #6aeb2d;
    }

.reference-image-container[b-nfcq24bx6i] {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.reference-image[b-nfcq24bx6i] {
    flex: 1;
    object-fit: contain;
    background-color: #333745;
    padding: 10px;
    image-rendering: pixelated;
}

.reference-controls[b-nfcq24bx6i] {
    display: flex;
    padding: 10px;
    background-color: rgba(26, 32, 48, 0.8);
    gap: 10px;
}

.filter-select[b-nfcq24bx6i] {
    flex: 1;
    padding: 8px;
    background-color: #333745;
    border: none;
    color: #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.remove-btn[b-nfcq24bx6i] {
    padding: 0 10px;
    background-color: #f44336;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .remove-btn:hover[b-nfcq24bx6i] {
        background-color: #ff5252;
    }

.upload-area[b-nfcq24bx6i] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.2s ease;
}

    .upload-area.drag-over[b-nfcq24bx6i] {
        background-color: rgba(106, 235, 45, 0.1);
        border-color: #6aeb2d;
    }

.upload-btn[b-nfcq24bx6i] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: #444a5c;
    border: none;
    color: #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

    .upload-btn i[b-nfcq24bx6i] {
        font-size: 24px;
    }

    .upload-btn:hover[b-nfcq24bx6i] {
        background-color: #515873;
    }

.upload-hint[b-nfcq24bx6i] {
    color: #b0b0c0;
    font-size: 14px;
}

.error-message[b-nfcq24bx6i] {
    padding: 12px;
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #f44336;
    color: #f44336;
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-preview[b-nfcq24bx6i] {
    background-color: #333745;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

    .filter-preview h4[b-nfcq24bx6i] {
        color: #6aeb2d;
        margin-bottom: 10px;
    }

.filter-instructions[b-nfcq24bx6i] {
    background-color: #1a2030;
    padding: 15px;
    border-radius: 6px;
    color: #e0e0e0;
    font-family: monospace;
    font-size: 14px;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 150px;
    overflow-y: auto;
}

/* Dialog styles */
.alert-dialog[b-nfcq24bx6i], .confirm-dialog[b-nfcq24bx6i], .loading-dialog[b-nfcq24bx6i] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.alert-content[b-nfcq24bx6i], .confirm-content[b-nfcq24bx6i], .loading-content[b-nfcq24bx6i] {
    background-color: #252a3e;
    border-radius: 10px;
    padding: 24px;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #3d4663;
}

    .alert-content h3[b-nfcq24bx6i], .confirm-content h3[b-nfcq24bx6i], .loading-content h3[b-nfcq24bx6i] {
        color: #6aeb2d;
        margin-bottom: 15px;
        text-align: center;
    }

    .alert-content p[b-nfcq24bx6i], .confirm-content p[b-nfcq24bx6i] {
        color: #e0e0e0;
        margin-bottom: 20px;
    }

.alert-actions[b-nfcq24bx6i], .confirm-actions[b-nfcq24bx6i] {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.alert-button[b-nfcq24bx6i], .confirm-button[b-nfcq24bx6i], .cancel-button[b-nfcq24bx6i] {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.alert-button[b-nfcq24bx6i], .confirm-button[b-nfcq24bx6i] {
    background-color: #6aeb2d;
    color: #1a2030;
}

.cancel-button[b-nfcq24bx6i] {
    background-color: #444a5c;
    color: #e0e0e0;
}

.alert-button:hover[b-nfcq24bx6i], .confirm-button:hover[b-nfcq24bx6i] {
    background-color: #7dff44;
}

.cancel-button:hover[b-nfcq24bx6i] {
    background-color: #515873;
}

.loading-content[b-nfcq24bx6i] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loading-spinner[b-nfcq24bx6i] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(106, 235, 45, 0.3);
    border-radius: 50%;
    border-top-color: #6aeb2d;
    animation: spin-b-nfcq24bx6i 1s linear infinite;
}

@keyframes spin-b-nfcq24bx6i {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive styling */
@media (max-width: 992px) {
    .preset-content[b-nfcq24bx6i] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .reference-images[b-nfcq24bx6i] {
        grid-template-columns: 1fr;
    }

    .style-match-preset[b-nfcq24bx6i] {
        padding: 15px;
    }
}


.reference-image-container[b-nfcq24bx6i] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reference-image[b-nfcq24bx6i] {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #333745;
    padding: 10px;
    image-rendering: pixelated;
}

.reference-image-container[b-nfcq24bx6i] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column-reverse; /* Change to column-reverse to put controls on top */
}

.reference-controls[b-nfcq24bx6i] {
    display: flex;
    width: 100%;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #444; /* Changed from border-top to border-bottom */
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: absolute;
}

.filter-select[b-nfcq24bx6i] {
    flex: 1;
    margin-right: 10px;
    padding: 5px;
    background-color: #222;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    height: 32px;
    display: block;
    width: auto;
}

.remove-btn[b-nfcq24bx6i] {
    background-color: #b33;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .remove-btn:hover[b-nfcq24bx6i] {
        background-color: #d44;
    }

.filter-toggle-group[b-nfcq24bx6i] {
    margin-top: 15px; /* Add some space above */
    margin-bottom: 20px; /* Space before filter preview */
    padding: 12px 15px;
    background-color: #333745; /* Match other input backgrounds */
    border: 1px solid #444a5c; /* Match other input borders */
    border-radius: 6px;
}

    .filter-toggle-group .form-check-label[b-nfcq24bx6i] {
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-bottom: 5px; /* Space before hint */
        color: #e0e0e0; /* Match general text color */
        font-weight: normal; /* Override potential setting-group label style */
    }

    .filter-toggle-group .form-check-input[b-nfcq24bx6i] {
        margin-right: 10px;
        margin-top: 0; /* Align better */
        width: 1.2em;
        height: 1.2em;
        cursor: pointer;
        accent-color: #6aeb2d; /* Use theme color for the check */
    }

    .filter-toggle-group .form-text[b-nfcq24bx6i] {
        display: block; /* Ensure it takes its own line */
        margin-left: calc(1.2em + 10px); /* Align with text */
        color: #b0b0c0; /* Hint text color */
        font-size: 13px;
    }

/* Optional: Adjust setting-group label specificity if needed */
.setting-group > label:not(.form-check-label)[b-nfcq24bx6i] {
    /* Your existing label styles */
    display: block;
    color: #6aeb2d;
    margin-bottom: 8px;
    font-weight: 600;
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/ConfirmationDialog.razor.rz.scp.css */
.modal[b-04c7urspah] {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content[b-04c7urspah] {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/GridImageSelector.razor.rz.scp.css */
/* Modal Styles */
.modal-dialog[b-2s7lztt5gd] {
    max-width: 90vw;
    width: 90%;
    margin: 1.75rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content[b-2s7lztt5gd] {
    background-color: #1a1e2e;
    color: #e0e0e0;
    border-radius: 12px;
    border: 1px solid #313244;
    overflow: hidden; /* Ensure rounded corners work with content */
}

.modal-header[b-2s7lztt5gd] {
    border-bottom: 1px solid #45475a;
    padding: 15px 20px;
    background-color: #181825;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title[b-2s7lztt5gd] {
    color: #89b4fa;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

.btn-close[b-2s7lztt5gd] {
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .btn-close:hover[b-2s7lztt5gd] {
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

/* Tabs */
.nav-tabs[b-2s7lztt5gd] {
    border-bottom: 2px solid #45475a;
    padding: 0 15px;
    background-color: #1a1e2e;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* Allow horizontal scrolling on small screens */
    scrollbar-width: thin;
    scrollbar-color: #45475a #1a1e2e;
}

    .nav-tabs[b-2s7lztt5gd]::-webkit-scrollbar {
        height: 5px;
    }

    .nav-tabs[b-2s7lztt5gd]::-webkit-scrollbar-track {
        background: #1a1e2e;
    }

    .nav-tabs[b-2s7lztt5gd]::-webkit-scrollbar-thumb {
        background-color: #45475a;
        border-radius: 10px;
    }

    .nav-tabs .nav-item[b-2s7lztt5gd] {
        margin-bottom: -2px; /* Align with bottom border */
    }

    .nav-tabs .nav-link[b-2s7lztt5gd] {
        color: #cdd6f4;
        background-color: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        padding: 12px 20px;
        margin-right: 5px;
        transition: all 0.3s ease;
        font-weight: 500;
        white-space: nowrap; /* Prevent tab text wrapping */
    }

        .nav-tabs .nav-link:hover[b-2s7lztt5gd] {
            background-color: rgba(137, 180, 250, 0.1);
            color: #89b4fa;
        }

        .nav-tabs .nav-link.active[b-2s7lztt5gd] {
            color: #89b4fa;
            background-color: transparent;
            border-bottom: 2px solid #89b4fa;
            font-weight: 600;
        }

.tab-content[b-2s7lztt5gd] {
    padding: 20px;
    background-color: #1a1e2e;
    min-height: 300px; /* Ensure consistent height */
}

/* Grid Settings */
.grid-settings[b-2s7lztt5gd] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background-color: #181825;
    border-radius: 8px;
    align-items: center;
}

    .grid-settings label[b-2s7lztt5gd] {
        color: #cdd6f4;
        margin-right: 6px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .grid-settings input[type="number"][b-2s7lztt5gd],
    .grid-settings input[type="text"][b-2s7lztt5gd] {
        padding: 10px 12px;
        border: 1px solid #45475a;
        border-radius: 6px;
        background-color: #313244;
        color: #e0e0e0;
        width: 80px; /* Adjust as needed */
        font-size: 0.9rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .grid-settings input[type="text"][b-2s7lztt5gd] {
        width: 150px; /* Wider for text inputs */
    }

    .grid-settings input:focus[b-2s7lztt5gd] {
        outline: none;
        border-color: #89b4fa;
        box-shadow: 0 0 0 2px rgba(137, 180, 250, 0.25);
    }

/* Modal Footer */
.modal-footer[b-2s7lztt5gd] {
    border-top: 1px solid #45475a;
    justify-content: flex-end;
    padding: 15px 20px;
    background-color: #181825;
    gap: 12px; /* Space between buttons */
}

    .modal-footer button[b-2s7lztt5gd] {
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 100px; /* Ensure consistent button width */
    }

    .modal-footer .btn-secondary[b-2s7lztt5gd] {
        background-color: #45475a;
        color: #cdd6f4;
    }

        .modal-footer .btn-secondary:hover[b-2s7lztt5gd] {
            background-color: #585b70;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

    .modal-footer .btn-primary[b-2s7lztt5gd] {
        background-color: #89b4fa;
        color: #1e1e2e;
    }

        .modal-footer .btn-primary:hover[b-2s7lztt5gd] {
            background-color: #74c7ec;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

/* Responsive Design */
@media (max-width: 768px) {
    .modal-dialog[b-2s7lztt5gd] {
        margin: 10px;
        max-width: 95%;
        width: 95%;
    }

    .grid-settings[b-2s7lztt5gd] {
        flex-direction: column;
        align-items: flex-start;
    }

        .grid-settings label[b-2s7lztt5gd] {
            margin-bottom: 5px;
        }

        .grid-settings input[type="number"][b-2s7lztt5gd],
        .grid-settings input[type="text"][b-2s7lztt5gd] {
            width: 100%;
        }

    .modal-footer button[b-2s7lztt5gd] {
        flex: 1;
        min-width: 0;
    }
}

/* Optional animation for modal appearance */
@keyframes fadeIn-b-2s7lztt5gd {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content[b-2s7lztt5gd] {
    animation: fadeIn-b-2s7lztt5gd 0.3s ease-out;
}


.mode-selector[b-2s7lztt5gd] {
    margin: 1.5rem 0;
}

.mode-tabs[b-2s7lztt5gd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mode-tab[b-2s7lztt5gd] {
    padding: 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #d0d0d0;
    background: #2c304d;
    border-radius: 6px;
    border-left: 3px solid transparent;
}

    .mode-tab:hover[b-2s7lztt5gd] {
        background: #363b5e;
    }

    .mode-tab.active[b-2s7lztt5gd] {
        background: #3a3f66;
        color: white;
        border-left: 3px solid #3080ff;
    }

.bottom-actions[b-2s7lztt5gd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.tab-mode-selector[b-2s7lztt5gd] {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    background: #2c304d;
    border: 1px solid #3a3f66;
}

.tab-mode[b-2s7lztt5gd] {
    padding: 0.6rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #d0d0d0;
}

    .tab-mode:not(:last-child)[b-2s7lztt5gd] {
        border-right: 1px solid #3a3f66;
    }

    .tab-mode:hover[b-2s7lztt5gd] {
        background: #363b5e;
    }

    .tab-mode.active[b-2s7lztt5gd] {
        background: #3080ff;
        color: white;
    }
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/ImageReferenceSelector.razor.rz.scp.css */
.hsdk-reference-selector[b-k5auimm3w9] {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #e0e0e0;
    padding: 12px;
    background-color: #333333;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

.hsdk-loading-overlay[b-k5auimm3w9] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 18px;
}

.hsdk-info[b-k5auimm3w9] {
    font-size: 12px;
    color: #bbbbbb;
    margin-bottom: 10px;
    background-color: #222222;
    padding: 8px 10px;
    border-radius: 4px;
    line-height: 1.4;
}

.hsdk-filter-tabs[b-k5auimm3w9] {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.hsdk-tab[b-k5auimm3w9] {
    background-color: #444444;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    color: #cccccc;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    transition: background-color 0.2s;
}

    .hsdk-tab.hsdk-active[b-k5auimm3w9] {
        background-color: #66aaff;
        color: #ffffff;
        font-weight: bold;
    }

    .hsdk-tab:hover:not(.hsdk-active)[b-k5auimm3w9] {
        background-color: #555555;
    }

.hsdk-images-area[b-k5auimm3w9] {
    margin-bottom: 15px;
}

.hsdk-images-grid[b-k5auimm3w9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    background-color: #222222;
    border: 1px solid #444444;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.hsdk-image-card[b-k5auimm3w9] {
    background-color: #333333;
    border: 1px solid #444444;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hsdk-image-card:hover[b-k5auimm3w9] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

.hsdk-image-preview[b-k5auimm3w9] {
    width: 100%;
    height: 150px;
    background-color: #111111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hsdk-image-preview img[b-k5auimm3w9] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        image-rendering: pixelated;
    }

.hsdk-image-zoom[b-k5auimm3w9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 10;
    overflow: hidden;
}

.hsdk-image-preview:hover .hsdk-image-zoom[b-k5auimm3w9] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsdk-image-zoom img[b-k5auimm3w9] {
    max-width: 200%;
    max-height: 200%;
    transform: scale(1.8);
    image-rendering: pixelated;
}

.hsdk-image-controls[b-k5auimm3w9] {
    background-color: #2a2a2a;
    padding: 8px;
}

.hsdk-control-grid[b-k5auimm3w9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 6px;
    padding-bottom: 6px;
}

.hsdk-control-item[b-k5auimm3w9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 4px;
    background-color: #3a3a3a;
    border-radius: 4px;
    cursor: pointer;
}

    .hsdk-control-item:hover[b-k5auimm3w9] {
        background-color: #444444;
    }

.hsdk-control-label[b-k5auimm3w9] {
    font-size: 12px;
    color: #cccccc;
}

.hsdk-control-item input[b-k5auimm3w9] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.hsdk-reset[b-k5auimm3w9] {
    grid-column: 1 / span 2;
    background-color: #cc3333;
    border: none;
    height: 24px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
}

    .hsdk-reset:hover[b-k5auimm3w9] {
        background-color: #ee4444;
    }

.hsdk-pagination[b-k5auimm3w9] {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.hsdk-page-btn[b-k5auimm3w9] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #444444;
    color: #e0e0e0;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
}

    .hsdk-page-btn.hsdk-active[b-k5auimm3w9] {
        background-color: #66aaff;
        color: white;
        font-weight: bold;
    }

    .hsdk-page-btn:hover:not(.hsdk-active)[b-k5auimm3w9] {
        background-color: #555555;
    }

.hsdk-settings-container[b-k5auimm3w9] {
    background-color: #2a2a2a;
    border-radius: 5px;
    padding: 12px;
    margin-top: 15px;
}

.hsdk-settings-row[b-k5auimm3w9] {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.hsdk-style-settings[b-k5auimm3w9] {
    flex: 1;
    background-color: #222222;
    border: 1px solid #444444;
    border-radius: 5px;
    overflow: hidden;
}

.hsdk-panel-header[b-k5auimm3w9] {
    background-color: #444444;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 14px;
    color: #ffffff;
}

.hsdk-panel-body[b-k5auimm3w9] {
    padding: 12px;
}

.hsdk-slider-group[b-k5auimm3w9] {
    margin-bottom: 12px;
}

    .hsdk-slider-group label[b-k5auimm3w9] {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        margin-bottom: 6px;
    }

.hsdk-value[b-k5auimm3w9] {
    background-color: #66aaff;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    min-width: 12px;
    text-align: center;
}

.hsdk-slider-group input[type="range"][b-k5auimm3w9] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #444444;
    border-radius: 3px;
    margin: 6px 0;
}

    .hsdk-slider-group input[type="range"][b-k5auimm3w9]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        background: #66aaff;
        border-radius: 50%;
        cursor: pointer;
    }

.hsdk-form-group[b-k5auimm3w9] {
    margin-bottom: 12px;
}

    .hsdk-form-group label[b-k5auimm3w9] {
        font-size: 14px;
        display: block;
        margin-bottom: 6px;
    }

.hsdk-form-select[b-k5auimm3w9] {
    width: 100%;
    font-size: 14px;
    padding: 6px 8px;
    background-color: #333333;
    color: #dddddd;
    border: 1px solid #555555;
    border-radius: 4px;
}

.hsdk-form-check[b-k5auimm3w9] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 4px;
}

.hsdk-form-check-input[b-k5auimm3w9] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.hsdk-form-check-label[b-k5auimm3w9] {
    font-size: 14px;
    cursor: pointer;
}

.hsdk-image-shape-settings[b-k5auimm3w9] {
    background-color: #222222;
    border: 1px solid #444444;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.hsdk-settings-sliders[b-k5auimm3w9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.hsdk-options-area[b-k5auimm3w9] {
    background-color: #333333;
    padding: 10px;
    border-radius: 4px;
}

.hsdk-form-check-large[b-k5auimm3w9] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 6px;
    background-color: #3a3a3a;
    border-radius: 4px;
}

    .hsdk-form-check-large:hover[b-k5auimm3w9] {
        background-color: #444444;
    }

.hsdk-color-style-panel[b-k5auimm3w9] {
    background-color: #222222;
    border: 1px solid #444444;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 15px;
}

.hsdk-alert-danger[b-k5auimm3w9] {
    background-color: rgba(204, 51, 51, 0.2);
    color: #ff8888;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hsdk-action-bar[b-k5auimm3w9] {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.hsdk-apply-btn[b-k5auimm3w9] {
    background-color: #44aa44;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

    .hsdk-apply-btn:hover[b-k5auimm3w9] {
        background-color: #55bb55;
    }

/* Scrollbar styling */
.hsdk-images-grid[b-k5auimm3w9]::-webkit-scrollbar {
    width: 8px;
}

.hsdk-images-grid[b-k5auimm3w9]::-webkit-scrollbar-track {
    background: #333333;
    border-radius: 4px;
}

.hsdk-images-grid[b-k5auimm3w9]::-webkit-scrollbar-thumb {
    background: #555555;
    border-radius: 4px;
}

    .hsdk-images-grid[b-k5auimm3w9]::-webkit-scrollbar-thumb:hover {
        background: #666666;
    }

/* For small screens */
@media (max-width: 768px) {
    .hsdk-settings-row[b-k5auimm3w9] {
        flex-direction: column;
    }

    .hsdk-settings-sliders[b-k5auimm3w9] {
        grid-template-columns: 1fr;
    }
}

/* Even smaller screens */
@media (max-width: 500px) {
    .hsdk-images-grid[b-k5auimm3w9] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .hsdk-image-preview[b-k5auimm3w9] {
        height: 120px;
    }
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/ImageUploadTab.razor.rz.scp.css */
/* Grid Image Container Styles */
.grid-image-container[b-x95rgsnjwp] {
    width: 100%;
    background-color: #1a1e2e;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    color: #cdd6f4;
}

.upload-instructions[b-x95rgsnjwp] {
    margin-bottom: 10px;
}

    .upload-instructions h4[b-x95rgsnjwp] {
        color: #cdd6f4;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 1.2rem;
    }

.instruction-text[b-x95rgsnjwp] {
    color: #a6adc8;
    font-size: 0.9rem;
    margin: 0;
}

/* Upload Area */
.upload-area[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #252a3e;
    border: 2px dashed #45475a;
    border-radius: 8px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 200px;
}

    .upload-area:hover[b-x95rgsnjwp] {
        border-color: #89b4fa;
        background-color: rgba(137, 180, 250, 0.05);
    }

    .upload-area.drag-active[b-x95rgsnjwp] {
        border-color: #89b4fa;
        background-color: rgba(137, 180, 250, 0.1);
    }

.upload-icon[b-x95rgsnjwp] {
    margin-bottom: 15px;
}

.drop-text[b-x95rgsnjwp] {
    color: #cdd6f4;
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.or-text[b-x95rgsnjwp] {
    color: #7f849c;
    font-size: 0.9rem;
    margin: 5px 0 15px 0;
}

.select-files-btn[b-x95rgsnjwp] {
    padding: 8px 16px;
    background-color: #313244;
    border: 1px solid #45475a;
    border-radius: 6px;
    color: #cdd6f4;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .select-files-btn:hover[b-x95rgsnjwp] {
        background-color: #45475a;
    }

/* Uploaded Images Section */
.uploaded-images-section[b-x95rgsnjwp] {
    background-color: #252a3e;
    border-radius: 8px;
    padding: 15px;
}

.uploaded-images-header[b-x95rgsnjwp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .uploaded-images-header h5[b-x95rgsnjwp] {
        color: #cdd6f4;
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
    }

.clear-all-btn[b-x95rgsnjwp] {
    background: none;
    border: none;
    color: #f38ba8;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .clear-all-btn:hover[b-x95rgsnjwp] {
        background-color: rgba(243, 139, 168, 0.1);
    }

.uploaded-images[b-x95rgsnjwp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
}

.uploaded-image[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    background-color: #313244;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid #45475a;
    position: relative;
}

    .uploaded-image:hover[b-x95rgsnjwp] {
        border-color: #89b4fa;
    }

.image-preview[b-x95rgsnjwp] {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e2e;
    overflow: hidden;
    position: relative;
}

    .image-preview img[b-x95rgsnjwp] {
        max-width: 100%;
        max-height: 100%;
        width: 64px;
        height: 64px;
        object-fit: contain;
        image-rendering: pixelated;
    }

.remove-image-button[b-x95rgsnjwp] {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: rgba(243, 139, 168, 0.7);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

    .remove-image-button:hover[b-x95rgsnjwp] {
        background-color: rgba(243, 139, 168, 1);
    }

.image-info[b-x95rgsnjwp] {
    padding: 8px;
    text-align: center;
    background-color: #313244;
}

.image-name[b-x95rgsnjwp] {
    color: #cdd6f4;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Error Message */
.image-upload-error[b-x95rgsnjwp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: rgba(243, 139, 168, 0.1);
    border-left: 3px solid #f38ba8;
    border-radius: 6px;
    color: #f38ba8;
    font-size: 0.9rem;
}

/* Combined Preview Section */
.combined-preview-section[b-x95rgsnjwp] {
    background-color: #252a3e;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .combined-preview-section h5[b-x95rgsnjwp] {
        color: #cdd6f4;
        margin: 0 0 15px 0;
        font-size: 1rem;
        font-weight: 500;
        align-self: flex-start;
    }

.combined-preview[b-x95rgsnjwp] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .combined-preview img[b-x95rgsnjwp] {
        width: 256px;
        height: 256px;
        image-rendering: pixelated;
        object-fit: contain;
        background-color: #1e1e2e;
        border-radius: 4px;
    }

.upload-reference-btn[b-x95rgsnjwp] {
    padding: 10px 20px;
    background-color: #89b4fa;
    color: #1e1e2e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .upload-reference-btn:hover[b-x95rgsnjwp] {
        background-color: #74c7ec;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .uploaded-images[b-x95rgsnjwp] {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}


.grid-image-container[b-x95rgsnjwp] {
    max-height: 100%;
    overflow-y: auto;
}

.upload-success-message[b-x95rgsnjwp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    margin-top: 15px;
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    border-radius: 6px;
    color: #4CAF50;
    font-size: 0.9rem;
}

.combined-preview-section[b-x95rgsnjwp] {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #1e2233;
    border-radius: 10px;
    color: white;
}

    .combined-preview-section h5[b-x95rgsnjwp] {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 500;
    }

.combined-preview[b-x95rgsnjwp] {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

    .combined-preview img[b-x95rgsnjwp] {
        display: block;
        width: 100%;
        height: auto;
    }

.strength-controls[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.strength-slider[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .strength-slider label[b-x95rgsnjwp] {
        font-weight: 500;
        color: #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .strength-slider input[type="range"][b-x95rgsnjwp] {
        width: 100%;
        height: 8px;
        border-radius: 10px;
        background: #2c304d;
        outline: none;
        -webkit-appearance: none;
    }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3080ff;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: background 0.15s ease;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3080ff;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: background 0.15s ease;
            border: none;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-ms-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3080ff;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: background 0.15s ease;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-webkit-slider-runnable-track {
            background: linear-gradient(to right, #3080ff 0%, #3080ff 50%, #2c304d 50%, #2c304d 100%);
            border-radius: 10px;
            height: 8px;
        }

        /* Track styles for Firefox */
        .strength-slider input[type="range"][b-x95rgsnjwp]::-moz-range-track {
            background: #2c304d;
            border-radius: 10px;
            height: 8px;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-moz-range-progress {
            background: #3080ff;
            border-radius: 10px;
            height: 8px;
        }

        /* Track styles for IE/Edge */
        .strength-slider input[type="range"][b-x95rgsnjwp]::-ms-track {
            background: transparent;
            border-color: transparent;
            color: transparent;
            height: 8px;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-ms-fill-lower {
            background: #3080ff;
            border-radius: 10px;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-ms-fill-upper {
            background: #2c304d;
            border-radius: 10px;
        }

.mode-selector[b-x95rgsnjwp] {
    margin: 1.5rem 0;
}

.mode-tabs[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mode-tab[b-x95rgsnjwp] {
    padding: 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #d0d0d0;
    background: #2c304d;
    border-radius: 6px;
    border-left: 3px solid transparent;
}

    .mode-tab:hover[b-x95rgsnjwp] {
        background: #363b5e;
    }

    .mode-tab.active[b-x95rgsnjwp] {
        background: #3a3f66;
        color: white;
        border-left: 3px solid #3080ff;
    }

.upload-reference-btn[b-x95rgsnjwp] {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background-color: #3080ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    .upload-reference-btn:hover[b-x95rgsnjwp] {
        background-color: #2670f0;
    }

    .upload-reference-btn:active[b-x95rgsnjwp] {
        transform: translateY(1px);
    }

.uploaded-reference[b-x95rgsnjwp] {
    border: 3px solid #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.reference-uploaded-message[b-x95rgsnjwp] {
    background-color: rgba(76, 175, 80, 0.15);
    border-left: 3px solid #4CAF50;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .reference-uploaded-message svg[b-x95rgsnjwp] {
        margin-right: 0.5rem;
    }

    .reference-uploaded-message span[b-x95rgsnjwp] {
        font-weight: 500;
        color: #4CAF50;
        display: flex;
        align-items: center;
    }

.reference-details[b-x95rgsnjwp] {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #c0c0c0;
}

.create-new-btn[b-x95rgsnjwp] {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
    align-self: flex-start;
}

    .create-new-btn:hover[b-x95rgsnjwp] {
        background-color: rgba(255, 255, 255, 0.2);
    }

.combined-preview-section[b-x95rgsnjwp] {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #1e2233;
    border-radius: 10px;
    color: white;
}

    .combined-preview-section h5[b-x95rgsnjwp] {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 500;
    }

.combined-preview[b-x95rgsnjwp] {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

    .combined-preview img[b-x95rgsnjwp] {
        display: block;
        width: 100%;
        height: auto;
    }

.strength-controls[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.strength-slider[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .strength-slider label[b-x95rgsnjwp] {
        font-weight: 500;
        color: #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .strength-slider input[type="range"][b-x95rgsnjwp] {
        width: 100%;
        height: 8px;
        border-radius: 10px;
        background: #2c304d;
        outline: none;
        -webkit-appearance: none;
    }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3080ff;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: background 0.15s ease;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #3080ff;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: background 0.15s ease;
            border: none;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-webkit-slider-runnable-track {
            background: linear-gradient(to right, #3080ff 0%, #3080ff 50%, #2c304d 50%, #2c304d 100%);
            border-radius: 10px;
            height: 8px;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-moz-range-track {
            background: #2c304d;
            border-radius: 10px;
            height: 8px;
        }

        .strength-slider input[type="range"][b-x95rgsnjwp]::-moz-range-progress {
            background: #3080ff;
            border-radius: 10px;
            height: 8px;
        }

.mode-selector[b-x95rgsnjwp] {
    margin: 1.5rem 0;
}

.mode-tabs[b-x95rgsnjwp] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mode-tab[b-x95rgsnjwp] {
    padding: 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #d0d0d0;
    background: #2c304d;
    border-radius: 6px;
    border-left: 3px solid transparent;
}

    .mode-tab:hover[b-x95rgsnjwp] {
        background: #363b5e;
    }

    .mode-tab.active[b-x95rgsnjwp] {
        background: #3a3f66;
        color: white;
        border-left: 3px solid #3080ff;
    }

.bottom-actions[b-x95rgsnjwp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.tab-mode-selector[b-x95rgsnjwp] {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    background: #2c304d;
    border: 1px solid #3a3f66;
}

.tab-mode[b-x95rgsnjwp] {
    padding: 0.6rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #d0d0d0;
}

    .tab-mode:not(:last-child)[b-x95rgsnjwp] {
        border-right: 1px solid #3a3f66;
    }

    .tab-mode:hover[b-x95rgsnjwp] {
        background: #363b5e;
    }

    .tab-mode.active[b-x95rgsnjwp] {
        background: #3080ff;
        color: white;
    }

.upload-reference-btn[b-x95rgsnjwp] {
    padding: 0.6rem 1.5rem;
    background-color: #3080ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    .upload-reference-btn:hover[b-x95rgsnjwp] {
        background-color: #2670f0;
    }

    .upload-reference-btn:active[b-x95rgsnjwp] {
        transform: translateY(1px);
    }

.uploaded-reference[b-x95rgsnjwp] {
    border: 3px solid #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.reference-uploaded-message[b-x95rgsnjwp] {
    background-color: rgba(76, 175, 80, 0.15);
    border-left: 3px solid #4CAF50;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .reference-uploaded-message svg[b-x95rgsnjwp] {
        margin-right: 0.5rem;
    }

    .reference-uploaded-message span[b-x95rgsnjwp] {
        font-weight: 500;
        color: #4CAF50;
        display: flex;
        align-items: center;
    }

.reference-details[b-x95rgsnjwp] {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #c0c0c0;
}

.create-new-btn[b-x95rgsnjwp] {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
    align-self: flex-start;
}

    .create-new-btn:hover[b-x95rgsnjwp] {
        background-color: rgba(255, 255, 255, 0.2);
    }
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/PresetSelectionTab.razor.rz.scp.css */
.preset-container[b-9gojr6doz6] {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

.preset-selection[b-9gojr6doz6] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    width: 100%;
}

.preset-item[b-9gojr6doz6] {
    background-color: #313244;
    border: 1px solid #45475a;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.preset-content[b-9gojr6doz6] {
    flex: 1;
}

.preset-item:hover[b-9gojr6doz6] {
    background-color: #3b3d57;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.preset-item.selected[b-9gojr6doz6] {
    background-color: #313d63;
    border-color: #89b4fa;
    box-shadow: 0 0 0 2px rgba(137, 180, 250, 0.25);
}

.preset-selected-indicator[b-9gojr6doz6] {
    color: #89b4fa;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 8px;
}

.preset-item h4[b-9gojr6doz6] {
    color: #cdd6f4;
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.preset-item p[b-9gojr6doz6] {
    color: #a6adc8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/TextEditorComponent.razor.rz.scp.css */
.mdlf-modal-overlay[b-kg83ad6jqh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mdlf-modal[b-kg83ad6jqh] {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mdlf-modal-header[b-kg83ad6jqh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .mdlf-modal-header h3[b-kg83ad6jqh] {
        margin: 0;
        color: #333;
    }

.mdlf-close-button[b-kg83ad6jqh] {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 24px;
    color: #666;
}

.mdlf-modal-body[b-kg83ad6jqh] {
    margin-bottom: 20px;
}

.mdlf-form-group[b-kg83ad6jqh] {
    margin-bottom: 15px;
}

    .mdlf-form-group label[b-kg83ad6jqh] {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #444;
    }

.mdlf-text-input[b-kg83ad6jqh] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.mdlf-range-input[b-kg83ad6jqh] {
    width: 100%;
}

.mdlf-modal-footer[b-kg83ad6jqh] {
    text-align: right;
}

.mdlf-btn[b-kg83ad6jqh] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}

.mdlf-btn-success[b-kg83ad6jqh] {
    background-color: #4CAF50;
    color: white;
}

    .mdlf-btn-success:hover[b-kg83ad6jqh] {
        background-color: #45a049;
    }

.mdlf-btn-secondary[b-kg83ad6jqh] {
    background-color: #6c757d;
    color: white;
}

    .mdlf-btn-secondary:hover[b-kg83ad6jqh] {
        background-color: #5a6268;
    }


.mdlf-modal input[type="range"][b-kg83ad6jqh] {
    --webkit-appearance: slider-horizontal !important;
    border-radius: 0 !important;
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/Element/TextPromptTab.razor.rz.scp.css */
.text-prompt-grid[b-ujtbv99y81] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.prompt-row[b-ujtbv99y81] {
    display: flex;
    gap: 10px;
    width: 100%;
}

.prompt-cell[b-ujtbv99y81] {
    flex: 1;
    min-width: 0; /* This prevents flex items from overflowing */
}

    .prompt-cell textarea[b-ujtbv99y81] {
        width: 100%;
        height: 100px;
        resize: vertical;
        background-color: #313244;
        color: #cdd6f4;
        border: 1px solid #45475a;
        border-radius: 4px;
        padding: 8px;
        font-size: 0.9rem;
        box-sizing: border-box;
    }

        .prompt-cell textarea:focus[b-ujtbv99y81] {
            outline: none;
            border-color: #89b4fa;
            box-shadow: 0 0 0 2px rgba(137, 180, 250, 0.25);
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .prompt-row[b-ujtbv99y81] {
        flex-direction: column;
    }

    .prompt-cell textarea[b-ujtbv99y81] {
        height: 80px;
    }
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/NewFolder/GeneratedImageDisplay.razor.rz.scp.css */
/* Main result container */
.result[b-urg229mrbq] {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    gap: 20px;
}

/* Loading image styles */
#loading-img-run[b-urg229mrbq] {
    width: 256px;
    height: 256px;
    image-rendering: pixelated;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: rgba(15, 18, 25, 0.8);
    border-radius: 8px;
    padding: 10px;
}

/* Generated image styles */
#gen-img[b-urg229mrbq] {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    image-rendering: pixelated;
}

    #gen-img:hover[b-urg229mrbq] {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(106, 235, 45, 0.3);
    }

/* Image actions container */
.image-actions[b-urg229mrbq] {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Process button styles */
.process-button[b-urg229mrbq] {
    background-color: #6aeb2d;
    color: #0f1219;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
}

    .process-button:hover[b-urg229mrbq] {
        background-color: #5fd624;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(106, 235, 45, 0.3);
    }

    .process-button:active[b-urg229mrbq] {
        transform: translateY(1px);
    }

    .process-button i[b-urg229mrbq] {
        font-size: 1.2em;
        transition: transform 0.3s ease;
    }

    .process-button:hover i[b-urg229mrbq] {
        transform: scale(1.1);
    }

    /* Button ripple effect */
    .process-button[b-urg229mrbq]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .process-button:focus:not(:active)[b-urg229mrbq]::after {
        animation: ripple-b-urg229mrbq 1s ease-out;
    }

/* Loading state styles */
.loading[b-urg229mrbq] {
    position: relative;
}

    .loading[b-urg229mrbq]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 18, 25, 0.7);
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Progress indicator */
.progress-indicator[b-urg229mrbq] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #6aeb2d;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin-b-urg229mrbq 1s linear infinite;
}

/* Tooltip styles */
.tooltip[b-urg229mrbq] {
    position: absolute;
    background: rgba(15, 18, 25, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    white-space: nowrap;
}

/* Image size indicator */
.size-indicator[b-urg229mrbq] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 18, 25, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
}

/* Animations */
@keyframes ripple-b-urg229mrbq {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

@keyframes spin-b-urg229mrbq {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeIn-b-urg229mrbq {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success animation */
.generation-success[b-urg229mrbq] {
    animation: successPulse-b-urg229mrbq 0.5s ease-out;
}

@keyframes successPulse-b-urg229mrbq {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 235, 45, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(106, 235, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(106, 235, 45, 0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    #gen-img[b-urg229mrbq] {
        max-width: 90vw;
    }

    .image-actions[b-urg229mrbq] {
        gap: 8px;
    }

    .process-button[b-urg229mrbq] {
        padding: 8px 12px;
        min-width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .result[b-urg229mrbq] {
        margin-top: 20px;
    }

    #loading-img-run[b-urg229mrbq] {
        width: 200px;
        height: 200px;
    }

    .process-button[b-urg229mrbq] {
        padding: 6px 10px;
        min-width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .tooltip[b-urg229mrbq] {
        display: none; /* Hide tooltips on mobile */
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .process-button[b-urg229mrbq] {
        background-color: #6aeb2d;
        color: #0f1219;
    }

        .process-button:hover[b-urg229mrbq] {
            background-color: #5fd624;
        }

    .tooltip[b-urg229mrbq] {
        background: rgba(15, 18, 25, 0.95);
    }
}

/* Accessibility */
.process-button:focus[b-urg229mrbq] {
    outline: 2px solid #6aeb2d;
    outline-offset: 2px;
}

    .process-button:focus:not(:focus-visible)[b-urg229mrbq] {
        outline: none;
    }

/* Loading transitions */
.fade-enter[b-urg229mrbq] {
    opacity: 0;
}

.fade-enter-active[b-urg229mrbq] {
    opacity: 1;
    transition: opacity 300ms ease-in;
}

.fade-exit[b-urg229mrbq] {
    opacity: 1;
}

.fade-exit-active[b-urg229mrbq] {
    opacity: 0;
    transition: opacity 300ms ease-in;
}

/* Image container wrapper */
.image-wrapper[b-urg229mrbq] {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

/* Custom scrollbar for containers */
[b-urg229mrbq]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

[b-urg229mrbq]::-webkit-scrollbar-track {
    background: rgba(15, 18, 25, 0.1);
    border-radius: 4px;
}

[b-urg229mrbq]::-webkit-scrollbar-thumb {
    background: #6aeb2d;
    border-radius: 4px;
}

    [b-urg229mrbq]::-webkit-scrollbar-thumb:hover {
        background: #5fd624;
    }
/* _content/AIMCTextureGenAPI/Shared/ViewElement/NewFolder/QueueDisplay.razor.rz.scp.css */
/* Base container styles */
.eiro-toggle-container[b-p577jpk328] {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    width: 200px;
}

.eiro-toggle-btn[b-p577jpk328] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #105508;
    border: 2px solid #4caf50;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .eiro-toggle-btn:hover[b-p577jpk328] {
        background-color: #507508;
        box-shadow: 0 4px 8px rgba(35, 180, 56, 0.6);
    }

.eiro-toggle-btn-active[b-p577jpk328] {
    background-color: #4caf50;
    border-color: #333333;
}

    .eiro-toggle-btn-active:hover[b-p577jpk328] {
        background-color: #45a049;
    }

.eiro-toggle-btn i[b-p577jpk328] {
    margin-right: 8px;
}

/* Main container */
.eiro-container[b-p577jpk328] {
    position: fixed;
    top: 150px;
    right: 20px;
    width: 380px;
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.eiro-container-hidden[b-p577jpk328] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

/* Queue items */
.eiro-item[b-p577jpk328] {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #005702b3;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

    .eiro-item:hover[b-p577jpk328] {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(72, 197, 70, 0.15);
        background-color: rgba(72, 197, 70, 0.6);
    }

.eiro-item-failure[b-p577jpk328] {
    border-left: 4px solid #f44336;
}

.eiro-item-operating[b-p577jpk328] {
    border-left: 4px solid #4bf321;
}

.eiro-item-completed[b-p577jpk328] {
    border-left: 4px solid #4caf50;
}

.eiro-item-waiting[b-p577jpk328] {
    border-left: 4px solid #ff9800;
}

/* Text and content styling */
.eiro-item-text[b-p577jpk328] {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.eiro-description[b-p577jpk328] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.eiro-ellipsis[b-p577jpk328] {
    margin-left: 4px;
    opacity: 0.7;
}

/* Button styles */
.eiro-btn[b-p577jpk328] {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

    .eiro-btn:hover[b-p577jpk328] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .eiro-btn:active[b-p577jpk328] {
        transform: translateY(1px);
    }

    .eiro-btn[b-p577jpk328]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .eiro-btn:focus:not(:active)[b-p577jpk328]::after {
        animation: ripple-b-p577jpk328 1s ease-out;
    }

.eiro-btn-expand[b-p577jpk328] {
    background-color: #4caf50;
    margin-left: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

.eiro-btn-update[b-p577jpk328] {
    background-color: #28d545;
}

.eiro-btn-delete[b-p577jpk328] {
    background-color: #f44336;
}

/* Progress bar */
.eiro-progress-container[b-p577jpk328] {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.eiro-progress-bar[b-p577jpk328] {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .eiro-progress-bar[b-p577jpk328]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100% );
        animation: eiro-progress-shine-b-p577jpk328 2s infinite;
    }

.eiro-progress-text[b-p577jpk328] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Button group */
.eiro-btn-group[b-p577jpk328] {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

/* Update icon */
.eiro-update-icon[b-p577jpk328] {
    position: absolute;
    top: 14px;
    right: -50px;
    background-color: #e78e09;
    color: white;
    width: 30px;
    height: 30px;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-out;
}

    .eiro-update-icon i[b-p577jpk328] {
        margin-top: 5px;
        margin-right: 1px;
        font-size: 18px;
    }

.eiro-item.updated .eiro-update-icon[b-p577jpk328] {
    right: 10px;
    animation: fadeInOut-b-p577jpk328 3s ease-in-out;
}

/* Animations */
@keyframes eiro-progress-shine-b-p577jpk328 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes ripple-b-p577jpk328 {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

@keyframes fadeInOut-b-p577jpk328 {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .eiro-container[b-p577jpk328] {
        width: calc(100% - 40px);
        max-width: 380px;
        top: 140px;
        right: 10px;
    }

    .eiro-item[b-p577jpk328] {
        padding: 15px;
    }

    .eiro-btn[b-p577jpk328] {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eiro-container[b-p577jpk328] {
        width: calc(100% - 20px);
        max-width: none;
        top: 140px;
        right: 5px;
        padding: 15px;
    }

    .eiro-item[b-p577jpk328] {
        padding: 12px;
    }

    .eiro-description[b-p577jpk328] {
        font-size: 13px;
    }

    .eiro-btn[b-p577jpk328] {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Add this new style at the end of the file */
.eiro-time-estimate[b-p577jpk328] {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #ffae09;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Add these new styles at the end of the file */
.eiro-wait-time[b-p577jpk328] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    padding: 8px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 13px;
    font-weight: 500;
}

.eiro-wait-time i[b-p577jpk328] {
    font-size: 16px;
}
/* _content/AIMCTextureGenAPI/Shared/ViewElement/NewFolder/RecentFullImagesDisplay.razor.rz.scp.css */
/* Main container */
.custom-el-style[b-2umlqhu6ym] {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 180px;
    max-height: 80vh;
    overflow-y: auto;
    background: linear-gradient(-45deg, #1a2f0d, #2d4a14, #3c6319, #4a7c1e);
    background-size: 400% 400%;
    animation: gradientBG-b-2umlqhu6ym 15s ease infinite;
    border-radius: 10px;
    padding: 10px;
    z-index: 1030;
    font-size: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: height 0.8s ease, width 0.8s ease;
}

/* Toggle button */
.toggle-btn[b-2umlqhu6ym] {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 0.9rem;
    background-color: #6aeb2d;
    color: #294708;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .toggle-btn:hover[b-2umlqhu6ym] {
        background-color: #7dff40;
        transform: scale(1.05);
    }

/* Image container */
.image-container[b-2umlqhu6ym] {
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .image-container:hover[b-2umlqhu6ym] {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .image-container.new-image[b-2umlqhu6ym]::after {
        content: 'NEW';
        position: absolute;
        top: 5px;
        left: 5px;
        background-color: #ffd700;
        color: #294708;
        padding: 2px 4px;
        border-radius: 3px;
        font-size: 0.6rem;
        font-weight: bold;
        z-index: 2;
    }

/* Generated image */
.generated-image[b-2umlqhu6ym] {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.image-container:hover .generated-image[b-2umlqhu6ym] {
    filter: brightness(0.7);
}

/* Options icon */
.options-icon[b-2umlqhu6ym] {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(41, 71, 8, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    z-index: 3;
    opacity: 0;
}

.image-container:hover .options-icon[b-2umlqhu6ym] {
    opacity: 1;
}

.options-icon:hover[b-2umlqhu6ym] {
    background-color: rgba(41, 71, 8, 0.9);
    transform: scale(1.1);
}

/* Button container */
.button-container[b-2umlqhu6ym] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(41, 71, 8, 0.9);
    padding: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 4;
}

.image-container:hover .button-container[b-2umlqhu6ym] {
    transform: translateY(0);
}

/* Custom buttons */
.custom-btn-dn[b-2umlqhu6ym] {
    width: 100%;
    margin: 4px 0;
    padding: 6px;
    background-color: #4a7c14;
    border: none;
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .custom-btn-dn:hover[b-2umlqhu6ym] {
        background-color: #5e9c1a;
        transform: translateY(-1px);
    }

    .custom-btn-dn i[b-2umlqhu6ym] {
        font-size: 0.9rem;
    }

/* Show/Hide states */
.sudi-shown[b-2umlqhu6ym] {
    width: 180px;
}

.sudi-not-shown[b-2umlqhu6ym] {
    width: 5em;
}

/* Display icon */
.display-icon-img[b-2umlqhu6ym] {
    display: none;
}

/* Scrollbar styles */
.custom-el-style[b-2umlqhu6ym]::-webkit-scrollbar {
    width: 6px;
}

.custom-el-style[b-2umlqhu6ym]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.custom-el-style[b-2umlqhu6ym]::-webkit-scrollbar-thumb {
    background: rgba(106, 235, 45, 0.5);
    border-radius: 3px;
}

    .custom-el-style[b-2umlqhu6ym]::-webkit-scrollbar-thumb:hover {
        background: rgba(106, 235, 45, 0.7);
    }

/* Animations */
@keyframes gradientBG-b-2umlqhu6ym {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn-b-2umlqhu6ym {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.image-loading[b-2umlqhu6ym] {
    position: relative;
}

    .image-loading[b-2umlqhu6ym]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(41, 71, 8, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Responsive design */
@media screen and (max-width: 768px) {
    .display-icon-img[b-2umlqhu6ym] {
        display: block !important;
        font-size: 1.4rem;
        color: white;
    }

        .display-icon-img ~ .text[b-2umlqhu6ym] {
            display: none;
        }

    .text-bi-card-icon[b-2umlqhu6ym] {
        display: none;
    }

    .custom-el-style[b-2umlqhu6ym] {
        width: 150px;
    }

    .button-container[b-2umlqhu6ym] {
        padding: 5px;
    }

    .custom-btn-dn[b-2umlqhu6ym] {
        padding: 4px;
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .custom-el-style[b-2umlqhu6ym] {
        bottom: 10px;
        left: 10px;
        width: 120px;
    }

    .generated-image[b-2umlqhu6ym] {
        height: 80px;
    }

    .options-icon[b-2umlqhu6ym] {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}

/* Active states */
.image-container.active .button-container[b-2umlqhu6ym] {
    transform: translateY(0);
}

.image-container.active .generated-image[b-2umlqhu6ym] {
    filter: brightness(0.7);
}

/* Button focus states */
.custom-btn-dn:focus[b-2umlqhu6ym] {
    outline: 2px solid #6aeb2d;
    outline-offset: 2px;
}

    .custom-btn-dn:focus:not(:focus-visible)[b-2umlqhu6ym] {
        outline: none;
    }

/* Loading spinner */
.loading-spinner[b-2umlqhu6ym] {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin-b-2umlqhu6ym 1s linear infinite;
}

@keyframes spin-b-2umlqhu6ym {
    to {
        transform: rotate(360deg);
    }
}

/* Error state */
.image-error[b-2umlqhu6ym] {
    position: relative;
}

    .image-error[b-2umlqhu6ym]::after {
        content: '!';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        color: #ff4444;
    }
