/* DialogStyles.css - Dialog component styles */

.UnB-Dialog {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.UnB-Dialog[hidden] {
    display: none;
}

.UnB-Dialog-Content {
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}
