html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-image: url(../images/Logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 180px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.CompanyNameAsButton {
    font-weight: bold !important; /* Yazı tipini kalın yap */
    font-size: 20px !important; /* Font boyutunu büyüt */
    color: black !important; /* Yazı rengini siyah yap */
    background-color: #f0f0f0 !important; /* Butonun arkaplan rengini aç */
}

/* Sağ tıklama menüsü */
.context-menu {
    position: fixed;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 10000;
}

/* Menü butonları */
.context-menu button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

/* Hover efekti */
.context-menu button:hover {
    background-color: #f0f0f0;
}

.dx-notification {
    background-color: orange !important;
    color: white !important;
}

.dx-notification:hover { /* standart css tarafından ezilmesini önlemek için aynı renkleri işliyorum */
    background-color: orange !important;
    color: white !important;
}

/* TreeList için eklendi */
.treeListImg,
.treeListName {
    display: inline-block;
    vertical-align: middle;
}

.treeListImg {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 9px;
    border: 1px solid lightgray;
    background-color: #fff;
}
/* TreeList için eklendi */

.payroll-document-item-grid {
    height: calc(100vh - 245px);
}