/**
 * Booléens en liste / détail — pastilles 20×20, SVG blancs sur disque plein (maquette ACTIF).
 */

.bool-status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex-shrink: 0;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bool-status-svg {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
}

/* Oui : vert plein #27ae60 + check blanc (currentColor → SVG) */
.bool-status-icon--yes {
    background: #27ae60;
    color: #fff;
}

/* Non : gris plein + croix blanche */
.bool-status-icon--no {
    background: #b0bec5;
    color: #fff;
}

.bool-status-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 26px;
}

.bool-status-detail {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    min-height: 22px;
}
