@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* _content/IMS.Web/Controls/Components/Dialog.razor.rz.scp.css */
.dialog-overlay[b-a4yxh65xfa] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.dialog[b-a4yxh65xfa] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    width: 1000px;
    max-width: 90%;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.dialog.animated[b-a4yxh65xfa] {
    transform: scale(1);
    opacity: 1;
}

.dialog-buttons[b-a4yxh65xfa] {
    text-align: right;
    margin-top: 1rem;
}

.btn-close[b-a4yxh65xfa] {
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
}



.dialog-body[b-a4yxh65xfa] {
    background-color: white;
    max-height: 70vh;
    max-width: 1200px;
    overflow-y: auto;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
}

.dialog-footer[b-a4yxh65xfa] {
    padding: 1rem;
    border-top: 1px solid #ccc;
    background-color: #f5f5f5;
    text-align: right;
}
