﻿.mc-autocomplete-dropdown {
    position : absolute;
    
    background: white;
    border: 1px solid #ccc;
    max-height: 250px;
    white-space: nowrap;
    z-index: 3000;
}
.mc-autocomplete-rowcontainer {
    white-space: nowrap;
    position: relative; /* required for sticky header to work */
    width:100%;
    height:calc(100% - 35px);
    overflow-y: auto;
    overflow-x: auto;
}


.mc-header-row {
    display: flex;
    background: #eee;
    font-weight: bold;
    height: 1.75rem;
    /*border-bottom: 1px solid #ccc;*/
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 10;
    /* Make sure background covers the content under it */
    background-clip: padding-box;
}

.mc-row {
    display: flex;
    cursor: pointer;
    padding: 0px;
    height:1.75rem;
    /*border-bottom: 1px solid #ddd;*/
}

    .mc-row:hover,
    .mc-row.selected {
        background: #cde0ff;
    }

.mc-col {
    padding: 2px;
    /*border-right: 1px solid #ddd;*/
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 0 auto; /* ← Forces EXACT width */
    box-sizing: border-box;
}




    .mc-col.header {
        /*border-right: 1px solid #bbb;*/
    }
