/* Dedicated family tree styles (modular slot) */
.ft-gen-header {
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 8px;
    color: #000;
    text-decoration: underline;
}
.ft-gen-list {
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:6px;
}
.ft-person {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    background:#f8f8f8;
    border:1px solid #808080;
    cursor:pointer;
    transition:transform 0.08s ease, box-shadow 0.12s ease;
}
.ft-person:hover { transform: translateY(-2px); box-shadow: 2px 4px 8px rgba(0,0,0,0.08); }
.ft-emoji { font-size:1.4em; }
.ft-meta { text-align:left; }
.ft-name { font-weight:700; color:#000; }
.ft-sub { font-size:0.9em; color:#666; margin-top:4px; }
.ft-empty {
    padding:12px;
    border:1px dashed #e0e0e0;
    color:#666;
    background:#fff;
}

