@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Components/DocumentMessageNotification.razor.rz.scp.css */
.notification-container[b-7tnujcoqt5] {
    position: fixed;
    top: 200px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification[b-7tnujcoqt5] {
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    color: white;
    pointer-events: auto;
    font-weight: 500;
}

/* Severity Styles */
.severity-trace[b-7tnujcoqt5] {
    background-color: #888888;
}

.severity-debug[b-7tnujcoqt5] {
    background-color: #5555aa;
}

.severity-info[b-7tnujcoqt5] {
    background-color: #2196f3;
}

.severity-warn[b-7tnujcoqt5] {
    background-color: #ff9800;
}

.severity-error[b-7tnujcoqt5] {
    background-color: #f44336;
}

.severity-fatal[b-7tnujcoqt5] {
    background-color: #b71c1c;
}
/* /Components/ModelSelector.razor.rz.scp.css */

.model-flex[b-l30t1bbdg3] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    justify-content: center; /* Aligns cards from left to right */
}

.model-card[b-l30t1bbdg3] {
    background-color: #B59754;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 180px; /* Fixed width to keep cards aligned horizontally */
    flex-shrink: 0;
    padding: 1.5rem; /* afstand rondom inhoud */
}

    .model-card:hover[b-l30t1bbdg3] {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.card-body[b-l30t1bbdg3] {
    background-color: #000; /* zwart blok onder */
    color: #fff; /* witte letters */
    text-align: center;
    padding: 0.5rem;
}

.card-title[b-l30t1bbdg3] {
    margin: 0;
    font-size: 14px;
    min-height: 50px;
}

.svg-container[b-l30t1bbdg3] {
    width: 100%;
    height: 100%;
    background-color: #F7F2EA;
    padding: 1rem; /* afstand van de randen van het witte blok */
    margin-bottom: 1rem; /* ruimte tussen svg en tekstbalk */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.svg-wrapper[b-l30t1bbdg3] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-fit: contain;
}

    .svg-wrapper svg[b-l30t1bbdg3] {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
/* /DataModel/WebFrames/WebFrameView.razor.rz.scp.css */
.fillingcomp[b-cas57rd4gj] {
    display: block; /* span behaves like a block */
    padding: 0.2rem;
    margin: .5rem 0 .5rem 0;
    border-radius: .25rem; /* optional */
    background: var(--bs-primary);
    text-align: center; /* centers the text horizontally */
}

/* This is for aligning two containers vertically or horizontally depending on the screen size*/
.container[b-cas57rd4gj] {
    display: grid;
    gap: 1rem;
}

/* Desktop / tablet */
@media (min-width: 769px) {
    .container[b-cas57rd4gj] {
        grid-template-columns: 1fr 1fr; /* twee kolommen */
        grid-template-areas:
            "left right-top"
            "left right-bottom";
        align-items: start;
    }

    .left-div[b-cas57rd4gj] {
        grid-area: left;
    }

    .right-svg[b-cas57rd4gj] {
        grid-area: right-top;
    }

    .right-card[b-cas57rd4gj] {
        grid-area: right-bottom;
    }
}

/* Mobiel */
@media (max-width: 768px) {
    .container[b-cas57rd4gj] {
        grid-template-columns: 1fr; /* stapel onder elkaar */
        grid-template-areas:
            "right-top" /* SVG eerst */
            "left" /* dan accordion */
            "right-bottom"; /* dan card */
    }

    .left-div[b-cas57rd4gj] {
        grid-area: left;
    }

    .right-svg[b-cas57rd4gj] {
        grid-area: right-top;
    }

    .right-card[b-cas57rd4gj] {
        grid-area: right-bottom;
    }

    .hide-on-small-screen[b-cas57rd4gj] {
        display: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
