/* /Content/DataPresentation/Details/ElementDropdownRow.razor.rz.scp.css */
.elements-dropdown-container[b-q44ygutjlb] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0px;
    box-sizing: border-box;
    font-family: inherit;
}

.elements-dropdown-header[b-q44ygutjlb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 6px;
}

.elements-dropdown-label[b-q44ygutjlb] {
    font-size: 0.65rem;
    color: white;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 5px;
}

.collection-remove[b-q44ygutjlb] {
    color: #e57373;
    cursor: pointer;
    user-select: none;
    font-size: 0.75rem;
    line-height: 1;
    padding-right: 5px;
}

.dropdown-wrapper[b-q44ygutjlb] {
    position: relative;
    width: 100%;
}

.dropdown-trigger[b-q44ygutjlb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #242424;
    color: #e0e0e0;
    border: 1px solid #3c3c3c;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .dropdown-trigger:hover[b-q44ygutjlb] {
        background-color: #2c2c2c;
        border-color: #4c4c4c;
        color: #ffffff;
    }

    .dropdown-trigger.open[b-q44ygutjlb] {
        border-color: #1976d2;
        box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.dropdown-placeholder-text[b-q44ygutjlb] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 8px;
    flex: 1;
}

.dropdown-arrow[b-q44ygutjlb] {
    font-size: 0.65rem;
    color: #888;
    transition: transform 0.2s ease;
}

.dropdown-backdrop[b-q44ygutjlb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 990;
    background: transparent;
}

.dropdown-menu[b-q44ygutjlb] {
    position: fixed;
    visibility: hidden;
    inset: auto;
    margin: 0;
    background-color: #1e1e1e;
    border: 1px solid #3c3c3c;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
    box-sizing: border-box;
    animation: fadeInDropdown-b-q44ygutjlb 0.15s ease-out;
}

@keyframes fadeInDropdown-b-q44ygutjlb {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.dropdown-no-items[b-q44ygutjlb] {
    padding: 12px;
    color: #888;
    font-style: italic;
    font-size: 0.75rem;
    text-align: center;
}

.dropdown-items-list[b-q44ygutjlb] {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
}

.dropdown-item[b-q44ygutjlb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-left: 2px;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #282828;
}

    .dropdown-item:last-child[b-q44ygutjlb] {
        border-bottom: none;
    }

    .dropdown-item:hover[b-q44ygutjlb] {
        background-color: #252525;
    }

.dropdown-checkbox-wrapper[b-q44ygutjlb] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
}

.dropdown-checkbox[b-q44ygutjlb] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid #555;
    border-radius: 3px;
    outline: none;
    background-color: #1a1a1a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

    .dropdown-checkbox:checked[b-q44ygutjlb] {
        background-color: #1976d2;
        border-color: #1976d2;
    }

        .dropdown-checkbox:checked[b-q44ygutjlb]::after {
            content: "\2713";
            color: white;
            font-size: 9px;
            font-weight: bold;
        }

    .dropdown-checkbox:hover[b-q44ygutjlb] {
        border-color: #1976d2;
    }

.dropdown-item-text[b-q44ygutjlb] {
    font-size: 0.75rem;
    color: #d0d0d0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none;
}

.dropdown-checkbox-wrapper:hover .dropdown-item-text[b-q44ygutjlb] {
    color: #ffffff;
}

.dropdown-item-input[b-q44ygutjlb] {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.7rem;
    width: 90px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.dropdown-item-input:placeholder-shown[b-q44ygutjlb] {
    width: 75px;
}

.dropdown-item-input:hover[b-q44ygutjlb],
.dropdown-item-input:focus[b-q44ygutjlb] {
    width: 110px;
    background-color: #333;
    border-color: #1976d2;
    outline: none;
}

.dropdown-item-input[b-q44ygutjlb]::placeholder {
    color: #666;
    font-style: italic;
}

.select-all-item[b-q44ygutjlb] {
    display: flex;
}
/* /Content/DataPresentation/Details/ElementsDropdown.razor.rz.scp.css */
.elements-dropdowns-container[b-eb9p9kodjs] {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    box-sizing: border-box;
    background-color: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 8px;
    padding: 8px;
    padding-bottom: 72px;
    margin-bottom: 72px;
}

.element-dropdown-card[b-eb9p9kodjs] {
    background-color: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.element-dropdown-card:hover[b-eb9p9kodjs] {
    border-color: #5a5a5a;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.no-elements-placeholder[b-eb9p9kodjs] {
    padding: 20px;  
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
}
/* /Content/DataPresentation/Details/ObjectDetails.razor.rz.scp.css */
.scroll-wrapper[b-0xjpmhgr9b] {
    width: 100%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
}

.object-details-wrapper[b-0xjpmhgr9b] {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    min-height: 280px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.no-object-selected[b-0xjpmhgr9b] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    gap: 10px;
    font-size: 10px;
    color: gray;
}

.toolbar-area[b-0xjpmhgr9b] {
    height: 30px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 12px;
    padding: 0px 10px 0px 15px;
}

.base-properties-area[b-0xjpmhgr9b] {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 1rem;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    align-items: end;
    margin-top: -5px;
}

.property-fields-grid[b-0xjpmhgr9b] {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Name | Category */
    grid-template-rows: auto auto; /* row1: Name+Category, row2: Description */
    gap: 0.50rem;
    width: 100%;
}

    .property-fields-grid .description[b-0xjpmhgr9b] {
        grid-column: 1 / span 2;
    }

.field-group[b-0xjpmhgr9b] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .field-group label[b-0xjpmhgr9b] {
        font-size: 0.6rem;
        color: #ccc;
        margin-bottom: 4px;
    }

    .field-group input[b-0xjpmhgr9b] {
        width: 100%;
        background-color: #2a2a2a;
        color: white;
        border: 1px solid #444;
        border-radius: 4px;
        padding: 3px 5px;
        font-size: 0.60rem;
        line-height: 1.0;
        box-sizing: border-box;
    }

    .field-group color[b-0xjpmhgr9b] {
        width: 10% !important;
        background-color: #2a2a2a;
        color: white;
        border: 1px solid #444;
        border-radius: 4px;
        padding: 3px 5px;
        font-size: 0.60rem;
        line-height: 1.0;
        box-sizing: border-box;
    }

.color-picker[b-0xjpmhgr9b] {
    width: 10% !important;
    height: 18px;
    padding: 1px;
    background-color: #444;
}

.specific-properties[b-0xjpmhgr9b] {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 0.6rem;
    color: #ccc;
    padding: 0 10px;
    margin-top: 4px;
    background-color: #222;
    overflow-x: hidden;
}

.specific-properties-label[b-0xjpmhgr9b] {
    font-size: 0.6rem;
    color: #ccc;
    margin-bottom: 4px;
    padding-left: 0;
    padding-top: 4px;
}

.toolbar-left[b-0xjpmhgr9b] {
    display: flex;
    align-items: center;
    font-size: 10px;
}

.toolbar-folder-icon[b-0xjpmhgr9b] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    color: #ccc;
    font-size: 14px;
}

.toolbar-checkbox-label[b-0xjpmhgr9b] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    user-select: none;
}

.toolbar-checkbox[b-0xjpmhgr9b] {
    width: 12px;
    height: 12px;
    accent-color: #4a90d9;
    cursor: pointer;
}

.text-icon[b-0xjpmhgr9b] { /* USED WHEN THE OBJECT HAS NO ICON (The Icon will be based on the Behaviors of the object) */
    font-family: 'Font Awesome 6 Free';
    font-size: 1.5rem;
    background-color: #333;
    color: white;
    padding: 5px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}

.img-icon[b-0xjpmhgr9b] { /* USED WHEN THE OBJECT HAS THE ICON ATTRIBUTE NOT NULL (Read from BASE64) */
    background-color: #333;
    color: white;
    padding: 5px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.content-area[b-0xjpmhgr9b] {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px;
    background-color: #222;
    overflow: auto;
    box-sizing: border-box;
}

.panels-container[b-0xjpmhgr9b] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.panel-headers[b-0xjpmhgr9b] {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.panel-icon[b-0xjpmhgr9b] {
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    margin-right: 0.4rem;
    font-size: 0.7rem;
    line-height: 1;
}

.panel-header[b-0xjpmhgr9b] {
    background-color: #111;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    font-size: 0.6rem;
    transition: background-color 0.2s ease;
}

    .panel-header.active[b-0xjpmhgr9b] {
        background-color: #333;
    }

.panel-content[b-0xjpmhgr9b] {
    flex: 1;
    background-color: #333;
    border: solid;
    border-color: #333;
    border-width: 1px;
    border-radius: 0px 0px 5px 5px;
    padding: 1px;
    overflow-y: auto;
    color: white;
    font-size: 0.85rem;
}

.details-context-menu-overlay[b-0xjpmhgr9b] {
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    background: transparent;
    pointer-events: auto;
}

.details-icon-context-menu[b-0xjpmhgr9b] {
    z-index: 2147483647;
    max-height: 300px;
    overflow-y: auto;
    min-width: 240px;
}

.details-menu-button[b-0xjpmhgr9b] {
    display: flex;
    align-items: center;
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.details-upload-menu-item[b-0xjpmhgr9b] {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
}


.details-hidden-input[b-0xjpmhgr9b] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


.tree-context-menu[b-0xjpmhgr9b] {
    position: fixed;
    display: inline-block;
    background-color: #111;
    color: white;
    z-index: 9999;
    min-width: 120px;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

    .tree-context-menu.details-icon-context-menu[b-0xjpmhgr9b] {
        z-index: 2147483647;
        max-height: 300px;
        overflow-y: auto;
        min-width: 240px;
    }

    .tree-context-menu .menu-item[b-0xjpmhgr9b] {
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 6px 12px;
        cursor: pointer;
        white-space: nowrap;
    }

        .tree-context-menu .menu-item:hover[b-0xjpmhgr9b] {
            background-color: #333;
        }

.menu-icon[b-0xjpmhgr9b] {
    display: inline-block;
    width: 16px;
    text-align: center;
    margin-right: 6px;
    font-size: 14px;
    vertical-align: middle;
}

.menu-separator[b-0xjpmhgr9b] {
    height: 1px;
    background-color: #444;
    margin: 4px 0;
    opacity: 0.7;
}

.menu-item.disabled[b-0xjpmhgr9b] {
    color: #777;
    cursor: default;
    pointer-events: none;
    opacity: 0.6;
}

/* AttributeClass Specific Properties */
.attribute-dropdown-field[b-0xjpmhgr9b],
.attribute-text-field[b-0xjpmhgr9b] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background-color: #2a2a2a;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 3px 5px;
    font-size: 0.60rem;
}

    .attribute-dropdown-field:disabled[b-0xjpmhgr9b] {
        color: #bebebefa;
        background-color: #3a3a3a;
        cursor: not-allowed;
    }

    .attribute-dropdown-field option[b-0xjpmhgr9b] {
        background-color: #2a2a2a;
        color: white;
    }

.attribute-text-field[b-0xjpmhgr9b] {
    width: 100%;
    background-color: #2a2a2a;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 3px 5px;
    font-size: 0.60rem;
    box-sizing: border-box;
}

.attribute-format-unit-row[b-0xjpmhgr9b] {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 6px;
    width: 100%;
}

.attribute-format-group[b-0xjpmhgr9b] {
    flex: 1;
    min-width: 0;
}

.attribute-unit-group[b-0xjpmhgr9b] {
    flex: 1;
    min-width: 0;
}

.attribute-button-fields[b-0xjpmhgr9b] {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 2px solid #444;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

    .attribute-button-fields .field-group[b-0xjpmhgr9b] {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .attribute-button-fields .field-group label[b-0xjpmhgr9b] {
            font-size: 0.6rem;
            color: #ccc;
            margin-bottom: 4px;
        }

        .attribute-button-fields .field-group input[b-0xjpmhgr9b] {
            width: 100%;
            background-color: #2a2a2a;
            color: white;
            border: 1px solid #444;
            border-radius: 4px;
            padding: 3px 5px;
            font-size: 0.60rem;
            line-height: 1.0;
            box-sizing: border-box;
        }

.attribute-checkboxes-row[b-0xjpmhgr9b] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 6px;
    width: 100%;
}

.attribute-checkbox-label[b-0xjpmhgr9b] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    color: #ccc;
    cursor: pointer;
    user-select: none;
}

.attribute-checkbox[b-0xjpmhgr9b] {
    width: 14px;
    height: 14px;
    accent-color: #4a90d9;
    cursor: pointer;
}
/* /Content/DataPresentation/Details/ResolvedBehaviorsView.razor.rz.scp.css */
.behaviors[b-90w3t9yeoo] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px 10px;
    margin: 10px;
}

.behavior-checkbox[b-90w3t9yeoo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: white;
    cursor: pointer;
}
/* /Content/DataPresentation/Details/ResolvedElementsView.razor.rz.scp.css */
.elements[b-0c3gjhj4pp] {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    padding: 0px 15px;
}

.label[b-0c3gjhj4pp] {
    font-size: 0.6rem;
    margin-bottom: 4px;
}
/* /Content/DataPresentation/Details/ResolvedKnowledgePool.razor.rz.scp.css */
.elements[b-pg5gmv7awu] {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    padding: 0px 15px;
}

.label[b-pg5gmv7awu] {
    font-size: 0.6rem;
    margin-bottom: 4px;
}

.element-collection-container[b-pg5gmv7awu] {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 6px;
    min-height: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-sizing: border-box;
}

.element-collection-items[b-pg5gmv7awu] {
    display: flex;
    flex-direction: column;
    gap: 6px; /* increased from 4px for better spacing between items */
}

.element-collection-item[b-pg5gmv7awu] {
    display: flex;
    align-items: center;
    background-color: #3a3a3a;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    width: fit-content;
}

.collection-remove[b-pg5gmv7awu] {
    color: #e57373;
    cursor: pointer;
    margin-right: 12px;
    user-select: none;
}

.collection-object-label[b-pg5gmv7awu] {
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.element-collection-empty[b-pg5gmv7awu] {
    color: #888;
    font-style: italic;
    font-size: 0.65rem;
}
/* /Content/LoginScreen.razor.rz.scp.css */
.login-wrapper[b-jr81nsepqv] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--cockpit-gray);
}

.login-card[b-jr81nsepqv] {
    display: flex;
    background-color: var(--cockpit-black);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 700px;
    height: 350px;
}

.login-left[b-jr81nsepqv] {
    background-color: var(--cockpit-black);
    color: var(--cockpit-text);
    padding: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .login-left .logo[b-jr81nsepqv] {
        width: 120px;
        margin-bottom: 10px;
    }

    .login-left h2[b-jr81nsepqv] {
        color: var(--cockpit-white);
        font-size: 20px;
        margin: 10px 0;
    }

    .login-left p[b-jr81nsepqv] {
        font-size: 12px;
        opacity: 0.5;
    }

.login-right[b-jr81nsepqv] {
    background-color: var(--cockpit-black);
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.result-message[b-jr81nsepqv] {
    color: var(--cockpit-text);
    font-size: 10px;
    text-align: center;
    width: 80%;
    margin: 5px;
    margin-bottom: 15px;
}

.custom-dropdown[b-jr81nsepqv] {
    position: relative;
    margin: 5px;
    margin-bottom: 5px;
    width: 80%;
    font-size: 10px;
}

.dropdown-toggle[b-jr81nsepqv] {
    background-color: var(--cockpit-gray);
    color: var(--cockpit-text);
    padding: 10px;
    border: 1px solid var(--cockpit-border);
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dropdown-toggle:hover[b-jr81nsepqv] {
        border-color: var(--cockpit-accent);
    }

.dropdown-list[b-jr81nsepqv] {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--cockpit-gray);
    border: 1px solid var(--cockpit-border);
    z-index: 1000;
    border-radius: 4px;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.dropdown-item[b-jr81nsepqv] {
    padding: 10px;
    cursor: pointer;
    color: var(--cockpit-text);
}

    .dropdown-item:hover[b-jr81nsepqv] {
        background-color: var(--cockpit-accent);
        color: white;
    }

.chevron[b-jr81nsepqv] {
    font-size: 10px;
    opacity: 0.7;
}


/* NOTE: The css styling for <InputText> is inside the app.css file,
    because Blazor doesn't recognize those stylings if not in there
*/

.login-button[b-jr81nsepqv] {
    background-color: var(--cockpit-accent);
    color: var(--cockpit-icon);
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    width: 80%;
    cursor: pointer;
    margin-top: 10px;
}

    .login-button:disabled[b-jr81nsepqv] {
        opacity: 0.3;
        cursor: default;
    }
/* /Content/Map.razor.rz.scp.css */
#dara-map-view[b-mwtq2m6uo1] {
    width: 100%;
    height: 100%;
}

.map-loading-overlay[b-mwtq2m6uo1] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(2px);
    z-index: 10;
}

.map-loading-card[b-mwtq2m6uo1] {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #222;
    border: 1px solid #2a2f3a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-loading-spinner[b-mwtq2m6uo1] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.16);
    border-top-color: #3b82f6;
    animation: map-spin-b-mwtq2m6uo1 0.9s linear infinite;
}

.map-loading-text[b-mwtq2m6uo1] {
    font-size: 13px;
    opacity: 0.85;
    color: #e8eaed;
}

@keyframes map-spin-b-mwtq2m6uo1 {
    to {
        transform: rotate(360deg);
    }
}

.map-marker-div-icon[b-mwtq2m6uo1] {
    background: transparent;
    border: none;
}

.map-marker-icon[b-mwtq2m6uo1] {
    width: 38px;
    height: 38px;
    border-radius: 50% 50% 50% 0;
    background: #1f6feb;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
    border: 2px solid #ffffff;
    overflow: hidden;
}

.map-marker-image-icon img[b-mwtq2m6uo1] {
    transform: rotate(45deg);
}

.map-marker-image-icon img[b-mwtq2m6uo1],
.map-marker-image-icon .map-img-icon[b-mwtq2m6uo1] {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin: 0;
    display: block;
}

.marker-img-icon[b-mwtq2m6uo1] {
    width: 30px !important;
}


.map-marker-fontawesome-icon i[b-mwtq2m6uo1] {
    width: auto;
    height: auto;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.map-marker-google-icon .icon-google[b-mwtq2m6uo1] {
    font-family: "Material Symbols Outlined", "Material Icons", sans-serif;
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
    direction: ltr;
}

.map-popup[b-mwtq2m6uo1] {
    min-width: 180px;
    max-width: 280px;
}

.map-popup-title[b-mwtq2m6uo1] {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.map-popup-description[b-mwtq2m6uo1] {
    font-size: 13px;
    line-height: 1.4;
    color: #374151;
    white-space: normal;
}

.map-marker-inner-icon[b-mwtq2m6uo1] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.8px solid rgba(255, 255, 255, 0.95);
    background: rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transform: rotate(45deg);
}

.map-marker-fontawesome-icon .map-marker-inner-icon i[b-mwtq2m6uo1] {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.map-marker-google-icon .map-marker-inner-icon .map-google-icon[b-mwtq2m6uo1] {
    color: yellow;
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Material Symbols Outlined", "Material Icons", sans-serif;
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
    direction: ltr;
}
/* /Content/Modals/IconPickerModal.razor.rz.scp.css */
.fa-picker-overlay[b-d6dziz48p7] {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-picker-modal[b-d6dziz48p7] {
    width: min(920px, 92vw);
    max-height: 82vh;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fa-picker-header[b-d6dziz48p7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #303030;
    font-size: 0.8rem;
}

.fa-picker-close[b-d6dziz48p7] {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
}

.fa-picker-search[b-d6dziz48p7] {
    padding: 10px 12px;
    border-bottom: 1px solid #303030;
}

    .fa-picker-search input[b-d6dziz48p7] {
        width: 100%;
        background-color: #2a2a2a;
        color: #fff;
        border: 1px solid #444;
        border-radius: 4px;
        padding: 6px 8px;
        font-size: 0.75rem;
        box-sizing: border-box;
    }

.fa-picker-grid[b-d6dziz48p7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    padding: 10px 12px;
    overflow: auto;
}

.fa-picker-item[b-d6dziz48p7] {
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    background: #232323;
    color: #fff;
    cursor: pointer;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 70px;
}

    .fa-picker-item:hover[b-d6dziz48p7] {
        background: #2f2f2f;
    }

.fa-picker-name[b-d6dziz48p7] {
    font-size: 0.62rem;
    text-align: center;
    color: #d0d0d0;
    word-break: break-word;
}

.fa-picker-image[b-d6dziz48p7] {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 2px;
}

.fa-picker-no-results[b-d6dziz48p7] {
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
}
/* /Content/View3d.razor.rz.scp.css */
.view3d-root[b-tfpk2diue7] {
    position: relative;
    width: 100%;
    height: 100%;
}

.view3d-loading-overlay[b-tfpk2diue7] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(2px);
    z-index: 10;
}

.view3d-loading-card[b-tfpk2diue7] {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #222;
    border: 1px solid #2a2f3a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.view3d-loading-spinner[b-tfpk2diue7] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.16);
    border-top-color: #3b82f6;
    animation: view3d-spin-b-tfpk2diue7 0.9s linear infinite;
}

.view3d-loading-text[b-tfpk2diue7] {
    font-size: 13px;
    opacity: 0.85;
    color: #e8eaed;
}

.button-stack[b-tfpk2diue7] {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    z-index: 20;
}

@keyframes view3d-spin-b-tfpk2diue7 {
    to {
        transform: rotate(360deg);
    }
}
/* /Layout/AppContent.razor.rz.scp.css */
.app-content[b-vv3b621vvc] {
    flex-grow: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: var(--cockpit-gray);
}
/* /Layout/AppFooter.razor.rz.scp.css */
.app-footer[b-af8v6rrw2i] {
    height: 20px;
    background-color: var(--cockpit-black);
    border-top: 1px solid var(--cockpit-border);
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 10px;
    gap: 10px;
    color: var(--cockpit-icon);
}
/* /Layout/AppMenu.razor.rz.scp.css */
#menubar[b-6k9gdu8vt4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #ddd;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 0 8px;
    user-select: none;
    height: 30px;
    z-index: 100;
}

/* LEFT SIDE MENU */
.menu[b-6k9gdu8vt4] {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item[b-6k9gdu8vt4] {
    position: relative;
    padding: 8px 14px;
    cursor: pointer;
    color: #ddd;
}

    .menu-item:hover[b-6k9gdu8vt4] {
        background: #333;
    }

.submenu[b-6k9gdu8vt4],
.right-submenu[b-6k9gdu8vt4] {
    display: none;
    position: absolute;
    background: #111;
    color: #ddd;
    font-size: 13px;
    min-width: 160px;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    z-index: 1000;
}

    .menu-item:hover > .submenu[b-6k9gdu8vt4],
    .submenu li:hover > .right-submenu[b-6k9gdu8vt4] {
        display: block;
    }

.submenu[b-6k9gdu8vt4] {
    top: 100%;
    left: 0;
}

.right-submenu[b-6k9gdu8vt4] {
    top: 0;
    left: 100%;
}

.submenu li[b-6k9gdu8vt4] {
    padding: 6px 16px;
    white-space: nowrap;
    cursor: pointer;
}

    .submenu li:hover[b-6k9gdu8vt4] {
        background: #333;
    }

    .menu-item.disabled[b-6k9gdu8vt4],
    .submenu li.disabled[b-6k9gdu8vt4] {
        color: #666;
        pointer-events: none;
        cursor: default;
    }

        .menu-item.disabled:hover[b-6k9gdu8vt4],
        .submenu li.disabled:hover[b-6k9gdu8vt4] {
            background: none;
        }

/* Icon placement (optional) */
.menu-icon[b-6k9gdu8vt4] {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Arrow to right submenu */
.arrow[b-6k9gdu8vt4] {
    float: right;
    margin-left: 6px;
    font-size: 11px;
    color: #aaa;
}

/* RIGHT SIDE: Logout */
.logout-button[b-6k9gdu8vt4] {
    background: none;
    border: none;
    color: #ddd;
    padding: 8px 14px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
}

    .logout-button:hover[b-6k9gdu8vt4] {
        background: #333;
    }

    .logout-button i[b-6k9gdu8vt4] {
        margin-right: 6px;
        width: 16px;
        text-align: center;
    }
/* /Layout/AppToolbar.razor.rz.scp.css */
.app-toolbar[b-lduqcoehnv] {
    background-color: var(--cockpit-darkgray);
    border-bottom: 1px solid var(--cockpit-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 25px;
    flex-wrap: wrap;
    height: 40px;
}

.toolbar-divider[b-lduqcoehnv] {
    width: 1px;
    height: 1.2rem;
    background-color: #666;
    margin: 0 0.15rem;
    align-self: center;
    opacity: 0.4;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-layout[b-ibcgl2ilvv] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}
/* /Pages/NotFound.razor.rz.scp.css */
.not-found-page[b-eme14jrluc] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2937;
    padding: 1rem;
}

.not-found-content[b-eme14jrluc] {
    width: min(90vw, 500px);
    text-align: center;
}

.not-found-code[b-eme14jrluc] {
    font-size: 3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
}

.not-found-title[b-eme14jrluc] {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.not-found-message[b-eme14jrluc] {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.not-found-link[b-eme14jrluc] {
    display: inline-block;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #374151;
    padding-bottom: 2px;
}

    .not-found-link:hover[b-eme14jrluc] {
        color: #111827;
        border-bottom-color: #111827;
    }
