﻿
.grid-wrapper {
    overflow: auto;
    height: 400px;
}

#gridContainer .ag-header {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
}

    /* Apply custom styles to the grid cells */
    .ag-theme-custom .ag-cell {
        padding: 5px;
    }

    /* Apply custom styles to the grid header */
    .ag-theme-custom .ag-header-cell {
        background-color: #f0f0f0;
        font-weight: bold;
    }

    /* Apply custom styles to the grid rows */
    .ag-theme-custom .ag-row {
        border-bottom: 1px solid #ccc;
    }

        /* Apply custom styles to alternate grid rows */
        .ag-theme-custom .ag-row.ag-row-even {
            background-color: #f9f9f9;
        }

.application-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Make the header column sticky */
.ag-header {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Enable vertical scrolling */
.ag-body-viewport {
    overflow-y: auto;
}


.application-icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}



