﻿.printDialogOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}


    .printDialogOverlay.visible {
        opacity: 1;
        pointer-events: auto;
    }


.printDialog {
    width: 700px;
    min-height: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}


.printDialogTitleBar {
    height: 40px;
    background: #444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 18px;
    font-weight: bold;
}


.printDialogClose {
    border: none;
    background: transparent;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


.printDialogContent {
    padding: 20px;
}
