﻿/* conteneur principal */
.myMasterDetailSelector {
    display: flex;
    height: 320px; /* hauteur fixe pour scroll */
    border: 1px solid #ccc;
    background: #f8f8f8;
    width: 100%;
    box-sizing: border-box;
}

    /* colonne gauche */
    .myMasterDetailSelector .mds-left {
        /*width: 220px;*/
        overflow-y: auto; /* 🔑 scrollbar gauche */
        border-right: 1px solid #cfcfcf;
        background: #f2f2f2;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* colonne droite */
    .myMasterDetailSelector .mds-right {
        flex: 1;
        overflow-y: auto; /* 🔑 scrollbar droite */
        background: white;
        padding: 6px 8px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* lignes de gauche */
    .myMasterDetailSelector .mds-item {
        padding: 6px 10px;
        cursor: pointer;
        border-bottom: 1px solid #e0e0e0;
        color: #333;
    }

        /* hover navigation */
        .myMasterDetailSelector .mds-item:hover {
            background: #e9f1ff;
        }

        /* 🔥 sélection active */
        .myMasterDetailSelector .mds-item.active {
            background: #dbeaff;
            border-left: 3px solid #2b7cff;
            font-weight: 600;
        }

    .myMasterDetailSelector .mds-detail-line {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 4px 2px;
        border-bottom: 1px solid #f0f0f0;
    }

        .myMasterDetailSelector .mds-detail-line:hover {
            background: #f7faff;
        }

.mds-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    cursor: pointer;
}

.mds-badge {
    background: #2b7cff;
    color: white;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    padding: 0 5px;
}
.mds-right-title {
    font-weight: 600;
    padding: 6px 4px;
    margin-bottom: 6px;
    border-bottom: 1px solid #ddd;
    color: #444;
}
.mds-item.has-filter {
    font-weight: 600;
    color: #0b5ed7;
}
.mds-clear-col {
    float: right;
    margin-top: -28px;
    font-size: 12px;
    padding: 2px 6px;
}

.mds-right-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 6px;
}

.mds-clear-col {
    font-size: 11px;
    padding: 2px 8px;
}
.mds-badge {
    background: #2f80ed;
    color: white;
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 11px;
    margin-left: 6px;
}


.mds-right-head {
    display: flex;
    justify-content: space-between;
    padding: 4px 6px 6px 6px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 4px;
    align-items: baseline;
}

.mds-right-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* bouton "Vider" */
.mds-clear-col {
    font-size: 12px;
    padding: 2px 8px;
    margin-left: 8px;

    border: 1px solid #c8c8c8;
    border-radius: 3px;
    background: #f5f5f5;
    color: #555;

    cursor: pointer;
}

.mds-clear-col:hover {
    background: #eaeaea;
    color: #000;
}

