.sim_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    gap: 1rem;
}

.sim_empty_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: hsl(var(--muted));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
}

.sim_list_row:hover {
    background: hsl(var(--muted) / .5);
}

.sim_list_nom {
    font-weight: 600;
    font-size: .875rem;
}

.sim_list_ville {
    font-size: .75rem;
    color: hsl(var(--muted-foreground));
    margin-top: .1rem;
}

.sim_stat_val {
    font-family: var(--f-mono);
    font-size: .8rem;
}

.sim_pos { color: #1B5E35; }
.sim_neg { color: #B53226; }

.sim_delete_btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: hsl(var(--muted-foreground));
    line-height: 0;
    border-radius: 4px;
    transition: color .15s;
}
.sim_delete_btn:hover { color: #B53226; }
