/* ============================================================
   EIQ_LoadingUI.css  –  Loading overlay styles
   Used by: UserControl/EIQ_LoadingUI.ascx
   ============================================================ */

#loadingUI {
    position: fixed;
    z-index: 11111;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    display: none;
    cursor: wait;
}

#loadingUI > table {
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    text-align: center;
    vertical-align: middle;
    border-collapse: collapse;
    max-width: 480px;
    border-radius: 5px;
    min-width: 200px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

#loadingUI > table td {
    padding: 15px;
}

#loading-msg {
    max-width: 320px;
    margin: auto;
    font-size: 18px;
}

.loadingui-close {
    cursor: pointer;
    margin-left: 8px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.loadingui-close:hover {
    font-weight: bold;
    opacity: 1;
}
