html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 42px;
    height: 17px;
}

.loading-image {
    width: 80px;
    padding-left: 10px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
#kanban {
    white-space: nowrap;
    height: 85vh;
}

    #kanban .list {
        border-radius: 8px;
        margin: 5px;
        background-color: rgba(192, 192, 192, 0.4);
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        height: calc(100vh - 200px);
    }

    #kanban .list-title {
        color: var(--dx-color-text);
        font-size: 16px;
        padding: 10px;
        padding-left: 30px;
        margin-bottom: -10px;
        font-weight: bold;
        cursor: pointer;
    }

    #kanban .scrollable-list {
        height: calc(90vh - 200px);
        width: 260px;
    }

    #kanban .dx-scrollable-wrapper .dx-scrollable-container {
        display: flex;
        overflow: auto;
    }

    #kanban .sortable-cards {
        min-height: 380px;
    }

    #kanban .card {
        color: var(--dx-color-text);
        position: relative;
        background-color: var(--dx-component-color-bg);
        box-sizing: border-box;
        width: 230px;
        padding: 10px 20px;
        margin: 10px;
        cursor: pointer;
    }

    #kanban .card-subject {
        padding-right: 40px;
        padding-bottom: 10px;
    }

    #kanban .card-assignee {
        opacity: 0.6;
    }

    #kanban .card-priority {
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 5px;
        width: 5px;
        border-radius: 2px;
        background: #86c285;
    }

    #kanban .priority-Normal {
        background: #86c285;
    }

    #kanban .priority-Low {
        background: #edc578;
    }

    #kanban .priority-High {
        background: #ef7d59;
    }

    #kanban .edit-button {
        position: absolute;
        right: 4px;
        font-size: 18px;
        opacity: 0.87;
        top: 4px;
    }

    #kanban .card-customer-name .card-est-revenue .card-expect-date{
        opacity: 0.6;
        font-size: 12px;
    }
    #Kanban .dx-button-mode-contained {
        background-color: #ffffff00 !important;
        border-color: #dddddd00 !important;
        color: #333;
    }

