/* _content/ExpoManager/Components/ClearableInput.razor.rz.scp.css */
.input-wrapper[b-beke6ofhur] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px; /* 必要に応じて調整 */
}

.clearable-input[b-beke6ofhur] {
    width: 100%;
    padding-right: 2.5em; /* 右にボタン分の余白 */
    box-sizing: border-box;
    height: 2.5em;
    font-size: 1em;
}

.clear-button[b-beke6ofhur] {
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 1.2em;
    cursor: pointer;
    color: #888;
    padding: 0;
    line-height: 1;
    height: 1.5em;
    width: 1.5em;
}
/* _content/ExpoManager/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-qp0868z2nd] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-qp0868z2nd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/ExpoManager/Report/VisitorBadgePage.razor.rz.scp.css */

/* 印刷1ページ用のコンテンツはここで定義 */
.page[b-t82byon5fr] {
    width: 2480px; /* A5用紙の幅 21cm @300DPI相当 */
    height: 1748px; /* A5用紙の高さ 14.8cm @300DPI相当 */

    font-size: 36px; /* 12pt相当 */
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    margin: 0;
    /*border: 5px dashed red;*/ /* 例: 5px幅の破線で赤色のボーダー */
}

.t-font2[b-t82byon5fr] {
    font-size: 100px;
}

.t-font[b-t82byon5fr]{
    font-size: 72px;
}

.t-font3[b-t82byon5fr] {
    font-size: 80px;
}

.middle-mt[b-t82byon5fr] {
    margin-top: 3rem;
}

/*.quad {
    width: 50%;
    height: 50%;
    border: 1px solid black;
    box-sizing: border-box;
}*/

/* 印刷時の上書きCSS */
@media print {

    p[b-t82byon5fr] {
        margin-bottom: 2mm;
    }


    .page[b-t82byon5fr] {
        width: 210mm;
        height: 148mm;
        font-size: 12pt;
        display: flex !important;
        position: static;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        overflow: visible !important;
    }

    .t-font[b-t82byon5fr] {
        font-size: 20px;
    }

    .t-font2[b-t82byon5fr] {
        font-size: 30px;
    }

    .t-font3[b-t82byon5fr] {
        font-size: 24px;
    }

    .qrcode_div_element[b-t82byon5fr] {
        max-width: 60mm;
        max-height: 60mm;
    }

    .middle-mt[b-t82byon5fr] {
        margin-top: 3mm;
    }

    .page[b-t82byon5fr]::before {
        border-right: 1px dashed black !important; /* 5pxの太さで、黒い点線 */
    }
}

/* 中央の縦線を点線にする */
.page[b-t82byon5fr]::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1px; /* 幅を非常に小さくし、borderで線を描画 */
    /* background-color: black; */ /* これは不要になるか、あるいは別の用途で使う */
    /* ここが変更点 */
    border-right: 5px dashed black; /* 5pxの太さで、黒い点線 */
    /* または */
    /* border-right: 5px dotted black; /* 5pxの太さで、黒い点々線 */

    z-index: 1;
}
