html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    /*    flex-shrink: 0;
        background-color: currentcolor;
    -webkit-mask: url('../images/astgdlogo21.png');
    mask: url('../images/astgdlogo21.png');*/
    background-image: url(../images/infologo.png);
    background-repeat: no-repeat;
    width: 180px;
    height: 50px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
/*.headingbold .dxbl-group-header {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    color: gray;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 6px rgba(102, 166, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.headingbold .dxbl-group {
    padding: 20px;
    margin-top: 12px;
    background: #F8FAFC;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}*/

/*Custom Css*/
@media screen and (min-width: 1024px) {

    .dxbl-group > .dxbl-group-header {
        background: #f8fafc;
        color: #1e293b;
        border: 1px solid #e2e8f0;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px 8px 0 0;
        transition: all 0.2s ease-in-out;
    }

        .dxbl-group > .dxbl-group-header .dxbl-group-header-text {
            color: #1e293b;
            font-size: 1.125rem;
            font-weight: 600;
        }

    .dxbl-group-body {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-top: none;
        border-radius: 0 0 8px 8px;
        padding: 20px;
    }

    /*===== BUTTONS =====*/
    .dxbl-btn.dxbl-btn-primary {
        background: #2563eb;
        color: white;
        border: 1px solid #2563eb;
        border-radius: 6px;
        padding: 10px 20px;
        font-weight: 500;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

        .dxbl-btn.dxbl-btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

    .dxbl-btn.dxbl-btn-success {
        background: #059669;
        color: white;
        border: 1px solid #059669;
        border-radius: 6px;
        padding: 10px 20px;
        font-weight: 500;
    }

    .dxbl-btn.dxbl-btn-warning {
        background: #d97706;
        color: white;
        border: 1px solid #d97706;
        border-radius: 6px;
        padding: 10px 20px;
        font-weight: 500;
    }

    .dxbl-btn.dxbl-btn-danger {
        background: #dc2626;
        color: white;
        border: 1px solid #dc2626;
        border-radius: 6px;
        padding: 10px 20px;
        font-weight: 500;
    }

    .dxbl-btn.dxbl-btn-secondary {
        background: white;
        color: #1e293b;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 10px 20px;
        font-weight: 500;
    }

        .dxbl-btn.dxbl-btn-secondary:hover {
            background: #f8fafc;
            border-color: #2563eb;
        }

    .dxbl-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease-in-out;
        overflow: hidden;
    }

        .dxbl-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

    .dxbl-grid {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .dxbl-grid-header {
        background: #f8fafc;
        color: #1e293b;
        border-bottom: 1px solid #e2e8f0;
        padding: 12px 16px;
        font-weight: 600;
    }

    .dxbl-grid-column-header {
        background: transparent;
        color: #1e293b;
        font-weight: 600;
        padding: 12px 16px;
        border-right: 1px solid #e2e8f0;
    }

    .dxbl-grid-data-cell {
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
        color: #64748b;
        transition: all 0.2s ease-in-out;
    }

    .dxbl-grid-data-row:hover .dxbl-grid-data-cell {
        background: #dbeafe;
        color: #1e293b;
    }

    .dxbl-grid-data-row:last-child .dxbl-grid-data-cell {
        border-bottom: none;
    }

    /*===== FORM CONTROLS ===== */
    .dxbl-edit {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 10px 12px;
        color: #1e293b;
        transition: all 0.2s ease-in-out;
        font-size: 0.875rem;
    }

        .dxbl-edit.dxbl-edit-focused {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            outline: none;
        }

        .dxbl-edit:hover {
            border-color: #cbd5e1;
        }

    .dxbl-form-label {
        color: #1e293b;
        font-weight: 500;
        margin-bottom: 6px;
        font-size: 0.875rem;
    }

    /*===== PROGRESS BARS ===== */
    .dxbl-progress-bar-range {
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
    }

    .dxbl-progress-bar {
        background: #e2e8f0;
        border-radius: 4px;
        border: none;
    }

    .dxbl-badge {
        background: #dc2626;
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 500;
        font-size: 0.75rem;
        padding: 4px 8px;
    }

        .dxbl-badge.dxbl-badge-primary {
            background: #2563eb;
        }

        .dxbl-badge.dxbl-badge-success {
            background: #059669;
        }

        .dxbl-badge.dxbl-badge-warning {
            background: #d97706;
        }
}

.loading-caption {
    text-align: center;
    padding: 20px;
}
.dxbl-disabled {
   
   pointer-events: none;
   opacity: 0.7;
}



