/* /Components/Info/HighlightedInfoBox.razor.rz.scp.css */
.highlighted-info-box[b-kug0k5xx51] {
    margin-top: 1rem;
    background: #fffbeb;
    border-left: 3px solid #fbbf24;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: #92400e;
    border-radius: 4px;
}
/* /Components/Info/InfoIcon.razor.rz.scp.css */
/* TYPOGRAPHY & COLORS */
.border-primary[b-4j7zeq0dgy] {
    border: 1px solid #3b82f6;
    border-left: 4px solid #3b82f6;
}

.border-modifier[b-4j7zeq0dgy] {
    border: 1px solid #f59e0b;
    border-left: 4px solid #f59e0b;
    border-style: dashed;
}

.border-field[b-4j7zeq0dgy] {
    border: 1px solid #94a3b8;
    border-left: 4px solid #94a3b8;
    background: #f8fafc;
}

/* ICON & ASSET STYLING */
.asset-icon-container[b-4j7zeq0dgy] {
    width: 48px;
    height: 48px;
    min-width: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    container-type: size;
}

.asset-icon-container img[b-4j7zeq0dgy],
.asset-icon-container .base-layer[b-4j7zeq0dgy],
.asset-icon-container .overlay-layer[b-4j7zeq0dgy],
.asset-icon-container > div[b-4j7zeq0dgy] {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layered-icon .base-layer[b-4j7zeq0dgy] {
    z-index: 1;
}

.layered-icon .overlay-layer[b-4j7zeq0dgy] {
    z-index: 2;
    pointer-events: none;
}

.asset-icon-container[b-4j7zeq0dgy]  img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.asset-item[b-4j7zeq0dgy] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
    /*border: 1px solid #e2e8f0;*/
    transition: transform 0.15s ease;
}

.asset-item:hover[b-4j7zeq0dgy] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
/* /Components/Info/InfoIconContent.razor.rz.scp.css */
.asset-text strong[b-n38b9g4z88] {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.asset-text small[b-n38b9g4z88] {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.2;
    display: block;
}
/* /Components/Info/InfoIconGrid.razor.rz.scp.css */
/* GRID & CARDS */
.asset-grid[b-nmv6x32p8e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 2rem;
}

/* TYPOGRAPHY & COLORS */
.category-title[b-nmv6x32p8e] {
    margin: 1.5rem 0 1rem 0;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.category-title small[b-nmv6x32p8e] {
    margin: 1rem 0rem 1rem 0.5rem;
}

.bullet[b-nmv6x32p8e] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    color: white;
    margin-right: 10px;
}

.primary-title[b-nmv6x32p8e] {
    color: #2563eb;
}

.primary-title .bullet[b-nmv6x32p8e] {
    background: #2563eb;
}

.modifier-title[b-nmv6x32p8e] {
    color: #d97706;
}

.modifier-title .bullet[b-nmv6x32p8e] {
    background: #d97706;
}

.field-title[b-nmv6x32p8e] {
    color: #64748b;
}
/* /Components/Info/InfoIconTextLine.razor.rz.scp.css */
.asset-text strong[b-drp90jog7s] {
    /*display: flex;*/
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.asset-text small[b-drp90jog7s] {
    /*display: flex;*/
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.2;
}
/* /Components/Info/InfoOverlay.razor.rz.scp.css */
/* MODAL SYSTEM */
.modal-overlay[b-1ljigzf3kn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.modal-card[b-1ljigzf3kn] {
    background: white;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-header[b-1ljigzf3kn] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close[b-1ljigzf3kn] {
    background: #f1f5f9;
    border: none;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.modal-body[b-1ljigzf3kn] {
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
}

/* TYPOGRAPHY & COLORS */

.divider[b-1ljigzf3kn] {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 1rem 0;
}
/* /Components/Info/Predefined/HowToEditBoard.razor.rz.scp.css */
.element-row[b-6rsqo051rw] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

/* Icons (Blau hinterlegt wie gewünscht) */
.icon-box[b-6rsqo051rw] {
    width: 100px;
    height: 100px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
}

.icon-box.dashed[b-6rsqo051rw] {
    border: 2px dashed #60a5fa;
    background: #eff6ff;
}

.icon-box.text-icon[b-6rsqo051rw] {
    font-size: 1.2rem;
}

.icon-box img[b-6rsqo051rw] {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.element-row strong[b-6rsqo051rw] {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.element-row small[b-6rsqo051rw] {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

/* TYPOGRAPHY & COLORS */
.rules-highlight[b-6rsqo051rw] {
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.header[b-6rsqo051rw] {
    font-size: 1.5rem;
    font-weight: bold;
}

.divider[b-6rsqo051rw] {
    height: 0.5rem;
}
/* /Components/Main/BoardManager.razor.rz.scp.css */
/* 1. Layout Wrapper */
.page-scroll-wrapper[b-mjpzwjae2e] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Scrollen erlauben */
    background-color: transparent; /* Verändert keine Hintergründe */
    padding: 0 1rem 1rem 1rem; /* Leichtes Padding außen */
    box-sizing: border-box;
}

/* Header Styling */
.header-bar[b-mjpzwjae2e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

/* Container für deinen Editor Code */
.editor-container-fixed[b-mjpzwjae2e] {
    height: 85vh; /* Nimmt fast den ganzen Bildschirm ein */
    width: 100%;
    flex-shrink: 0; /* Verhindert das Zusammendrücken */
    margin-bottom: 2rem;
}

/* Button Styling */
.btn-jump-info[b-mjpzwjae2e] {
    background-color: blue;
    border: 1px solid #cbd5e1;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-jump-info:hover[b-mjpzwjae2e] {
    background-color: #eff6ff;
    border-color: #3b82f6;
}

/* Info Card Styling */
.info-card-bottom[b-mjpzwjae2e] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    scroll-margin-top: 1rem;
    flex-shrink: 0;
}

.info-header[b-mjpzwjae2e] {
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

    .info-header h4[b-mjpzwjae2e] {
        margin: 0;
        font-size: 1rem;
        color: #0f172a;
        font-weight: 700;
    }

.btn-link-up[b-mjpzwjae2e] {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
}

.info-grid[b-mjpzwjae2e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.info-column h5[b-mjpzwjae2e] {
    margin: 0 0 0.8rem 0;
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}

.info-column ol[b-mjpzwjae2e] {
    padding-left: 1.2rem;
    margin: 0;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.6;
}

    .info-column ol li[b-mjpzwjae2e] {
        margin-bottom: 0.4rem;
    }

.element-row[b-mjpzwjae2e] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

/* Icons (Blau hinterlegt wie gewünscht) */
.icon-box[b-mjpzwjae2e] {
    width: 36px;
    height: 36px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
}

.icon-box.dashed[b-mjpzwjae2e] {
    border: 2px dashed #60a5fa;
    background: #eff6ff;
}

.icon-box.text-icon[b-mjpzwjae2e] {
    font-size: 1.2rem;
}

.icon-box img[b-mjpzwjae2e] {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.element-row strong[b-mjpzwjae2e] {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.element-row small[b-mjpzwjae2e] {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

.tip-box[b-mjpzwjae2e] {
    margin-top: 1rem;
    background: #fffbeb;
    border-left: 3px solid #fbbf24;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: #92400e;
    border-radius: 4px;
}
/* /Components/Util/ToolTip.razor.rz.scp.css */
.tooltip-container[b-blbblj7dx2] {
    position: relative;
    display: inline-block;
}

.tooltip-content[b-blbblj7dx2] {
    cursor: pointer;
}

.tooltip-text[b-blbblj7dx2] {
    visibility: hidden;
    position: absolute;
    background-color: #555;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    overflow: auto;
    transition: opacity 3s 3s ease 0.5s, visibility 0s linear 3.5s; /* hides after fade */
    transition-delay: initial 3s;
}

.tooltip-container:hover .tooltip-text[b-blbblj7dx2] {
    visibility: visible;
    opacity: 1;
    transition: opacity 3s 3s ease 0.5s;
}

.tooltip-line[b-blbblj7dx2] {
    height: 1.1em;
    text-wrap: nowrap;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-f4rvyvz86z] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-f4rvyvz86z] {
    flex: 1;
    height: 100vh;
    width: 100vw;
}

.sidebar[b-f4rvyvz86z] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-f4rvyvz86z] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

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

/*    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }*/
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-x72qs030uo] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-x72qs030uo] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

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

.bi[b-x72qs030uo] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-x72qs030uo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-x72qs030uo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-x72qs030uo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

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

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

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

    .nav-item[b-x72qs030uo]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-x72qs030uo]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-x72qs030uo]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.collapse[b-x72qs030uo] {
    
}

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

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

    .nav-scrollable[b-x72qs030uo] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
