.ag-root-wrapper {
    border-radius: 0px 0px 8px 8px;
    border: 1px solid teal;
    border-top: 1px solid lightgray;
}

.ag-cell {
    cursor: pointer;
}

.modal-lg {
    width: 80vw;
}

.modal-content {
    grid-template-rows: 28px auto 36px;
    display: grid;
    gap: 0px;
    position: relative;
    border: 2px solid teal;
    border-radius: 5px;
}

.modal-content .modal-header {
    font-weight: 600;
    font-size: 16px;

    color: rgb(24,29,31);
    background-color: #cdd;
    position: relative;
    padding: 2px;
    border-bottom: 1px solid teal;

    border-radius: 5px 5px 0px 0px;
}

.modal-content .modal-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-content .modal-body {
    overflow-y: auto;
    overflow-x: auto;
    max-height: calc(100vh - 144px);
}

.modal-content .modal-footer {
    border-top: 1px solid lightgray;
    margin: 0px;
    padding: 5px;
}

.modal-content .btn {
    border-radius: 5px !important;
    color: #579 !important;
    border: 1px solid #579 !important;
    background-color: #dee !important;
    line-height: 1 !important;
}

.modal-content .btn:hover {
    border: 1px solid rgb(24,29,31) !important;
    background-color: #fff !important;
    color: rgb(24,29,31) !important;
}

