#wip-veil {
    width: 100%;
    height: 100%;
    background-color: rgb(120 120 120 / 50%);
    display: flex;
    align-items: center;   
    justify-content: center;
    position: fixed;
    top: 0px;
    z-index: 1000;
}

#wip-dlg {
    width: 300px;
    border-radius: 3px;
    background-color: rgb(249 249 249);
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    cursor: auto;
}

#wip-header {
    width: 100%;
    padding-bottom: 5px;
}

#wip-title {
    padding-right: 10px;
    overflow-wrap: break-word;
    font-size: 15px;
    color: #939393;
    font-weight: lighter;
    margin-left: 15px;
    margin-top: 5px;
}

#wip-body {
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }