﻿#popupBackground {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51,51,51,0.7);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupBox {
    position: fixed;
    background: rgb(255, 255, 255);
    z-index: 11;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.confirmationPopup {
    width: 20%;
    min-width: 400px;
    max-width: 600px;
    height: 20%;
    min-height: 150px;
    max-height: 250px;
}

#addingPermissionsPopupBox {
    width: 30%;
    min-width: 650px;
    max-width: 1100px;
    height: 90%;
    min-height: 650px;
    max-height: 1000px;
    padding: 20px;
}

.popupButton {
    margin: 15px;
}