/* /Components/AttachmentCard.razor.rz.scp.css */
.attachment-card[b-petms8iqsf] {
    background: #fff;
}

.attachment-card.has-file[b-petms8iqsf] {
    background: #f0fff4;
}

.attachment-card.is-complete[b-petms8iqsf] {
    background: #f8f9fa;
    opacity: 0.75;
}

.preview-img[b-petms8iqsf] {
    max-width: 100%;
    max-height: 160px;
    border-radius: 8px;
    object-fit: contain;
}

.preview-thumb[b-petms8iqsf] {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.file-label[b-petms8iqsf] {
    border: 2px dashed #bbbde0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.file-label:hover[b-petms8iqsf] {
    border-color: #6c7ae0;
    background: #f4f5ff !important;
    color: #6c7ae0 !important;
}

.has-file .file-label[b-petms8iqsf] {
    border-color: #2e7d32;
    color: #2e7d32 !important;
}

.is-complete .file-label[b-petms8iqsf] {
    border: 2px solid #adb5bd;
    cursor: default;
    color: #6c757d !important;
    background: #e9ecef !important;
}
/* /Components/QRCode.razor.rz.scp.css */
.qr-code-container[b-1hg05a9a04] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qr-code-image[b-1hg05a9a04] {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 4px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
main[b-zhumeom6gu] {
    min-height: 100vh;
}
/* /Pages/Upload.razor.rz.scp.css */
.upload-layout[b-9utcavsgeh] {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    align-items: flex-start;
}

.qr-panel[b-9utcavsgeh] {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,.1);
    padding: 1.25rem;
    text-align: center;
}

.form-panel[b-9utcavsgeh] {
    flex: 1;
}

@media (max-width: 640px) {
    .upload-layout[b-9utcavsgeh] {
        flex-direction: column;
    }

    .qr-panel[b-9utcavsgeh] {
        flex: unset;
        width: 100%;
    }
}


