body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-height: 100vh;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.filter-panel {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.card {
    flex-grow: 1;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}

.table-responsive {
    overflow-y: auto;
    max-height: calc(100vh - 160px); /* Filter panelinin hündürlüyü nəzərə alınır */
    overflow-x: hidden; /* Yatayda skrollun qarşısı alınır */
}

thead {
    position: sticky;
    top: 0;
    z-index: 10; /* Yüksək z-index */
    background-color: #fff; /* Sabit arxa fon */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Kiçik kölgə */
}

.card-body {
    
    padding: 0 !important;

}