#auditfile_mle_connect_table {
    margin-bottom: 20px;
}

.entity_year_combinations_list {
    font-size: 0.9em;
}

.entity_year_combination_header, .entity_year_combination_record {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 50px 155px 150px 130px;
    border-bottom: 1px solid var(--border_color);
    padding: 10px 0;
    align-items: center;
}

.entity_year_combination_header {
    font-weight: bold;
}

.entity_year_combination_record_entity {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entity_year_combination_record_mle_file_not_uploaded img {
    margin: 0px;
    width: 35px;
}

.entity_year_combination_record_mle_file_not_uploaded label {
    cursor: pointer;
    display: flex;
    background-color: var(--bg_dropzonecolor);
    outline: 1px solid grey;
    border-radius: 2px;
    padding: 5px 5px;
}

.entity_year_combination_record_mle_file_not_uploaded label:hover {
    background-color: var(--bg_dropzonecolor_hover);
}

.entity_year_combination_record_mle_file_uploaded {
    display: grid;
    grid-template-columns: 10px 1fr 10px;
    grid-gap: 10px;
    padding-right: 5px;
    position: relative;
}

.entity_year_combination_record_mle_file_uploaded .file_upload_remove_icon  {
    color: var(--grey_text_color);
}

.entity_year_combination_record_mle_file_uploaded .file_upload_remove_icon:hover  {
    color: red;
}

.entity_year_combination_record_mle_file_uploaded .filename {
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

.mle_file_upload_tooltip_error_message {
    position: absolute;
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    width: max-content;
    max-width: 500px;
    top: 40px;
    right: 5px;
    transform: translateX(50%);
    display: none;
    z-index: 1;
}

.mle_file_upload_tooltip_error_message::before {
    content: '';
    position: absolute;
    transform: translateY(-50%);
    top: -4px;
    right: 50%;
    width: 10px;
    height: 10px;
    background-color: black;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.entity_year_combination_record_mle_file_uploaded .file_upload_status_icon:hover ~ .mle_file_upload_tooltip_error_message {
    display: inherit;
}

.entity_year_combination_record select {
    margin: 0;
    width: inherit;
    max-width: 150px;
    font-size: inherit;
    height: fit-content;
}

.container {
    max-width: 700px;
}