.table, .markdown > table {
    --dt-header-vertical-align: middle !important;
    vertical-align: middle !important;
}

#loading {
    display: none; /* start hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;

    /* flex layout for centering */
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

#loading.flex {
    display: flex;
}

/* Optional pulsing animation for text */
@keyframes pulse {
    0%   { opacity: 0.3; }
    50%  { opacity: 1; }
    100% { opacity: 0.3; }
}

#loading span {
    animation: pulse 1.5s infinite;
}

body.swal2-height-auto{
  height: 100% !important;
}