/* /Components/Board/SearchableSelect.razor.rz.scp.css */
/* ── 배경 닫기 오버레이 ── */
.ss-backdrop[b-ly04c9867a] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: transparent;
}

/* ── 래퍼 ── */
.ss-wrapper[b-ly04c9867a] {
    position: relative;
    width: 100%;
}

/* ── 토글 버튼 ── */
.ss-toggle[b-ly04c9867a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #002D9C;
    background-color: #fff;
    border: 1.5px solid #002D9C;
    border-radius: 2rem !important;    /* 글로벌 button{border-radius:0} 덮어쓰기 */
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.ss-toggle:hover[b-ly04c9867a] {
    background-color: #f0f4ff;
}

.ss-toggle:focus[b-ly04c9867a] {
    box-shadow: 0 0 0 0.2rem rgba(0, 45, 156, 0.2);
}

.ss-toggle-open[b-ly04c9867a] {
    background-color: #f0f4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 45, 156, 0.15);
}

/* ── 화살표 아이콘 ── */
.ss-chevron[b-ly04c9867a] {
    font-size: 0.65em;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    opacity: 0.75;
}

.ss-chevron.ss-open[b-ly04c9867a] {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── 드롭다운 패널 ── */
.ss-dropdown[b-ly04c9867a] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1041;
    background: #fff;
    border: 1px solid #dde3f5;
    border-radius: 0.625rem;
    box-shadow: 0 4px 16px rgba(0, 45, 156, 0.12);
    animation: ss-fade-in-b-ly04c9867a 0.12s ease;
    /* overflow:hidden 제거 — border-radius + overflow:hidden 조합이 내부 콘텐츠 좌측을 잘라냄 */
}

@keyframes ss-fade-in-b-ly04c9867a {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── 검색 영역 ── */
.ss-search-wrap[b-ly04c9867a] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid #eef0f8;
    background: #f8f9ff;
    border-radius: 0.625rem 0.625rem 0 0; /* 드롭다운 패널 상단 모서리에 맞춤 */
}

.ss-search-icon[b-ly04c9867a] {
    font-size: 0.75rem;
    color: #8898c8;
    flex-shrink: 0;
}

.ss-search-input[b-ly04c9867a] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.8125rem;
    color: #333;
    padding: 0;
    line-height: 1.5;
}

.ss-search-input[b-ly04c9867a]::placeholder {
    color: #aab4d8;
}

/* ── 목록 ── */
.ss-list[b-ly04c9867a] {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 210px;
    overflow-y: auto;
}

.ss-list[b-ly04c9867a]::-webkit-scrollbar {
    width: 4px;
}

.ss-list[b-ly04c9867a]::-webkit-scrollbar-thumb {
    background: #c8d0ea;
    border-radius: 4px;
}

/* ── 항목 ── */
.ss-item[b-ly04c9867a] {
    padding: 7px 14px;
    font-size: 0.8125rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.ss-item:hover[b-ly04c9867a] {
    background-color: #f0f4ff;
    color: #002D9C;
}

.ss-item-active[b-ly04c9867a] {
    background-color: #e8eeff;
    color: #002D9C;
    font-weight: 600;
    padding-left: 10px; /* 시각적 들여쓰기로 선택 상태 표시 */
}

/* ── 결과 없음 ── */
.ss-item-empty[b-ly04c9867a] {
    padding: 10px 14px;
    font-size: 0.8125rem;
    color: #aab4d8;
    text-align: center;
}

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-qqibmzlf4y] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-qqibmzlf4y] {
    flex: 1;
}

.sidebar[b-qqibmzlf4y] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-qqibmzlf4y] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-qqibmzlf4y]  a, .top-row[b-qqibmzlf4y]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-qqibmzlf4y]  a:hover, .top-row[b-qqibmzlf4y]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-qqibmzlf4y]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-qqibmzlf4y] {
        justify-content: space-between;
    }

    .top-row[b-qqibmzlf4y]  a, .top-row[b-qqibmzlf4y]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-qqibmzlf4y] {
        flex-direction: row;
    }

    .sidebar[b-qqibmzlf4y] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-qqibmzlf4y] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-qqibmzlf4y]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-qqibmzlf4y], article[b-qqibmzlf4y] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-qqibmzlf4y] {
    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-qqibmzlf4y] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-nkcbcpeeqg] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-nkcbcpeeqg] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-nkcbcpeeqg] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-nkcbcpeeqg] {
    font-size: 1.1rem;
}

.bi[b-nkcbcpeeqg] {
    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-nkcbcpeeqg] {
    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-nkcbcpeeqg] {
    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-nkcbcpeeqg] {
    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-nkcbcpeeqg] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-nkcbcpeeqg] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-nkcbcpeeqg] {
        padding-bottom: 1rem;
    }

    .nav-item[b-nkcbcpeeqg]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-nkcbcpeeqg]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-nkcbcpeeqg]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-nkcbcpeeqg] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-nkcbcpeeqg] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-nkcbcpeeqg] {
        display: none;
    }

    .nav-scrollable[b-nkcbcpeeqg] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-74g81ns3ox],
.components-reconnect-repeated-attempt-visible[b-74g81ns3ox],
.components-reconnect-failed-visible[b-74g81ns3ox],
.components-pause-visible[b-74g81ns3ox],
.components-resume-failed-visible[b-74g81ns3ox],
.components-rejoining-animation[b-74g81ns3ox] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-retrying[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-failed[b-74g81ns3ox],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-74g81ns3ox] {
    display: block;
}


#components-reconnect-modal[b-74g81ns3ox] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-74g81ns3ox 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-74g81ns3ox 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-74g81ns3ox 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-74g81ns3ox]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-74g81ns3ox 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-74g81ns3ox {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-74g81ns3ox {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-74g81ns3ox {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-74g81ns3ox] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-74g81ns3ox] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-74g81ns3ox] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-74g81ns3ox] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-74g81ns3ox] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-74g81ns3ox] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-74g81ns3ox] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-74g81ns3ox 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-74g81ns3ox] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-74g81ns3ox {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Board/List.razor.rz.scp.css */
/* 헤더 */
.list-header[b-d06lr6glju] {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

/* 상태 요약 */
.list-summary[b-d06lr6glju] {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.status-badge[b-d06lr6glju] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.status-label[b-d06lr6glju] {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.badge-danger[b-d06lr6glju] {
    background-color: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.badge-secondary[b-d06lr6glju] {
    background-color: #6c757d;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* 테이블 */
.table[b-d06lr6glju] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th[b-d06lr6glju] {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding: 12px 8px;
    white-space: nowrap;
}

.table tbody td[b-d06lr6glju] {
    padding: 12px 8px;
    vertical-align: middle;
    font-size: 14px;
}

.list-item[b-d06lr6glju] {
    transition: background-color 0.2s;
}

.list-item:hover[b-d06lr6glju] {
    background-color: #f8f9fa;
}

.list-title[b-d06lr6glju] {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
}

.list-title:hover[b-d06lr6glju] {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Empty State */
.empty-state[b-d06lr6glju] {
    padding: 40px 20px;
}

.empty-state i[b-d06lr6glju] {
    display: block;
}

/* 로딩 */
.spinner-border[b-d06lr6glju] {
    width: 3rem;
    height: 3rem;
}

/* 반응형 */
@media (max-width: 1200px) {
    .table[b-d06lr6glju] {
        font-size: 13px;
    }
    
    .table thead th[b-d06lr6glju],
    .table tbody td[b-d06lr6glju] {
        padding: 8px 4px;
    }
}

@media (max-width: 768px) {
    .list-header h3[b-d06lr6glju] {
        font-size: 1.25rem;
    }
    
    .status-badge[b-d06lr6glju] {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* /Components/Pages/Board/View.razor.rz.scp.css */
.content-body[b-84i6kq5ka2] {
        line-height: 1.8;
        font-size: 1rem;
        color: #333;
    }

    .content-body p[b-84i6kq5ka2] {
        margin-bottom: 1rem;
    }

    .card[b-84i6kq5ka2] {
        border: none;
        border-radius: 0.75rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* modal-open 상태에서는 카드 hover 효과 비활성화 */
    body:not(.modal-open) .card:hover[b-84i6kq5ka2] {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
    }

    .breadcrumb[b-84i6kq5ka2] {
        background: none;
        padding: 0;
        margin: 0;
    }

    .breadcrumb-item a[b-84i6kq5ka2] {
        color: #6c757d;
        text-decoration: none;
    }

    .breadcrumb-item a:hover[b-84i6kq5ka2] {
        color: #0d6efd;
        text-decoration: underline;
    }

    /* 전체 화면 이미지 뷰어 - 페이지 레벨에서 렌더링 */
    .fullscreen-image-viewer[b-84i6kq5ka2] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 9999 !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        animation: fadeIn-b-84i6kq5ka2 0.2s ease-in-out !important;
        cursor: pointer !important;
    }

    .fullscreen-image-overlay[b-84i6kq5ka2] {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }

    .fullscreen-header[b-84i6kq5ka2] {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent) !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }

    .fullscreen-header > div[b-84i6kq5ka2] {
        pointer-events: auto !important;
    }

    .fullscreen-footer[b-84i6kq5ka2] {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center !important;
        padding: 1rem !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent) !important;
        z-index: 10 !important;
    }

    .fullscreen-image-container[b-84i6kq5ka2] {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 80px 20px !important;
        cursor: default !important;
    }

    .fullscreen-image[b-84i6kq5ka2] {
        max-width: 95% !important;
        max-height: 90% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 8px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
        animation: zoomIn-b-84i6kq5ka2 0.3s ease-in-out !important;
        user-select: none !important;
        -webkit-user-drag: none !important;
    }

    @keyframes fadeIn-b-84i6kq5ka2 {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes zoomIn-b-84i6kq5ka2 {
        from {
            transform: scale(0.95);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    @media (max-width: 768px) {
        .fullscreen-header h5[b-84i6kq5ka2] {
            font-size: 1rem !important;
        }

        .fullscreen-image-container[b-84i6kq5ka2] {
            padding: 60px 10px !important;
        }

        .fullscreen-image[b-84i6kq5ka2] {
            max-width: 98% !important;
            max-height: 85% !important;
        }
    }
/* /Components/Pages/Board/Write.razor.rz.scp.css */
.upload-dropzone[b-8uxt58fsft] {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.upload-dropzone:hover[b-8uxt58fsft] {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.upload-dropzone.dragging[b-8uxt58fsft] {
    border-color: #0d6efd;
    background-color: #cfe2ff;
    transform: scale(1.02);
}

.upload-icon[b-8uxt58fsft] {
    transition: transform 0.3s ease;
}

.upload-dropzone:hover .upload-icon[b-8uxt58fsft] {
    transform: translateY(-5px);
}

.file-icon[b-8uxt58fsft] {
    min-width: 2rem;
}

.file-upload-zone[b-8uxt58fsft] {
    /*margin-bottom: 1rem;*/
    position: relative;
    width: 100%;
}

/* InputFile이 영역 전체를 덮도록 설정 */
.file-input-overlay[b-8uxt58fsft] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* 눈에는 안 보이지만 */
    z-index: 10; /* 가장 위에 있어서 드래그/클릭을 가로챔 */
    cursor: pointer;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.login-page[b-ea4qm1ib2l] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.login-card[b-ea4qm1ib2l] {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.login-icon[b-ea4qm1ib2l] {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.form-control:focus[b-ea4qm1ib2l] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary[b-ea4qm1ib2l] {
    background: #0d6efd;
    border: none;
}

.btn-primary:hover:not(:disabled)[b-ea4qm1ib2l] {
    background: #0b5ed7;
}

@media (max-width: 576px) {
    .login-card[b-ea4qm1ib2l] {
        padding: 30px 20px;
    }
}
