/*@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.button-link {
    text-decoration: unset;
}

#blazor-error-ui {
    background: maroon;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
        color: bisque
    }

.empty-data-area-template {
    display: flex;
    -o-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 150px;
    padding: 2rem 0;
}


* {
    /* ReSharper disable CssNotResolved */
    /*    user-select: none;
    user-drag: none;*/
    app-region: no-drag;
    -webkit-tap-highlight-color: transparent;
}

*:not(input) {
    user-select: none;
    -webkit-user-select: none;
}

@supports (-webkit-touch-callout: none) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-right: env(safe-area-inset-right);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
    }
}

.mr-1 {
    margin-right: 10px;
}

.dxbl-modal > .dxbl-modal-root {
    overflow: hidden;
}

.required-caption:after {
    content: ' *';
    color: red;
}

.menu-font-11 {
    font-size: 11px !important;
}

.menu-font-11 .dx-menu-item-text {
    font-size: 11px !important;
}

.menu-font-11 .dx-menu-title {
    font-size: 11px !important;
}

.menu-font-11 .dx-menu-item {
    font-size: 11px !important;
}

.welcome-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-header {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.brand-text {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-text {
    color: #2c3e50;
    font-weight: 300;
}

.version-badge {
    font-size: 0.875rem;
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-weight: 500;
    vertical-align: super;
}

.welcome-subtitle {
    color: #7f8c8d;
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.05em;
}

.welcome-content {
    width: 100%;
    max-width: 800px;
}

.animated-text {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.greeting {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.user-name {
    color: #3498db;
    font-weight: 600;
}

.instruction {
    color: #7f8c8d;
    font-size: 1.125rem;
    margin: 0;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        background: #3498db;
        color: white;
    }

    .stat-card i {
        font-size: 2.5rem;
        color: #3498db;
        transition: color 0.3s ease;
    }

    .stat-card:hover i {
        color: white;
    }

    .stat-card span {
        font-weight: 500;
        font-size: 1.125rem;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
        flex-wrap: wrap;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}