/* /Components/ConfirmationModal.razor.rz.scp.css */
.modal-overlay[b-13f4kus7d5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-13f4kus7d5] {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    width: 100%;
    margin: 1rem;
}

.modal-content h3[b-13f4kus7d5] {
    text-align: center;
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-body p[b-13f4kus7d5] {
    color: var(--neutral-light);
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.modal-actions[b-13f4kus7d5] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

/* We'll define a new danger button style that inherits from button-main */
.button-danger[b-13f4kus7d5] {
    background-color: var(--danger-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    color: var(--button-text);
    text-decoration: none;
}

.button-danger:hover[b-13f4kus7d5] {
    background-color: var(--danger-color-hover);
}
/* /Components/Examples/ExampleSzfGuiEditor.razor.rz.scp.css */
/* /Components/SzfDataListView.razor.rz.scp.css */
.szf-list-view[b-02gmk0skhi] {
    padding: 2rem;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: stretch;
}

/* Search bar styles */
.szf-list-search-bar[b-02gmk0skhi] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.szf-list-search-bar input[type="text"][b-02gmk0skhi] {
    flex-grow: 1;
    padding: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background-color: var(--form-background);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.szf-list-search-bar input[type="text"]:focus[b-02gmk0skhi] {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(91, 137, 179, 0.3);
}

.szf-list-search-bar input[b-02gmk0skhi]::placeholder {
    color: var(--neutral-medium);
}

.szf-list-search-bar button[b-02gmk0skhi] {
    padding: 0.6rem 1rem;
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.szf-list-search-bar button:hover[b-02gmk0skhi] {
    background-color: var(--accent-color);
}

.szf-list-search-bar button img[b-02gmk0skhi] {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

/* List styles */
.szf-items-list[b-02gmk0skhi] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* List item styles */
.szf-list-item[b-02gmk0skhi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    border: 1px solid var(--primary-color-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.szf-list-item:hover[b-02gmk0skhi] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.szf-list-item-header[b-02gmk0skhi] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
}

.szf-item-name[b-02gmk0skhi] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
}

.szf-item-version[b-02gmk0skhi] {
    font-size: 0.9rem;
    color: var(--neutral-light);
    background-color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.szf-item-other-info[b-02gmk0skhi] {
    font-size: 1rem;
    color: var(--neutral-medium);
    font-style: italic;
}

/* Action button styles */
.szf-list-item-buttons[b-02gmk0skhi] {
    display: flex;
    gap: 0.5rem;
}

.szf-list-item-buttons button[b-02gmk0skhi] {
    background: none;
    border: 1px solid var(--primary-color-light);
    border-radius: 6px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s;
}

.szf-list-item-buttons button:hover[b-02gmk0skhi] {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
}

.szf-list-item-buttons button.delete-button:hover[b-02gmk0skhi] {
    background-color: var(--danger-color);
    border-color: var(--danger-color-hover);
}

.szf-list-item-buttons button img[b-02gmk0skhi] {
    filter: invert(1);
    width: 20px;
    height: 20px;
}
/* /Components/Views/DatasetViewer.razor.rz.scp.css */
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-4xy14ftjue] {
    position: relative;
    display: flex;
    min-height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color);
}

.topbar[b-4xy14ftjue] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: var(--background-color);
    z-index: 1200;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 8px rgba(0,0,0,0.5);
}

.topbar-responsive[b-4xy14ftjue] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-color);
    z-index: 1200;
    display: flex;
    align-items: center;
    box-shadow: 0 6px 8px rgba(0,0,0,0.5);
    height: 64px;
}

.nav-bars-icon[b-4xy14ftjue] {
    width: 40px;
    height: 40px;
    filter: invert(1);
    display: block;
    transition: width 0.2s, height 0.2s;
}

@media (min-width: 600px) {
    .topbar-responsive[b-4xy14ftjue] {
        height: 72px;
    }
    .nav-bars-icon[b-4xy14ftjue] {
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 900px) {
    .topbar-responsive[b-4xy14ftjue] {
        height: 80px;
    }
    .nav-bars-icon[b-4xy14ftjue] {
        width: 56px;
        height: 56px;
    }
}

.main-content[b-4xy14ftjue] {
    display: flex;
    flex: 1;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    align-items: stretch;
    text-align: center;
    flex-direction: column;
    margin-top: 64px; /* slightly more margin for comfort */
}

@media (min-width: 600px) {
    .main-content[b-4xy14ftjue] {
        margin-top: 72px;
    }
}
@media (min-width: 900px) {
    .main-content[b-4xy14ftjue] {
        margin-top: 80px;
    }
}

/* Backdrop for nav overlay */
.nav-backdrop[b-4xy14ftjue] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1099;
}

.nav-bars-icon[b-4xy14ftjue] {
    width: 28px;
    height: 28px;
    filter: invert(1);
    display: block;
}

.navbar-toggle[b-4xy14ftjue] {
    background: none;
    border: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* /Layout/NavBar.razor.rz.scp.css */
#navbar[b-jpwn5u7ofs] {
    position: fixed;
    left: 0;
    top: 56px;
    height: calc(100vh - 56px);
    width: 220px;
    background: var(--background-color);
    box-shadow: 4px 0 10px rgba(0,0,0,0.5);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 1rem 1rem;
}

#navbar.open[b-jpwn5u7ofs] {
    transform: translateX(0);
}

#navbar-logo[b-jpwn5u7ofs] {
    width: 40px;
    margin-bottom: 2rem;
}

#navbar[b-jpwn5u7ofs]  a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    margin: 0.2rem 0;
}

#navbar[b-jpwn5u7ofs]  .nav-icon {
    width: 20px;
    height: 20px;
    filter: invert(1); /* Makes the SVG white */
}

#navbar[b-jpwn5u7ofs]  a:hover {
    background-color: var(--primary-color);
}

#navbar[b-jpwn5u7ofs]  a.active {
    background-color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
}

/* Hide nav by default, overlay when open */
body[b-jpwn5u7ofs], .main-content[b-jpwn5u7ofs] {
    margin-left: 0 !important;
}

/* Remove all media queries and always show the hamburger icon */
.navbar-toggle[b-jpwn5u7ofs], .navbar-toggle .bar[b-jpwn5u7ofs] {
    display: none !important;
}
/* /Pages/Library/Datasets/Datasets.razor.rz.scp.css */
/* /Pages/Library/Library.razor.rz.scp.css */
/* /Pages/SzfParseTest.razor.rz.scp.css */
.main-content[b-8cxxipd5cx] {
    text-align: left; !important;
}
